@fundamental-ngx/platform 0.62.0-rc.2 → 0.62.0-rc.21

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.
@@ -1932,10 +1932,6 @@ class TableToolbarComponent {
1932
1932
  this.disableRefresh = false;
1933
1933
  /** Whether display search button in the search field */
1934
1934
  this.disableSearch = false;
1935
- /**
1936
- * Heading level of the table toolbar title.
1937
- */
1938
- this.headingLevel = 2;
1939
1935
  /** Event emitted when the search field input is changed. */
1940
1936
  this.searchFieldInputChange = new EventEmitter();
1941
1937
  /** @hidden */
@@ -1944,6 +1940,34 @@ class TableToolbarComponent {
1944
1940
  this._showSaveButton = false;
1945
1941
  /** @hidden */
1946
1942
  this._searchInputText = '';
1943
+ /**
1944
+ * Custom title template. When provided, it replaces the default string title.
1945
+ * The template context provides a `counter` signal with the current item count.
1946
+ *
1947
+ * ```html
1948
+ * <fdp-table-toolbar [titleTemplate]="customTitleTpl">
1949
+ * <ng-template #customTitleTpl let-counter="counter">
1950
+ * <fd-icon glyph="product"></fd-icon> Products ({{ counter() }})
1951
+ * </ng-template>
1952
+ * </fdp-table-toolbar>
1953
+ * ```
1954
+ */
1955
+ this.titleTemplate = input(null, ...(ngDevMode ? [{ debugName: "titleTemplate" }] : []));
1956
+ /**
1957
+ * Heading level of the table toolbar title.
1958
+ */
1959
+ this.headingLevel = input(2, ...(ngDevMode ? [{ debugName: "headingLevel" }] : []));
1960
+ /** @hidden */
1961
+ this.headingLevelParsed = computed(() => {
1962
+ const level = this.headingLevel();
1963
+ if (typeof level === 'number') {
1964
+ return level;
1965
+ }
1966
+ else if (typeof level === 'string') {
1967
+ return Number.parseInt(level.replace(/\D/g, ''), 10);
1968
+ }
1969
+ return 2;
1970
+ }, ...(ngDevMode ? [{ debugName: "headingLevelParsed" }] : []));
1947
1971
  /** @hidden */
1948
1972
  this.tableLoading$ = inject(TableService).tableLoading$;
1949
1973
  /** @hidden */
@@ -2023,7 +2047,7 @@ class TableToolbarComponent {
2023
2047
  });
2024
2048
  }
2025
2049
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: TableToolbarComponent, deps: [{ token: i1.TableService }, { token: i1.Table }], target: i0.ɵɵFactoryTarget.Component }); }
2026
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.1.0", type: TableToolbarComponent, isStandalone: true, selector: "fdp-table-toolbar", inputs: { shouldOverflow: "shouldOverflow", title: "title", searchFieldAriaLabel: "searchFieldAriaLabel", hideItemCount: "hideItemCount", hideSearchInput: "hideSearchInput", searchFieldPlaceholder: "searchFieldPlaceholder", showExpandCollapseButtons: "showExpandCollapseButtons", searchSuggestions: "searchSuggestions", editMode: "editMode", disableRefresh: "disableRefresh", disableSearch: "disableSearch", headingLevel: "headingLevel", searchFieldInputText: "searchFieldInputText" }, outputs: { searchFieldInputChange: "searchFieldInputChange" }, providers: [{ provide: TABLE_TOOLBAR, useExisting: TableToolbarComponent }], queries: [{ propertyName: "tableToolbarActionsComponent", first: true, predicate: TableToolbarActionsComponent, descendants: true }, { propertyName: "_tableToolbarLeftActionsComponent", first: true, predicate: TableToolbarLeftActionsComponent, descendants: true }], viewQueries: [{ propertyName: "contentTemplateRef", first: true, predicate: TemplateRef, descendants: true }], ngImport: i0, template: "<ng-template\n fdpTableToolbarTemplate\n let-counter=\"counter\"\n let-sortable=\"sortable\"\n let-filterable=\"filterable\"\n let-groupable=\"groupable\"\n let-columns=\"columns\"\n let-settings=\"settings\"\n let-hasAnyActions=\"hasAnyActions\"\n let-appliedFilters=\"appliedFilters\"\n>\n <fd-toolbar\n fdType=\"transparent\"\n [titleId]=\"tableToolbarTitleId\"\n [title]=\"title && !hideItemCount ? title + ' (' + counter() + ')' : title\"\n [shouldOverflow]=\"shouldOverflow\"\n [headingLevel]=\"headingLevel\"\n >\n @if (_tableToolbarLeftActionsComponent) {\n <div fd-toolbar-item class=\"fd-toolbar__group\">\n @if (!!title || !hideItemCount) {\n <fd-toolbar-separator></fd-toolbar-separator>\n }\n <ng-template [ngTemplateOutlet]=\"_tableToolbarLeftActionsComponent._contentTemplateRef\"></ng-template>\n </div>\n }\n <fd-toolbar-spacer></fd-toolbar-spacer>\n @if (!hideSearchInput) {\n <fdp-search-field\n fd-toolbar-item\n [style.min-width.rem]=\"15.5\"\n [placeholder]=\"\n searchFieldPlaceholder\n ? searchFieldPlaceholder\n : ('platformTable.toolbarSearchPlaceholder' | fdTranslate)()\n \"\n [inputText]=\"_searchInputText\"\n [disabled]=\"!!(tableLoading$ | async)\"\n [suggestions]=\"searchSuggestions\"\n [disableRefresh]=\"disableRefresh\"\n [disableSearch]=\"disableSearch\"\n [ariaLabel]=\"searchFieldAriaLabel\"\n [ariaLabelledBy]=\"searchFieldAriaLabel ? null : tableToolbarTitleId\"\n (searchSubmit)=\"submitSearch($event)\"\n (cancelSearch)=\"submitSearch($event)\"\n [disableSuggestionsFoundAnnouncer]=\"true\"\n (inputChange)=\"searchInputChanged($event)\"\n ></fdp-search-field>\n }\n @if (editMode !== 'none') {\n <button\n fd-button\n fd-toolbar-item\n [label]=\"('platformTable.toolbarActionCreateButtonLabel' | fdTranslate)()\"\n (click)=\"_addRow()\"\n ></button>\n @if (_showSaveButton) {\n @if (_showSaveButton) {\n <button\n fd-button\n fd-toolbar-item\n [label]=\"('platformTable.toolbarActionSaveButtonLabel' | fdTranslate)()\"\n (click)=\"_saveRows()\"\n ></button>\n }\n <fd-toolbar-separator></fd-toolbar-separator>\n <button\n fd-button\n fd-toolbar-item\n [label]=\"('platformTable.toolbarActionCancelButtonLabel' | fdTranslate)()\"\n (click)=\"_cancelEditing()\"\n fdType=\"transparent\"\n ></button>\n }\n @if (tableToolbarActionsComponent || hasAnyActions()) {\n <fd-toolbar-separator fd-toolbar-item></fd-toolbar-separator>\n }\n }\n @if (tableToolbarActionsComponent) {\n <span fd-toolbar-item class=\"fdp-table-toolbar-actions\">\n <ng-template [ngTemplateOutlet]=\"tableToolbarActionsComponent.contentTemplateRef\"></ng-template>\n </span>\n }\n @if (showExpandCollapseButtons || hasAnyActions()) {\n @if (tableToolbarActionsComponent) {\n <fd-toolbar-separator fd-toolbar-item></fd-toolbar-separator>\n }\n @if (showExpandCollapseButtons) {\n <button\n fd-button\n fd-toolbar-item\n glyph=\"expand-all\"\n (click)=\"_expandAll()\"\n [title]=\"('platformTable.toolbarActionExpandAllButtonTitle' | fdTranslate)()\"\n [ariaLabel]=\"('platformTable.toolbarActionExpandAllButtonTitle' | fdTranslate)()\"\n fdType=\"transparent\"\n ></button>\n <button\n fd-button\n fd-toolbar-item\n glyph=\"collapse-all\"\n (click)=\"_collapseAll()\"\n [title]=\"('platformTable.toolbarActionCollapseAllButtonTitle' | fdTranslate)()\"\n [ariaLabel]=\"('platformTable.toolbarActionCollapseAllButtonTitle' | fdTranslate)()\"\n fdType=\"transparent\"\n ></button>\n }\n @if (settings()) {\n <button\n fd-button\n fd-toolbar-item\n fdOverflowPriority=\"never\"\n glyph=\"action-settings\"\n [title]=\"('platformTable.toolbarActionButtonTitle' | fdTranslate)()\"\n [ariaLabel]=\"('platformTable.toolbarActionButtonTitle' | fdTranslate)()\"\n fdType=\"transparent\"\n aria-haspopup=\"dialog\"\n (click)=\"openSorting()\"\n ></button>\n }\n @if (sortable()) {\n <button\n fd-button\n fd-toolbar-item\n glyph=\"sort\"\n [title]=\"('platformTable.toolbarActionSortButtonTitle' | fdTranslate)()\"\n [ariaLabel]=\"('platformTable.toolbarActionSortButtonTitle' | fdTranslate)()\"\n fdType=\"transparent\"\n aria-haspopup=\"dialog\"\n (click)=\"openSorting()\"\n ></button>\n }\n @if (filterable()) {\n <button\n fd-button\n fd-toolbar-item\n glyph=\"filter\"\n [title]=\"('platformTable.toolbarActionFilterButtonTitle' | fdTranslate)()\"\n [ariaLabel]=\"('platformTable.toolbarActionFilterButtonTitle' | fdTranslate)()\"\n fdType=\"transparent\"\n aria-haspopup=\"dialog\"\n (click)=\"openFiltering()\"\n ></button>\n }\n @if (groupable()) {\n <button\n fd-button\n fd-toolbar-item\n glyph=\"group-2\"\n [title]=\"('platformTable.toolbarActionGroupButtonTitle' | fdTranslate)()\"\n [ariaLabel]=\"('platformTable.toolbarActionGroupButtonTitle' | fdTranslate)()\"\n fdType=\"transparent\"\n aria-haspopup=\"dialog\"\n (click)=\"openGrouping()\"\n ></button>\n }\n @if (columns()) {\n <button\n fd-button\n fd-toolbar-item\n fdOverflowPriority=\"never\"\n glyph=\"action-settings\"\n [title]=\"('platformTable.toolbarActionColumnsButtonTitle' | fdTranslate)()\"\n [ariaLabel]=\"('platformTable.toolbarActionColumnsButtonTitle' | fdTranslate)()\"\n fdType=\"transparent\"\n aria-haspopup=\"dialog\"\n (click)=\"openColumns()\"\n ></button>\n }\n }\n </fd-toolbar>\n @if (appliedFilters().length) {\n <fd-toolbar\n fdType=\"info\"\n class=\"fdp-table__applied-filters-toolbar\"\n [active]=\"true\"\n [titleId]=\"tableToolbarTitleId\"\n [shouldOverflow]=\"shouldOverflow\"\n [headingLevel]=\"headingLevel\"\n >\n <label fd-toolbar-label>\n {{ ('platformTable.filteredBy' | fdTranslate)() }}:\n {{ _formatAppliedFilters(appliedFilters()) }}\n </label>\n <fd-toolbar-spacer></fd-toolbar-spacer>\n <button\n fdCompact\n (click)=\"_closeFilterToolbar()\"\n fd-button\n fdType=\"transparent\"\n glyph=\"decline\"\n [title]=\"('platformTable.clearFilters' | fdTranslate)()\"\n [ariaLabel]=\"('platformTable.clearFilters' | fdTranslate)()\"\n ></button>\n </fd-toolbar>\n }\n</ng-template>\n", dependencies: [{ kind: "component", type: ToolbarComponent, selector: "fd-toolbar", inputs: ["titleId", "class", "shouldOverflow", "fdType", "title", "active", "clearBorder", "forceOverflow", "tabindex", "headingLevel", "ariaLabel", "ariaLabelledBy"] }, { kind: "directive", type: ToolbarItemDirective, selector: "[fd-toolbar-item], [fdOverflowGroup], [fdOverflowPriority]", inputs: ["fdOverflowPriority", "fdOverflowGroup"] }, { kind: "component", type: ToolbarSeparatorComponent, selector: "fd-toolbar-separator" }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: ToolbarSpacerDirective, selector: "fd-toolbar-spacer", inputs: ["width", "class", "fixed"] }, { kind: "component", type: SearchFieldComponent, selector: "fdp-search-field", inputs: ["categoryMode", "appearance", "placeholder", "mobile", "mobileConfig", "disableRefresh", "disableSearch", "suggestions", "dataSource", "inputText", "categories", "currentCategory", "categoryLabel", "hideCategoryLabel", "isLoading", "forceSearchButton", "disableSuggestionsFoundAnnouncer", "showCategoryAllOption", "initialSuggestionTitle", "initialSuggestionSubline", "initialSuggestionEmptyTitle", "initialSuggestionEmptySubline", "suggestionFooter", "searchResultsEmptyTemplate", "searchResultsEmptyDefaultSuggestions", "showAdvancedFilter", "allowEmptySearch", "enableSelection", "suggestionsLoading", "busyIndicatorTitle", "busyIndicatorAriaValueText"], outputs: ["inputChange", "searchSubmit", "cancelSearch", "isOpenChange", "advancedFilterButtonClick", "categoryModeChange", "appearanceChange", "disableRefreshChange", "inputTextChange", "forceSearchButtonChange"] }, { kind: "component", type: ButtonComponent, selector: "button[fd-button], a[fd-button], span[fd-button]", inputs: ["id"], exportAs: ["fd-button"] }, { kind: "directive", type: TableToolbarTemplateDirective, selector: "[fdpTableToolbarTemplate]" }, { kind: "directive", type: ToolbarLabelDirective, selector: "[fd-toolbar-label]" }, { kind: "directive", type: ContentDensityDirective, selector: "[fdContentDensity]:not([fdCompact]):not([fdCondensed]):not([fdCozy]), [fdCompact]:not([fdContentDensity]):not([fdCondensed]):not([fdCozy]), [fdCondensed]:not([fdContentDensity]):not([fdCompact]):not([fdCozy]), [fdCozy]:not([fdContentDensity]):not([fdCompact]):not([fdCondensed])", inputs: ["fdContentDensity", "fdCompact", "fdCondensed", "fdCozy"], exportAs: ["fdContentDensity"] }, { kind: "pipe", type: AsyncPipe, name: "async" }, { kind: "pipe", type: FdTranslatePipe, name: "fdTranslate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
2050
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.1.0", type: TableToolbarComponent, isStandalone: true, selector: "fdp-table-toolbar", inputs: { shouldOverflow: { classPropertyName: "shouldOverflow", publicName: "shouldOverflow", isSignal: false, isRequired: false, transformFunction: null }, title: { classPropertyName: "title", publicName: "title", isSignal: false, isRequired: false, transformFunction: null }, searchFieldAriaLabel: { classPropertyName: "searchFieldAriaLabel", publicName: "searchFieldAriaLabel", isSignal: false, isRequired: false, transformFunction: null }, hideItemCount: { classPropertyName: "hideItemCount", publicName: "hideItemCount", isSignal: false, isRequired: false, transformFunction: null }, hideSearchInput: { classPropertyName: "hideSearchInput", publicName: "hideSearchInput", isSignal: false, isRequired: false, transformFunction: null }, searchFieldPlaceholder: { classPropertyName: "searchFieldPlaceholder", publicName: "searchFieldPlaceholder", isSignal: false, isRequired: false, transformFunction: null }, showExpandCollapseButtons: { classPropertyName: "showExpandCollapseButtons", publicName: "showExpandCollapseButtons", isSignal: false, isRequired: false, transformFunction: null }, searchSuggestions: { classPropertyName: "searchSuggestions", publicName: "searchSuggestions", isSignal: false, isRequired: false, transformFunction: null }, editMode: { classPropertyName: "editMode", publicName: "editMode", isSignal: false, isRequired: false, transformFunction: null }, disableRefresh: { classPropertyName: "disableRefresh", publicName: "disableRefresh", isSignal: false, isRequired: false, transformFunction: null }, disableSearch: { classPropertyName: "disableSearch", publicName: "disableSearch", isSignal: false, isRequired: false, transformFunction: null }, searchFieldInputText: { classPropertyName: "searchFieldInputText", publicName: "searchFieldInputText", isSignal: false, isRequired: false, transformFunction: null }, titleTemplate: { classPropertyName: "titleTemplate", publicName: "titleTemplate", isSignal: true, isRequired: false, transformFunction: null }, headingLevel: { classPropertyName: "headingLevel", publicName: "headingLevel", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { searchFieldInputChange: "searchFieldInputChange" }, providers: [{ provide: TABLE_TOOLBAR, useExisting: TableToolbarComponent }], queries: [{ propertyName: "tableToolbarActionsComponent", first: true, predicate: TableToolbarActionsComponent, descendants: true }, { propertyName: "_tableToolbarLeftActionsComponent", first: true, predicate: TableToolbarLeftActionsComponent, descendants: true }], viewQueries: [{ propertyName: "contentTemplateRef", first: true, predicate: TemplateRef, descendants: true }], ngImport: i0, template: "<ng-template\n fdpTableToolbarTemplate\n let-counter=\"counter\"\n let-sortable=\"sortable\"\n let-filterable=\"filterable\"\n let-groupable=\"groupable\"\n let-columns=\"columns\"\n let-settings=\"settings\"\n let-hasAnyActions=\"hasAnyActions\"\n let-appliedFilters=\"appliedFilters\"\n>\n <fd-toolbar\n fdType=\"transparent\"\n [titleId]=\"tableToolbarTitleId\"\n [title]=\"titleTemplate() ? '' : title && !hideItemCount ? title + ' (' + counter() + ')' : title\"\n [shouldOverflow]=\"shouldOverflow\"\n [headingLevel]=\"headingLevel()\"\n >\n @if (titleTemplate()) {\n <span\n fd-title\n role=\"heading\"\n [headerSize]=\"4\"\n [attr.aria-level]=\"headingLevelParsed()\"\n class=\"fd-toolbar__title\"\n [id]=\"tableToolbarTitleId\"\n >\n <ng-template\n [ngTemplateOutlet]=\"titleTemplate()\"\n [ngTemplateOutletContext]=\"{ counter: counter }\"\n ></ng-template>\n </span>\n }\n @if (_tableToolbarLeftActionsComponent) {\n <div fd-toolbar-item class=\"fd-toolbar__group\">\n @if (!!title || !!titleTemplate() || !hideItemCount) {\n <fd-toolbar-separator></fd-toolbar-separator>\n }\n <ng-template [ngTemplateOutlet]=\"_tableToolbarLeftActionsComponent._contentTemplateRef\"></ng-template>\n </div>\n }\n <fd-toolbar-spacer></fd-toolbar-spacer>\n @if (!hideSearchInput) {\n <fdp-search-field\n fd-toolbar-item\n [style.min-width.rem]=\"15.5\"\n [placeholder]=\"\n searchFieldPlaceholder\n ? searchFieldPlaceholder\n : ('platformTable.toolbarSearchPlaceholder' | fdTranslate)()\n \"\n [inputText]=\"_searchInputText\"\n [disabled]=\"!!(tableLoading$ | async)\"\n [suggestions]=\"searchSuggestions\"\n [disableRefresh]=\"disableRefresh\"\n [disableSearch]=\"disableSearch\"\n [ariaLabel]=\"searchFieldAriaLabel\"\n [ariaLabelledBy]=\"searchFieldAriaLabel ? null : tableToolbarTitleId\"\n (searchSubmit)=\"submitSearch($event)\"\n (cancelSearch)=\"submitSearch($event)\"\n [disableSuggestionsFoundAnnouncer]=\"true\"\n (inputChange)=\"searchInputChanged($event)\"\n ></fdp-search-field>\n }\n @if (editMode !== 'none') {\n <button\n fd-button\n fd-toolbar-item\n [label]=\"('platformTable.toolbarActionCreateButtonLabel' | fdTranslate)()\"\n (click)=\"_addRow()\"\n ></button>\n @if (_showSaveButton) {\n @if (_showSaveButton) {\n <button\n fd-button\n fd-toolbar-item\n [label]=\"('platformTable.toolbarActionSaveButtonLabel' | fdTranslate)()\"\n (click)=\"_saveRows()\"\n ></button>\n }\n <fd-toolbar-separator></fd-toolbar-separator>\n <button\n fd-button\n fd-toolbar-item\n [label]=\"('platformTable.toolbarActionCancelButtonLabel' | fdTranslate)()\"\n (click)=\"_cancelEditing()\"\n fdType=\"transparent\"\n ></button>\n }\n @if (tableToolbarActionsComponent || hasAnyActions()) {\n <fd-toolbar-separator fd-toolbar-item></fd-toolbar-separator>\n }\n }\n @if (tableToolbarActionsComponent) {\n <span fd-toolbar-item class=\"fdp-table-toolbar-actions\">\n <ng-template [ngTemplateOutlet]=\"tableToolbarActionsComponent.contentTemplateRef\"></ng-template>\n </span>\n }\n @if (showExpandCollapseButtons || hasAnyActions()) {\n @if (tableToolbarActionsComponent) {\n <fd-toolbar-separator fd-toolbar-item></fd-toolbar-separator>\n }\n @if (showExpandCollapseButtons) {\n <button\n fd-button\n fd-toolbar-item\n glyph=\"expand-all\"\n (click)=\"_expandAll()\"\n [title]=\"('platformTable.toolbarActionExpandAllButtonTitle' | fdTranslate)()\"\n [ariaLabel]=\"('platformTable.toolbarActionExpandAllButtonTitle' | fdTranslate)()\"\n fdType=\"transparent\"\n ></button>\n <button\n fd-button\n fd-toolbar-item\n glyph=\"collapse-all\"\n (click)=\"_collapseAll()\"\n [title]=\"('platformTable.toolbarActionCollapseAllButtonTitle' | fdTranslate)()\"\n [ariaLabel]=\"('platformTable.toolbarActionCollapseAllButtonTitle' | fdTranslate)()\"\n fdType=\"transparent\"\n ></button>\n }\n @if (settings()) {\n <button\n fd-button\n fd-toolbar-item\n fdOverflowPriority=\"never\"\n glyph=\"action-settings\"\n [title]=\"('platformTable.toolbarActionButtonTitle' | fdTranslate)()\"\n [ariaLabel]=\"('platformTable.toolbarActionButtonTitle' | fdTranslate)()\"\n fdType=\"transparent\"\n aria-haspopup=\"dialog\"\n (click)=\"openSorting()\"\n ></button>\n }\n @if (sortable()) {\n <button\n fd-button\n fd-toolbar-item\n glyph=\"sort\"\n [title]=\"('platformTable.toolbarActionSortButtonTitle' | fdTranslate)()\"\n [ariaLabel]=\"('platformTable.toolbarActionSortButtonTitle' | fdTranslate)()\"\n fdType=\"transparent\"\n aria-haspopup=\"dialog\"\n (click)=\"openSorting()\"\n ></button>\n }\n @if (filterable()) {\n <button\n fd-button\n fd-toolbar-item\n glyph=\"filter\"\n [title]=\"('platformTable.toolbarActionFilterButtonTitle' | fdTranslate)()\"\n [ariaLabel]=\"('platformTable.toolbarActionFilterButtonTitle' | fdTranslate)()\"\n fdType=\"transparent\"\n aria-haspopup=\"dialog\"\n (click)=\"openFiltering()\"\n ></button>\n }\n @if (groupable()) {\n <button\n fd-button\n fd-toolbar-item\n glyph=\"group-2\"\n [title]=\"('platformTable.toolbarActionGroupButtonTitle' | fdTranslate)()\"\n [ariaLabel]=\"('platformTable.toolbarActionGroupButtonTitle' | fdTranslate)()\"\n fdType=\"transparent\"\n aria-haspopup=\"dialog\"\n (click)=\"openGrouping()\"\n ></button>\n }\n @if (columns()) {\n <button\n fd-button\n fd-toolbar-item\n fdOverflowPriority=\"never\"\n glyph=\"action-settings\"\n [title]=\"('platformTable.toolbarActionColumnsButtonTitle' | fdTranslate)()\"\n [ariaLabel]=\"('platformTable.toolbarActionColumnsButtonTitle' | fdTranslate)()\"\n fdType=\"transparent\"\n aria-haspopup=\"dialog\"\n (click)=\"openColumns()\"\n ></button>\n }\n }\n </fd-toolbar>\n @if (appliedFilters().length) {\n <fd-toolbar\n fdType=\"info\"\n class=\"fdp-table__applied-filters-toolbar\"\n [active]=\"true\"\n [titleId]=\"tableToolbarTitleId\"\n [shouldOverflow]=\"shouldOverflow\"\n [headingLevel]=\"headingLevel()\"\n >\n <label fd-toolbar-label>\n {{ ('platformTable.filteredBy' | fdTranslate)() }}:\n {{ _formatAppliedFilters(appliedFilters()) }}\n </label>\n <fd-toolbar-spacer></fd-toolbar-spacer>\n <button\n fdCompact\n (click)=\"_closeFilterToolbar()\"\n fd-button\n fdType=\"transparent\"\n glyph=\"decline\"\n [title]=\"('platformTable.clearFilters' | fdTranslate)()\"\n [ariaLabel]=\"('platformTable.clearFilters' | fdTranslate)()\"\n ></button>\n </fd-toolbar>\n }\n</ng-template>\n", dependencies: [{ kind: "component", type: ToolbarComponent, selector: "fd-toolbar", inputs: ["titleId", "class", "shouldOverflow", "fdType", "title", "active", "clearBorder", "forceOverflow", "tabindex", "headingLevel", "ariaLabel", "ariaLabelledBy"] }, { kind: "directive", type: ToolbarItemDirective, selector: "[fd-toolbar-item], [fdOverflowGroup], [fdOverflowPriority]", inputs: ["fdOverflowPriority", "fdOverflowGroup"] }, { kind: "component", type: ToolbarSeparatorComponent, selector: "fd-toolbar-separator" }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: ToolbarSpacerDirective, selector: "fd-toolbar-spacer", inputs: ["width", "class", "fixed"] }, { kind: "component", type: SearchFieldComponent, selector: "fdp-search-field", inputs: ["categoryMode", "appearance", "placeholder", "mobile", "mobileConfig", "disableRefresh", "disableSearch", "suggestions", "dataSource", "inputText", "categories", "currentCategory", "categoryLabel", "hideCategoryLabel", "isLoading", "forceSearchButton", "disableSuggestionsFoundAnnouncer", "showCategoryAllOption", "initialSuggestionTitle", "initialSuggestionSubline", "initialSuggestionEmptyTitle", "initialSuggestionEmptySubline", "suggestionFooter", "searchResultsEmptyTemplate", "searchResultsEmptyDefaultSuggestions", "showAdvancedFilter", "allowEmptySearch", "enableSelection", "suggestionsLoading", "busyIndicatorTitle", "busyIndicatorAriaValueText"], outputs: ["inputChange", "searchSubmit", "cancelSearch", "isOpenChange", "advancedFilterButtonClick", "categoryModeChange", "appearanceChange", "disableRefreshChange", "inputTextChange", "forceSearchButtonChange"] }, { kind: "component", type: ButtonComponent, selector: "button[fd-button], a[fd-button], span[fd-button]", inputs: ["id"], exportAs: ["fd-button"] }, { kind: "directive", type: TableToolbarTemplateDirective, selector: "[fdpTableToolbarTemplate]" }, { kind: "directive", type: ToolbarLabelDirective, selector: "[fd-toolbar-label]" }, { kind: "directive", type: ContentDensityDirective, selector: "[fdContentDensity]:not([fdCompact]):not([fdCondensed]):not([fdCozy]), [fdCompact]:not([fdContentDensity]):not([fdCondensed]):not([fdCozy]), [fdCondensed]:not([fdContentDensity]):not([fdCompact]):not([fdCozy]), [fdCozy]:not([fdContentDensity]):not([fdCompact]):not([fdCondensed])", inputs: ["fdContentDensity", "fdCompact", "fdCondensed", "fdCozy"], exportAs: ["fdContentDensity"] }, { kind: "component", type: TitleComponent, selector: "[fd-title], [fdTitle]", inputs: ["twoLineClamp", "headerSize", "wrap"], exportAs: ["fd-title"] }, { kind: "pipe", type: AsyncPipe, name: "async" }, { kind: "pipe", type: FdTranslatePipe, name: "fdTranslate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
2027
2051
  }
2028
2052
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: TableToolbarComponent, decorators: [{
2029
2053
  type: Component,
@@ -2039,8 +2063,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImpor
2039
2063
  FdTranslatePipe,
2040
2064
  TableToolbarTemplateDirective,
2041
2065
  ToolbarLabelDirective,
2042
- ContentDensityDirective
2043
- ], template: "<ng-template\n fdpTableToolbarTemplate\n let-counter=\"counter\"\n let-sortable=\"sortable\"\n let-filterable=\"filterable\"\n let-groupable=\"groupable\"\n let-columns=\"columns\"\n let-settings=\"settings\"\n let-hasAnyActions=\"hasAnyActions\"\n let-appliedFilters=\"appliedFilters\"\n>\n <fd-toolbar\n fdType=\"transparent\"\n [titleId]=\"tableToolbarTitleId\"\n [title]=\"title && !hideItemCount ? title + ' (' + counter() + ')' : title\"\n [shouldOverflow]=\"shouldOverflow\"\n [headingLevel]=\"headingLevel\"\n >\n @if (_tableToolbarLeftActionsComponent) {\n <div fd-toolbar-item class=\"fd-toolbar__group\">\n @if (!!title || !hideItemCount) {\n <fd-toolbar-separator></fd-toolbar-separator>\n }\n <ng-template [ngTemplateOutlet]=\"_tableToolbarLeftActionsComponent._contentTemplateRef\"></ng-template>\n </div>\n }\n <fd-toolbar-spacer></fd-toolbar-spacer>\n @if (!hideSearchInput) {\n <fdp-search-field\n fd-toolbar-item\n [style.min-width.rem]=\"15.5\"\n [placeholder]=\"\n searchFieldPlaceholder\n ? searchFieldPlaceholder\n : ('platformTable.toolbarSearchPlaceholder' | fdTranslate)()\n \"\n [inputText]=\"_searchInputText\"\n [disabled]=\"!!(tableLoading$ | async)\"\n [suggestions]=\"searchSuggestions\"\n [disableRefresh]=\"disableRefresh\"\n [disableSearch]=\"disableSearch\"\n [ariaLabel]=\"searchFieldAriaLabel\"\n [ariaLabelledBy]=\"searchFieldAriaLabel ? null : tableToolbarTitleId\"\n (searchSubmit)=\"submitSearch($event)\"\n (cancelSearch)=\"submitSearch($event)\"\n [disableSuggestionsFoundAnnouncer]=\"true\"\n (inputChange)=\"searchInputChanged($event)\"\n ></fdp-search-field>\n }\n @if (editMode !== 'none') {\n <button\n fd-button\n fd-toolbar-item\n [label]=\"('platformTable.toolbarActionCreateButtonLabel' | fdTranslate)()\"\n (click)=\"_addRow()\"\n ></button>\n @if (_showSaveButton) {\n @if (_showSaveButton) {\n <button\n fd-button\n fd-toolbar-item\n [label]=\"('platformTable.toolbarActionSaveButtonLabel' | fdTranslate)()\"\n (click)=\"_saveRows()\"\n ></button>\n }\n <fd-toolbar-separator></fd-toolbar-separator>\n <button\n fd-button\n fd-toolbar-item\n [label]=\"('platformTable.toolbarActionCancelButtonLabel' | fdTranslate)()\"\n (click)=\"_cancelEditing()\"\n fdType=\"transparent\"\n ></button>\n }\n @if (tableToolbarActionsComponent || hasAnyActions()) {\n <fd-toolbar-separator fd-toolbar-item></fd-toolbar-separator>\n }\n }\n @if (tableToolbarActionsComponent) {\n <span fd-toolbar-item class=\"fdp-table-toolbar-actions\">\n <ng-template [ngTemplateOutlet]=\"tableToolbarActionsComponent.contentTemplateRef\"></ng-template>\n </span>\n }\n @if (showExpandCollapseButtons || hasAnyActions()) {\n @if (tableToolbarActionsComponent) {\n <fd-toolbar-separator fd-toolbar-item></fd-toolbar-separator>\n }\n @if (showExpandCollapseButtons) {\n <button\n fd-button\n fd-toolbar-item\n glyph=\"expand-all\"\n (click)=\"_expandAll()\"\n [title]=\"('platformTable.toolbarActionExpandAllButtonTitle' | fdTranslate)()\"\n [ariaLabel]=\"('platformTable.toolbarActionExpandAllButtonTitle' | fdTranslate)()\"\n fdType=\"transparent\"\n ></button>\n <button\n fd-button\n fd-toolbar-item\n glyph=\"collapse-all\"\n (click)=\"_collapseAll()\"\n [title]=\"('platformTable.toolbarActionCollapseAllButtonTitle' | fdTranslate)()\"\n [ariaLabel]=\"('platformTable.toolbarActionCollapseAllButtonTitle' | fdTranslate)()\"\n fdType=\"transparent\"\n ></button>\n }\n @if (settings()) {\n <button\n fd-button\n fd-toolbar-item\n fdOverflowPriority=\"never\"\n glyph=\"action-settings\"\n [title]=\"('platformTable.toolbarActionButtonTitle' | fdTranslate)()\"\n [ariaLabel]=\"('platformTable.toolbarActionButtonTitle' | fdTranslate)()\"\n fdType=\"transparent\"\n aria-haspopup=\"dialog\"\n (click)=\"openSorting()\"\n ></button>\n }\n @if (sortable()) {\n <button\n fd-button\n fd-toolbar-item\n glyph=\"sort\"\n [title]=\"('platformTable.toolbarActionSortButtonTitle' | fdTranslate)()\"\n [ariaLabel]=\"('platformTable.toolbarActionSortButtonTitle' | fdTranslate)()\"\n fdType=\"transparent\"\n aria-haspopup=\"dialog\"\n (click)=\"openSorting()\"\n ></button>\n }\n @if (filterable()) {\n <button\n fd-button\n fd-toolbar-item\n glyph=\"filter\"\n [title]=\"('platformTable.toolbarActionFilterButtonTitle' | fdTranslate)()\"\n [ariaLabel]=\"('platformTable.toolbarActionFilterButtonTitle' | fdTranslate)()\"\n fdType=\"transparent\"\n aria-haspopup=\"dialog\"\n (click)=\"openFiltering()\"\n ></button>\n }\n @if (groupable()) {\n <button\n fd-button\n fd-toolbar-item\n glyph=\"group-2\"\n [title]=\"('platformTable.toolbarActionGroupButtonTitle' | fdTranslate)()\"\n [ariaLabel]=\"('platformTable.toolbarActionGroupButtonTitle' | fdTranslate)()\"\n fdType=\"transparent\"\n aria-haspopup=\"dialog\"\n (click)=\"openGrouping()\"\n ></button>\n }\n @if (columns()) {\n <button\n fd-button\n fd-toolbar-item\n fdOverflowPriority=\"never\"\n glyph=\"action-settings\"\n [title]=\"('platformTable.toolbarActionColumnsButtonTitle' | fdTranslate)()\"\n [ariaLabel]=\"('platformTable.toolbarActionColumnsButtonTitle' | fdTranslate)()\"\n fdType=\"transparent\"\n aria-haspopup=\"dialog\"\n (click)=\"openColumns()\"\n ></button>\n }\n }\n </fd-toolbar>\n @if (appliedFilters().length) {\n <fd-toolbar\n fdType=\"info\"\n class=\"fdp-table__applied-filters-toolbar\"\n [active]=\"true\"\n [titleId]=\"tableToolbarTitleId\"\n [shouldOverflow]=\"shouldOverflow\"\n [headingLevel]=\"headingLevel\"\n >\n <label fd-toolbar-label>\n {{ ('platformTable.filteredBy' | fdTranslate)() }}:\n {{ _formatAppliedFilters(appliedFilters()) }}\n </label>\n <fd-toolbar-spacer></fd-toolbar-spacer>\n <button\n fdCompact\n (click)=\"_closeFilterToolbar()\"\n fd-button\n fdType=\"transparent\"\n glyph=\"decline\"\n [title]=\"('platformTable.clearFilters' | fdTranslate)()\"\n [ariaLabel]=\"('platformTable.clearFilters' | fdTranslate)()\"\n ></button>\n </fd-toolbar>\n }\n</ng-template>\n" }]
2066
+ ContentDensityDirective,
2067
+ TitleComponent
2068
+ ], template: "<ng-template\n fdpTableToolbarTemplate\n let-counter=\"counter\"\n let-sortable=\"sortable\"\n let-filterable=\"filterable\"\n let-groupable=\"groupable\"\n let-columns=\"columns\"\n let-settings=\"settings\"\n let-hasAnyActions=\"hasAnyActions\"\n let-appliedFilters=\"appliedFilters\"\n>\n <fd-toolbar\n fdType=\"transparent\"\n [titleId]=\"tableToolbarTitleId\"\n [title]=\"titleTemplate() ? '' : title && !hideItemCount ? title + ' (' + counter() + ')' : title\"\n [shouldOverflow]=\"shouldOverflow\"\n [headingLevel]=\"headingLevel()\"\n >\n @if (titleTemplate()) {\n <span\n fd-title\n role=\"heading\"\n [headerSize]=\"4\"\n [attr.aria-level]=\"headingLevelParsed()\"\n class=\"fd-toolbar__title\"\n [id]=\"tableToolbarTitleId\"\n >\n <ng-template\n [ngTemplateOutlet]=\"titleTemplate()\"\n [ngTemplateOutletContext]=\"{ counter: counter }\"\n ></ng-template>\n </span>\n }\n @if (_tableToolbarLeftActionsComponent) {\n <div fd-toolbar-item class=\"fd-toolbar__group\">\n @if (!!title || !!titleTemplate() || !hideItemCount) {\n <fd-toolbar-separator></fd-toolbar-separator>\n }\n <ng-template [ngTemplateOutlet]=\"_tableToolbarLeftActionsComponent._contentTemplateRef\"></ng-template>\n </div>\n }\n <fd-toolbar-spacer></fd-toolbar-spacer>\n @if (!hideSearchInput) {\n <fdp-search-field\n fd-toolbar-item\n [style.min-width.rem]=\"15.5\"\n [placeholder]=\"\n searchFieldPlaceholder\n ? searchFieldPlaceholder\n : ('platformTable.toolbarSearchPlaceholder' | fdTranslate)()\n \"\n [inputText]=\"_searchInputText\"\n [disabled]=\"!!(tableLoading$ | async)\"\n [suggestions]=\"searchSuggestions\"\n [disableRefresh]=\"disableRefresh\"\n [disableSearch]=\"disableSearch\"\n [ariaLabel]=\"searchFieldAriaLabel\"\n [ariaLabelledBy]=\"searchFieldAriaLabel ? null : tableToolbarTitleId\"\n (searchSubmit)=\"submitSearch($event)\"\n (cancelSearch)=\"submitSearch($event)\"\n [disableSuggestionsFoundAnnouncer]=\"true\"\n (inputChange)=\"searchInputChanged($event)\"\n ></fdp-search-field>\n }\n @if (editMode !== 'none') {\n <button\n fd-button\n fd-toolbar-item\n [label]=\"('platformTable.toolbarActionCreateButtonLabel' | fdTranslate)()\"\n (click)=\"_addRow()\"\n ></button>\n @if (_showSaveButton) {\n @if (_showSaveButton) {\n <button\n fd-button\n fd-toolbar-item\n [label]=\"('platformTable.toolbarActionSaveButtonLabel' | fdTranslate)()\"\n (click)=\"_saveRows()\"\n ></button>\n }\n <fd-toolbar-separator></fd-toolbar-separator>\n <button\n fd-button\n fd-toolbar-item\n [label]=\"('platformTable.toolbarActionCancelButtonLabel' | fdTranslate)()\"\n (click)=\"_cancelEditing()\"\n fdType=\"transparent\"\n ></button>\n }\n @if (tableToolbarActionsComponent || hasAnyActions()) {\n <fd-toolbar-separator fd-toolbar-item></fd-toolbar-separator>\n }\n }\n @if (tableToolbarActionsComponent) {\n <span fd-toolbar-item class=\"fdp-table-toolbar-actions\">\n <ng-template [ngTemplateOutlet]=\"tableToolbarActionsComponent.contentTemplateRef\"></ng-template>\n </span>\n }\n @if (showExpandCollapseButtons || hasAnyActions()) {\n @if (tableToolbarActionsComponent) {\n <fd-toolbar-separator fd-toolbar-item></fd-toolbar-separator>\n }\n @if (showExpandCollapseButtons) {\n <button\n fd-button\n fd-toolbar-item\n glyph=\"expand-all\"\n (click)=\"_expandAll()\"\n [title]=\"('platformTable.toolbarActionExpandAllButtonTitle' | fdTranslate)()\"\n [ariaLabel]=\"('platformTable.toolbarActionExpandAllButtonTitle' | fdTranslate)()\"\n fdType=\"transparent\"\n ></button>\n <button\n fd-button\n fd-toolbar-item\n glyph=\"collapse-all\"\n (click)=\"_collapseAll()\"\n [title]=\"('platformTable.toolbarActionCollapseAllButtonTitle' | fdTranslate)()\"\n [ariaLabel]=\"('platformTable.toolbarActionCollapseAllButtonTitle' | fdTranslate)()\"\n fdType=\"transparent\"\n ></button>\n }\n @if (settings()) {\n <button\n fd-button\n fd-toolbar-item\n fdOverflowPriority=\"never\"\n glyph=\"action-settings\"\n [title]=\"('platformTable.toolbarActionButtonTitle' | fdTranslate)()\"\n [ariaLabel]=\"('platformTable.toolbarActionButtonTitle' | fdTranslate)()\"\n fdType=\"transparent\"\n aria-haspopup=\"dialog\"\n (click)=\"openSorting()\"\n ></button>\n }\n @if (sortable()) {\n <button\n fd-button\n fd-toolbar-item\n glyph=\"sort\"\n [title]=\"('platformTable.toolbarActionSortButtonTitle' | fdTranslate)()\"\n [ariaLabel]=\"('platformTable.toolbarActionSortButtonTitle' | fdTranslate)()\"\n fdType=\"transparent\"\n aria-haspopup=\"dialog\"\n (click)=\"openSorting()\"\n ></button>\n }\n @if (filterable()) {\n <button\n fd-button\n fd-toolbar-item\n glyph=\"filter\"\n [title]=\"('platformTable.toolbarActionFilterButtonTitle' | fdTranslate)()\"\n [ariaLabel]=\"('platformTable.toolbarActionFilterButtonTitle' | fdTranslate)()\"\n fdType=\"transparent\"\n aria-haspopup=\"dialog\"\n (click)=\"openFiltering()\"\n ></button>\n }\n @if (groupable()) {\n <button\n fd-button\n fd-toolbar-item\n glyph=\"group-2\"\n [title]=\"('platformTable.toolbarActionGroupButtonTitle' | fdTranslate)()\"\n [ariaLabel]=\"('platformTable.toolbarActionGroupButtonTitle' | fdTranslate)()\"\n fdType=\"transparent\"\n aria-haspopup=\"dialog\"\n (click)=\"openGrouping()\"\n ></button>\n }\n @if (columns()) {\n <button\n fd-button\n fd-toolbar-item\n fdOverflowPriority=\"never\"\n glyph=\"action-settings\"\n [title]=\"('platformTable.toolbarActionColumnsButtonTitle' | fdTranslate)()\"\n [ariaLabel]=\"('platformTable.toolbarActionColumnsButtonTitle' | fdTranslate)()\"\n fdType=\"transparent\"\n aria-haspopup=\"dialog\"\n (click)=\"openColumns()\"\n ></button>\n }\n }\n </fd-toolbar>\n @if (appliedFilters().length) {\n <fd-toolbar\n fdType=\"info\"\n class=\"fdp-table__applied-filters-toolbar\"\n [active]=\"true\"\n [titleId]=\"tableToolbarTitleId\"\n [shouldOverflow]=\"shouldOverflow\"\n [headingLevel]=\"headingLevel()\"\n >\n <label fd-toolbar-label>\n {{ ('platformTable.filteredBy' | fdTranslate)() }}:\n {{ _formatAppliedFilters(appliedFilters()) }}\n </label>\n <fd-toolbar-spacer></fd-toolbar-spacer>\n <button\n fdCompact\n (click)=\"_closeFilterToolbar()\"\n fd-button\n fdType=\"transparent\"\n glyph=\"decline\"\n [title]=\"('platformTable.clearFilters' | fdTranslate)()\"\n [ariaLabel]=\"('platformTable.clearFilters' | fdTranslate)()\"\n ></button>\n </fd-toolbar>\n }\n</ng-template>\n" }]
2044
2069
  }], ctorParameters: () => [{ type: i1.TableService }, { type: i1.Table }], propDecorators: { shouldOverflow: [{
2045
2070
  type: Input
2046
2071
  }], title: [{
@@ -2063,8 +2088,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImpor
2063
2088
  type: Input
2064
2089
  }], disableSearch: [{
2065
2090
  type: Input
2066
- }], headingLevel: [{
2067
- type: Input
2068
2091
  }], searchFieldInputText: [{
2069
2092
  type: Input
2070
2093
  }], searchFieldInputChange: [{
@@ -2078,7 +2101,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImpor
2078
2101
  }], contentTemplateRef: [{
2079
2102
  type: ViewChild,
2080
2103
  args: [TemplateRef]
2081
- }] } });
2104
+ }], titleTemplate: [{ type: i0.Input, args: [{ isSignal: true, alias: "titleTemplate", required: false }] }], headingLevel: [{ type: i0.Input, args: [{ isSignal: true, alias: "headingLevel", required: false }] }] } });
2082
2105
 
2083
2106
  const NOT_FILTERED_OPTION_VALUE = `table-filters-not-filtered-option-value-${Math.random()
2084
2107
  .toString()
@@ -3172,12 +3195,12 @@ class TableGroupRowComponent extends TableRowDirective {
3172
3195
  }
3173
3196
  }
3174
3197
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: TableGroupRowComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
3175
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.1.0", type: TableGroupRowComponent, isStandalone: true, selector: "[fdp-table-group-row]", inputs: { rowId: "rowId", index: "index", height: "height", draggable: "draggable", row: "row", keyToColumnMap: "keyToColumnMap", tableColumnsLength: "tableColumnsLength" }, outputs: { toggleGroupRow: "toggleGroupRow" }, host: { attributes: { "role": "row" }, properties: { "attr.aria-expanded": "row.expanded", "attr.aria-rowindex": "this.index", "style.height.px": "this.height", "class.fd-table__row--draggable": "this.draggable" } }, providers: [
3198
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.1.0", type: TableGroupRowComponent, isStandalone: true, selector: "[fdp-table-group-row]", inputs: { rowId: "rowId", index: "index", height: "height", draggable: "draggable", row: "row", keyToColumnMap: "keyToColumnMap" }, outputs: { toggleGroupRow: "toggleGroupRow" }, host: { attributes: { "role": "row" }, properties: { "attr.aria-expanded": "row.expanded", "attr.aria-rowindex": "this.index", "style.height.px": "this.height", "class.fd-table__row--draggable": "this.draggable" } }, providers: [
3176
3199
  {
3177
3200
  provide: FDK_FOCUSABLE_LIST_DIRECTIVE,
3178
3201
  useExisting: TableGroupRowComponent
3179
3202
  }
3180
- ], viewQueries: [{ propertyName: "_focusableViewCellItems", predicate: FDK_FOCUSABLE_ITEM_DIRECTIVE, descendants: true }], usesInheritance: true, usesOnChanges: true, ngImport: i0, template: "<td\n fd-table-cell\n class=\"fd-table__cell--group fd-table__cell--expand\"\n tabindex=\"0\"\n role=\"gridcell\"\n [focusable]=\"true\"\n [attr.colspan]=\"tableColumnsLength\"\n [attr.aria-expanded]=\"row.expanded\"\n [attr.data-nesting-level]=\"row.level + 1\"\n (keydown.enter)=\"toggleGroupRow.emit(row)\"\n (keydown.space)=\"toggleGroupRow.emit(row)\"\n (click)=\"toggleGroupRow.emit(row)\"\n>\n <ng-template [ngTemplateOutlet]=\"tableCellExpandTemplate\"></ng-template>\n</td>\n<!-- Table Cell Expand Template -->\n<ng-template #tableCellExpandTemplate>\n <div class=\"fd-table__expand-wrapper\">\n <span class=\"fd-table__expand\" [class.fd-table__expand--open]=\"row.expanded\" aria-hidden=\"true\"></span>\n @if (_fdpTableService.groupRules$(); as groupRules) {\n <!-- Group row template when no nested groups -->\n @if (groupRules.size === 1) {\n <div class=\"fd-table__text fd-table__text--no-wrap\">\n {{ row.value?.['value'] }} - {{ row.value?.['count'] }}\n </div>\n }\n <!-- Group row template when there are nested groups -->\n @if (groupRules.size !== 1) {\n <div class=\"fd-table__text fd-table__text--no-wrap\">\n <ng-template [ngTemplateOutlet]=\"tableHeaderCellContentTemplate\"></ng-template>:\n {{ row.value?.['value'] }}\n </div>\n }\n }\n </div>\n</ng-template>\n<!-- Column Header Cell Content Template -->\n<ng-template #tableHeaderCellContentTemplate>\n @if (_column) {\n @if (_column.headerCellTemplate) {\n <ng-template\n [ngTemplateOutlet]=\"_column.headerCellTemplate\"\n [ngTemplateOutletContext]=\"{ $implicit: _column }\"\n ></ng-template>\n } @else {\n <span\n [id]=\"rowId + '-header-cell-' + _column.name\"\n [attr.title]=\"_column.label\"\n class=\"fd-table__cell--truncate-txt\"\n >{{ _column.label }}</span\n >\n }\n }\n</ng-template>\n", dependencies: [{ kind: "directive", type: TableCellDirective, selector: "[fdTableCell], [fd-table-cell]", inputs: ["noBorderX", "noBorderY", "activable", "focusable", "hoverable", "fitContent", "noPadding", "noData", "nonInteractive", "key"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
3203
+ ], viewQueries: [{ propertyName: "_focusableViewCellItems", predicate: FDK_FOCUSABLE_ITEM_DIRECTIVE, descendants: true }], usesInheritance: true, usesOnChanges: true, ngImport: i0, template: "<td\n fd-table-cell\n class=\"fd-table__cell--group fd-table__cell--expand\"\n tabindex=\"0\"\n role=\"gridcell\"\n [focusable]=\"true\"\n colspan=\"100%\"\n [attr.aria-expanded]=\"row.expanded\"\n [attr.data-nesting-level]=\"row.level + 1\"\n (keydown.enter)=\"toggleGroupRow.emit(row)\"\n (keydown.space)=\"toggleGroupRow.emit(row)\"\n (click)=\"toggleGroupRow.emit(row)\"\n>\n <ng-template [ngTemplateOutlet]=\"tableCellExpandTemplate\"></ng-template>\n</td>\n<!-- Table Cell Expand Template -->\n<ng-template #tableCellExpandTemplate>\n <div class=\"fd-table__expand-wrapper\">\n <span class=\"fd-table__expand\" [class.fd-table__expand--open]=\"row.expanded\" aria-hidden=\"true\"></span>\n @if (_fdpTableService.groupRules$(); as groupRules) {\n <!-- Group row template when no nested groups -->\n @if (groupRules.size === 1) {\n <div class=\"fd-table__text fd-table__text--no-wrap\">\n {{ row.value?.['value'] }} - {{ row.value?.['count'] }}\n </div>\n }\n <!-- Group row template when there are nested groups -->\n @if (groupRules.size !== 1) {\n <div class=\"fd-table__text fd-table__text--no-wrap\">\n <ng-template [ngTemplateOutlet]=\"tableHeaderCellContentTemplate\"></ng-template>:\n {{ row.value?.['value'] }}\n </div>\n }\n }\n </div>\n</ng-template>\n<!-- Column Header Cell Content Template -->\n<ng-template #tableHeaderCellContentTemplate>\n @if (_column) {\n @if (_column.headerCellTemplate) {\n <ng-template\n [ngTemplateOutlet]=\"_column.headerCellTemplate\"\n [ngTemplateOutletContext]=\"{ $implicit: _column }\"\n ></ng-template>\n } @else {\n <span\n [id]=\"rowId + '-header-cell-' + _column.name\"\n [attr.title]=\"_column.label\"\n class=\"fd-table__cell--truncate-txt\"\n >{{ _column.label }}</span\n >\n }\n }\n</ng-template>\n", dependencies: [{ kind: "directive", type: TableCellDirective, selector: "[fdTableCell], [fd-table-cell]", inputs: ["noBorderX", "noBorderY", "activable", "focusable", "hoverable", "fitContent", "noPadding", "noData", "nonInteractive", "key"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
3181
3204
  }
3182
3205
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: TableGroupRowComponent, decorators: [{
3183
3206
  type: Component,
@@ -3189,7 +3212,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImpor
3189
3212
  ], host: {
3190
3213
  role: 'row',
3191
3214
  '[attr.aria-expanded]': 'row.expanded'
3192
- }, imports: [TableCellDirective, NgTemplateOutlet], template: "<td\n fd-table-cell\n class=\"fd-table__cell--group fd-table__cell--expand\"\n tabindex=\"0\"\n role=\"gridcell\"\n [focusable]=\"true\"\n [attr.colspan]=\"tableColumnsLength\"\n [attr.aria-expanded]=\"row.expanded\"\n [attr.data-nesting-level]=\"row.level + 1\"\n (keydown.enter)=\"toggleGroupRow.emit(row)\"\n (keydown.space)=\"toggleGroupRow.emit(row)\"\n (click)=\"toggleGroupRow.emit(row)\"\n>\n <ng-template [ngTemplateOutlet]=\"tableCellExpandTemplate\"></ng-template>\n</td>\n<!-- Table Cell Expand Template -->\n<ng-template #tableCellExpandTemplate>\n <div class=\"fd-table__expand-wrapper\">\n <span class=\"fd-table__expand\" [class.fd-table__expand--open]=\"row.expanded\" aria-hidden=\"true\"></span>\n @if (_fdpTableService.groupRules$(); as groupRules) {\n <!-- Group row template when no nested groups -->\n @if (groupRules.size === 1) {\n <div class=\"fd-table__text fd-table__text--no-wrap\">\n {{ row.value?.['value'] }} - {{ row.value?.['count'] }}\n </div>\n }\n <!-- Group row template when there are nested groups -->\n @if (groupRules.size !== 1) {\n <div class=\"fd-table__text fd-table__text--no-wrap\">\n <ng-template [ngTemplateOutlet]=\"tableHeaderCellContentTemplate\"></ng-template>:\n {{ row.value?.['value'] }}\n </div>\n }\n }\n </div>\n</ng-template>\n<!-- Column Header Cell Content Template -->\n<ng-template #tableHeaderCellContentTemplate>\n @if (_column) {\n @if (_column.headerCellTemplate) {\n <ng-template\n [ngTemplateOutlet]=\"_column.headerCellTemplate\"\n [ngTemplateOutletContext]=\"{ $implicit: _column }\"\n ></ng-template>\n } @else {\n <span\n [id]=\"rowId + '-header-cell-' + _column.name\"\n [attr.title]=\"_column.label\"\n class=\"fd-table__cell--truncate-txt\"\n >{{ _column.label }}</span\n >\n }\n }\n</ng-template>\n" }]
3215
+ }, imports: [TableCellDirective, NgTemplateOutlet], template: "<td\n fd-table-cell\n class=\"fd-table__cell--group fd-table__cell--expand\"\n tabindex=\"0\"\n role=\"gridcell\"\n [focusable]=\"true\"\n colspan=\"100%\"\n [attr.aria-expanded]=\"row.expanded\"\n [attr.data-nesting-level]=\"row.level + 1\"\n (keydown.enter)=\"toggleGroupRow.emit(row)\"\n (keydown.space)=\"toggleGroupRow.emit(row)\"\n (click)=\"toggleGroupRow.emit(row)\"\n>\n <ng-template [ngTemplateOutlet]=\"tableCellExpandTemplate\"></ng-template>\n</td>\n<!-- Table Cell Expand Template -->\n<ng-template #tableCellExpandTemplate>\n <div class=\"fd-table__expand-wrapper\">\n <span class=\"fd-table__expand\" [class.fd-table__expand--open]=\"row.expanded\" aria-hidden=\"true\"></span>\n @if (_fdpTableService.groupRules$(); as groupRules) {\n <!-- Group row template when no nested groups -->\n @if (groupRules.size === 1) {\n <div class=\"fd-table__text fd-table__text--no-wrap\">\n {{ row.value?.['value'] }} - {{ row.value?.['count'] }}\n </div>\n }\n <!-- Group row template when there are nested groups -->\n @if (groupRules.size !== 1) {\n <div class=\"fd-table__text fd-table__text--no-wrap\">\n <ng-template [ngTemplateOutlet]=\"tableHeaderCellContentTemplate\"></ng-template>:\n {{ row.value?.['value'] }}\n </div>\n }\n }\n </div>\n</ng-template>\n<!-- Column Header Cell Content Template -->\n<ng-template #tableHeaderCellContentTemplate>\n @if (_column) {\n @if (_column.headerCellTemplate) {\n <ng-template\n [ngTemplateOutlet]=\"_column.headerCellTemplate\"\n [ngTemplateOutletContext]=\"{ $implicit: _column }\"\n ></ng-template>\n } @else {\n <span\n [id]=\"rowId + '-header-cell-' + _column.name\"\n [attr.title]=\"_column.label\"\n class=\"fd-table__cell--truncate-txt\"\n >{{ _column.label }}</span\n >\n }\n }\n</ng-template>\n" }]
3193
3216
  }], propDecorators: { rowId: [{
3194
3217
  type: Input
3195
3218
  }], index: [{
@@ -3211,8 +3234,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImpor
3211
3234
  type: Input
3212
3235
  }], keyToColumnMap: [{
3213
3236
  type: Input
3214
- }], tableColumnsLength: [{
3215
- type: Input
3216
3237
  }], toggleGroupRow: [{
3217
3238
  type: Output
3218
3239
  }], _focusableViewCellItems: [{
@@ -4275,7 +4296,17 @@ class TableComponent extends Table {
4275
4296
  }
4276
4297
  /** Set current state/settings of the Table. */
4277
4298
  setTableState(state) {
4278
- this._tableService.setTableState(state);
4299
+ this._currentPreset = state;
4300
+ const newState = Object.assign({}, this._tableService.getDefaultState(), state);
4301
+ this._tableService.setSort(newState.sortBy);
4302
+ this._tableService.setFilters(newState.filterBy);
4303
+ this._tableService.setGroups(newState.groupBy);
4304
+ this.setColumns(newState.columns);
4305
+ this._tableService.search(newState.searchInput);
4306
+ this._tableService.freezeTo(newState.freezeToColumn);
4307
+ this.pageSize = newState.page.pageSize;
4308
+ this._tableService.setCurrentPage(newState.page.currentPage);
4309
+ this._tableService.setTableState(newState);
4279
4310
  this._cdr.markForCheck();
4280
4311
  }
4281
4312
  /** Get table columns definition list. */
@@ -4523,19 +4554,9 @@ class TableComponent extends Table {
4523
4554
  this._resetEditState();
4524
4555
  this.save.emit(event);
4525
4556
  }
4526
- /** Sets current preset for the Table. */
4557
+ /** @deprecated use 'setTableState' instead. Sets current preset for the Table. */
4527
4558
  setPreset(data) {
4528
- this._currentPreset = data;
4529
- const newState = Object.assign({}, this._tableService.getDefaultState(), data);
4530
- this._tableService.setSort(newState.sortBy);
4531
- this._tableService.setFilters(newState.filterBy);
4532
- this._tableService.setGroups(newState.groupBy);
4533
- this.setColumns(newState.columns);
4534
- this._tableService.search(newState.searchInput);
4535
- this._tableService.freezeTo(newState.freezeToColumn);
4536
- this.pageSize = newState.page.pageSize;
4537
- this._tableService.setCurrentPage(newState.page.currentPage);
4538
- this._tableService.setTableState(newState);
4559
+ this.setTableState(data);
4539
4560
  }
4540
4561
  /** Returns current preset configuration. */
4541
4562
  getCurrentPreset() {
@@ -5385,7 +5406,7 @@ class TableComponent extends Table {
5385
5406
  provide: FDP_PRESET_MANAGED_COMPONENT,
5386
5407
  useExisting: TableComponent
5387
5408
  }
5388
- ], queries: [{ propertyName: "tableToolbar", first: true, predicate: TABLE_TOOLBAR, descendants: true }, { propertyName: "_noDataWrapper", first: true, predicate: NoDataWrapperComponent, descendants: true }, { propertyName: "columns", predicate: TableColumn }, { propertyName: "customEditableCells", predicate: EditableTableCell, descendants: true }], viewQueries: [{ propertyName: "tableScrollable", first: true, predicate: ["tableScrollable"], descendants: true }, { propertyName: "tableContainer", first: true, predicate: ["tableContainer"], descendants: true }, { propertyName: "table", first: true, predicate: TableComponent$1, descendants: true, read: ElementRef }, { propertyName: "_focusableGrid", first: true, predicate: FDK_FOCUSABLE_GRID_DIRECTIVE, descendants: true }, { propertyName: "_tableBody", first: true, predicate: ["tableBody"], descendants: true, read: ElementRef }, { propertyName: "_dndDirective", first: true, predicate: DndListDirective, descendants: true }], usesInheritance: true, usesOnChanges: true, hostDirectives: [{ directive: i1.TableDataSourceDirective, inputs: ["dataSource", "dataSource", "childDataSource", "childDataSource"], outputs: ["childDataSourceChanged", "childDataSourceChanged", "onDataRequested", "onDataRequested", "onDataReceived", "onDataReceived", "dataSourceChanged", "dataSourceChanged", "dataChanged", "dataChanged", "isLoading", "isLoading"] }, { directive: i1.TableHeaderResizerDirective }], ngImport: i0, template: "@if (tableToolbar) {\n <!-- Toolbar -->\n <ng-template\n [ngTemplateOutlet]=\"tableToolbar.contentTemplateRef\"\n [ngTemplateOutletContext]=\"_toolbarContext\"\n ></ng-template>\n}\n<fd-busy-indicator\n [loading]=\"(_tableService.tableLoading$ | async) === true && _dataSourceDirective._firstLoadingDone\"\n [block]=\"true\"\n>\n <!-- Table Container -->\n <div class=\"fdp-table__container\" #tableContainer>\n <ng-template [ngTemplateOutlet]=\"tableTemplate\"></ng-template>\n @if (enableDragResize) {\n <!-- Table column resizer for visually representing the resizing process -->\n <fdp-table-column-resizer class=\"fdp-table__column-resizer\"></fdp-table-column-resizer>\n }\n </div>\n @if (showGrowingButton) {\n <fdp-table-growing-button [showItemsCount]=\"showItemsCount\"></fdp-table-growing-button>\n }\n</fd-busy-indicator>\n<!-- Table Template -->\n<ng-template #tableTemplate>\n <div\n class=\"fdp-table__body fd-scrollbar\"\n [class.fdp-table__body--virtual-scroll]=\"!!_virtualScrollDirective?.virtualScroll\"\n [class.fdp-table__body--disable-scroll]=\"!!_dndTableDirective?.dragDropInProgress\"\n fdpTableScrollable\n #tableScrollable=\"tableScrollable\"\n [style.height]=\"bodyHeight\"\n [class.fixed-height]=\"!!bodyHeight\"\n [attr.role]=\"pageScrolling ? 'feed' : null\"\n [class.fd-table--fixed]=\"_freezableColumns.size || fixed\"\n >\n <table\n fd-table\n [attr.role]=\"isTreeTable ? 'treegrid' : 'grid'\"\n class=\"fdp-table__body-table\"\n [allCellsFocusable]=\"true\"\n [popIn]=\"_tableService.poppingColumns$().length > 0\"\n [class.fd-table--no-outer-border]=\"noOuterBorders\"\n [attr.aria-labelledby]=\"_ariaLabelledBy\"\n >\n <thead fd-table-header [nonInteractive]=\"nonInteractiveHeader\" class=\"fdp-table__header\">\n <tr\n fdp-table-header-row\n [noBorders]=\"noBorders\"\n [noHorizontalBorders]=\"noHorizontalBorders\"\n [noVerticalBorders]=\"noVerticalBorders\"\n [rowId]=\"id\"\n [fixed]=\"fixed\"\n [isShownSelectionColumn]=\"isSelectionColumnShown\"\n [checkedState]=\"_checkedState\"\n [selectionMode]=\"_selectionMode\"\n [selectionColumnWidth]=\"_selectionColumnWidth\"\n [freezeColumnsTo]=\"freezeColumnsTo\"\n [freezeEndColumnsTo]=\"freezeEndColumnsTo\"\n (keydown.enter)=\"_onRowClick(null, $event)\"\n (keydown.space)=\"_onRowClick(null, $event)\"\n (click)=\"_onRowClick(null, $event)\"\n [disableSelectionCheckbox]=\"_dataSourceTableRows.length === 0\"\n ></tr>\n </thead>\n @if (!!_tableRowsVisible.length && _tableService.visibleColumnsLength() > 0) {\n <tbody\n fd-table-body\n fdkDndList\n #tableBody\n [dragoverPredicate]=\"_dndTableDirective?.dragoverPredicate\"\n [dropPredicate]=\"_dndTableDirective?.dropPredicate\"\n [noBorderX]=\"noBorderX || noBorders\"\n [noBorderY]=\"noBorderY || noBorders\"\n [tabIndex]=\"pageScrolling ? 0 : -1\"\n [items]=\"_dndTableRowsPlaceholder\"\n [draggable]=\"isDraggable\"\n [dropMode]=\"_dndTableDirective?.dropMode ?? 'group'\"\n (itemDropped)=\"_dndTableDirective?.dragDropItemDrop($event)\"\n (dropPredicateCalculating)=\"_calculatingLoading($event)\"\n (dropCancelled)=\"_dndTableDirective?.dropCancelled()\"\n >\n @for (rowIndex of _tableCurrentlyRenderedRowsPlaceholder; track _rowTrackBy($index, rowIndex)) {\n @if (_tableRowsVisible[rowIndex]; as row) {\n @switch (row.type) {\n @case ('group') {\n <tr\n fdp-table-group-row\n [index]=\"rowIndex\"\n [height]=\"rowHeight\"\n [draggable]=\"isDraggable\"\n [row]=\"row\"\n [rowId]=\"id\"\n [keyToColumnMap]=\"_keyToColumnMap\"\n [tableColumnsLength]=\"_tableColumnsLength\"\n (toggleGroupRow)=\"_toggleGroupRow($event)\"\n (click)=\"_emitRowActivate(row, $event.ctrlKey || $event.metaKey)\"\n ></tr>\n }\n @default {\n <tr\n [fdkDndItem]=\"row\"\n [applyDragItemClass]=\"isDraggable\"\n [class]=\"row | rowClasses: rowsClass\"\n [tabindex]=\"rowsActivable || !!row.navigatable ? 0 : -1\"\n [focusable]=\"rowsActivable || !!row.navigatable\"\n [hoverable]=\"rowsActivable || isSelectionColumnShown || !!row.navigatable\"\n [activable]=\"rowsActivable || !!row.navigatable\"\n [active]=\"rowIndex === _navigatedRowIndex\"\n [highlightActive]=\"highlightNavigatedRow\"\n [style.height.px]=\"rowHeight\"\n [attr.aria-level]=\"isTreeTable ? row.level + 1 : null\"\n (keydown.enter)=\"_onRowClick(row, $event)\"\n (keydown.space)=\"_onRowClick(row, $event)\"\n (click)=\"_onRowClick(row, $event)\"\n (started)=\"_dndTableDirective?.dragDropStart()\"\n [main]=\"true\"\n [class.fd-table__row--draggable]=\"isDraggable\"\n fdp-table-row\n [attr.aria-rowindex]=\"rowIndex + 1\"\n [rowId]=\"id\"\n [class.fd-tr-hovered]=\"!row.checked && hoveredRowIndex$() === rowIndex\"\n [index]=\"rowIndex\"\n [row]=\"row\"\n [selectionMode]=\"_selectionMode\"\n [selectableKey]=\"selectableKey\"\n [enableTristateMode]=\"enableTristateMode\"\n [fixed]=\"fixed\"\n [selectionColumnWidth]=\"_selectionColumnWidth\"\n [freezeColumnsTo]=\"freezeColumnsTo\"\n [freezeEndColumnsTo]=\"freezeEndColumnsTo\"\n ></tr>\n }\n }\n @if (row.type === 'item' && _tableService.poppingColumns$().length > 0) {\n <tr\n (keydown.enter)=\"_onRowClick(row, $event)\"\n (keydown.space)=\"_onRowClick(row, $event)\"\n (click)=\"_onRowClick(row, $event)\"\n fdp-table-popping-row\n [secondary]=\"true\"\n [style.cursor]=\"rowsActivable || !!row.navigatable ? 'pointer' : 'auto'\"\n [style.height.px]=\"secondaryRowHeight\"\n [selectionMode]=\"selectionMode\"\n [row]=\"row\"\n [checked]=\"row.checked\"\n [class]=\"row | rowClasses: rowsClass\"\n (toggleGroupRow)=\"_toggleGroupRow($event)\"\n (cellClicked)=\"_onCellClick($event.index, $event.row)\"\n (mouseenter)=\"handleMouseEnter(rowIndex)\"\n (mouseleave)=\"handleMouseLeave()\"\n ></tr>\n }\n @if (row.children.length === 0 && (row.childItemsLoading$ | async)) {\n @for (_ of loadingRowRange; track $index) {\n <tr fd-table-row>\n @for (_ of loadingColumnsRange; track $index) {\n <td fd-table-cell>\n <fd-skeleton\n [style.margin]=\"'auto 0'\"\n type=\"text\"\n textLines=\"1\"\n width=\"60%\"\n ></fd-skeleton>\n </td>\n }\n </tr>\n }\n }\n <!-- Last rendered child row. -->\n @if (row.parent?.lastChild?.index === row.index) {\n <tr\n aria-hidden=\"true\"\n class=\"fd-table__intersection-spy\"\n [fdkIntersectionSpy]=\"pageScrollingThreshold\"\n (intersected)=\"$event && _tableRowService.loadChildRows(row.parent!)\"\n [style.top.px]=\"pageScrollingThreshold * -1\"\n ></tr>\n }\n }\n }\n @if (pageScrolling) {\n <tr\n aria-hidden=\"true\"\n class=\"fd-table__intersection-spy\"\n [fdkIntersectionSpy]=\"pageScrollingThreshold\"\n (intersected)=\"$event && _onSpyIntersect($event)\"\n [style.top.px]=\"pageScrollingThreshold * -1\"\n ></tr>\n }\n </tbody>\n } @else {\n @if (!_dataSourceDirective._firstLoadingDone) {\n <tbody fd-table-body>\n @for (_ of loadingRowRange; track $index) {\n <tr fd-table-row>\n @for (_ of loadingColumnsRange; track $index) {\n <td fd-table-cell>\n <fd-skeleton\n [style.margin]=\"'auto 0'\"\n type=\"text\"\n textLines=\"1\"\n width=\"60%\"\n ></fd-skeleton>\n </td>\n }\n </tr>\n }\n </tbody>\n } @else {\n <tbody fd-table-body class=\"fdp-table__empty\">\n <tr fd-table-row>\n <td fd-table-cell class=\"fd-table__cell--no-data\" [attr.colspan]=\"_tableColumnsLength\">\n <div class=\"fdp-table__empty-table-message\">\n <ng-content select=\"fdp-table-no-data-wrapper\"></ng-content>\n @if (!_noDataWrapper && _tableService.visibleColumnsLength() > 0) {\n <div>\n {{\n emptyTableMessage ||\n ('platformTable.defaultEmptyMessage' | fdTranslate)()\n }}\n </div>\n } @else if (_tableService.visibleColumnsLength() === 0) {\n <div>\n {{\n noVisibleColumnsMessage ||\n ('platformTable.noVisibleColumnsMessage' | fdTranslate)()\n }}\n </div>\n }\n </div>\n </td>\n </tr>\n </tbody>\n }\n }\n @if (pageScrolling) {\n <tbody class=\"fd-table__body__focus-mock\"></tbody>\n }\n @if (_virtualScrollDirective?.virtualScroll) {\n <!-- the tbody element below is so the scrollbar renders correctly -->\n <tbody>\n <tr>\n <td colspan=\"100%\" [style.height.px]=\"_virtualScrollDirective!.virtualScrollTotalHeight\"></td>\n </tr>\n </tbody>\n }\n @if (showTableFooter) {\n <tfoot fd-table-footer>\n <tr fdp-table-footer-row></tr>\n </tfoot>\n }\n </table>\n </div>\n</ng-template>\n<!-- Empty Table Message -->\n", styles: [".fd-scrollbar{border:0;-webkit-box-sizing:border-box;box-sizing:border-box;color:var(--sapTextColor);font-family:var(--sapFontFamily);font-size:var(--sapFontSize);font-weight:400;forced-color-adjust:none;line-height:normal;margin-block:0;margin-inline:0;overflow:auto;padding-block:0;padding-inline:0;scrollbar-color:var(--fdScrollbar_Thumb_Color) var(--fdScrollbar_Track_Color)}.fd-scrollbar:after,.fd-scrollbar:before{-webkit-box-sizing:inherit;box-sizing:inherit;font-size:inherit}.fd-scrollbar.is-focus,.fd-scrollbar:focus{outline:none;z-index:5}.fd-scrollbar::-webkit-scrollbar{height:var(--fdScrollbar_Dimension);width:var(--fdScrollbar_Dimension)}.fd-scrollbar::-webkit-scrollbar-corner,.fd-scrollbar::-webkit-scrollbar-track{background-color:var(--fdScrollbar_Track_Color)}.fd-scrollbar::-webkit-scrollbar-thumb{background-color:transparent;border:var(--fdScrollbar_Thumb_Offset) solid transparent;border-radius:calc(var(--fdScrollbar_Thumb_Border_Radius) - var(--fdScrollbar_Thumb_Offset));-webkit-box-shadow:inset 0 0 0 var(--fdScrollbar_Dimension) var(--fdScrollbar_Thumb_Color);box-shadow:inset 0 0 0 var(--fdScrollbar_Dimension) var(--fdScrollbar_Thumb_Color)}.fd-scrollbar::-webkit-scrollbar-thumb:active,.fd-scrollbar::-webkit-scrollbar-thumb:hover{-webkit-box-shadow:inset 0 0 0 var(--fdScrollbar_Dimension) var(--fdScrollbar_Thumb_Hover_Color);box-shadow:inset 0 0 0 var(--fdScrollbar_Dimension) var(--fdScrollbar_Thumb_Hover_Color)}.fd-scrollbar--container::-webkit-scrollbar-corner,.fd-scrollbar--container::-webkit-scrollbar-track{background-color:var(--fdScrollbar_Track_Color);border-radius:0 var(--fdScrollbar_Border_Radius) var(--fdScrollbar_Border_Radius) 0}.fd-scrollbar--container[dir=rtl]::-webkit-scrollbar-corner,.fd-scrollbar--container[dir=rtl]::-webkit-scrollbar-track,[dir=rtl] .fd-scrollbar--container::-webkit-scrollbar-corner,[dir=rtl] .fd-scrollbar--container::-webkit-scrollbar-track{border-radius:var(--fdScrollbar_Border_Radius) 0 0 var(--fdScrollbar_Border_Radius)}.cdk-visually-hidden{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;white-space:nowrap;outline:0;-webkit-appearance:none;-moz-appearance:none;left:0}[dir=rtl] .cdk-visually-hidden{left:auto;right:0}.fd-table__cell--focusable[aria-selected=true]:after{border-color:var(--sapContent_FocusColor)!important}fdk-dynamic-portal .fdp-table-toolbar-actions{gap:.5rem;display:flex;flex-direction:column}.fdp-table{display:block}.fdp-table .fd-table__row:focus-visible{outline:none}.fdp-table .fdp-table-toolbar-actions{gap:.5rem;display:flex;align-items:center}.fdp-table .fdp-table__applied-filters-toolbar label{flex-shrink:1}.fdp-table .fdp-table__body-table,.fdp-table .fdp-table__header-table,.fdp-table .fdp-table__body-hs-table{table-layout:auto;width:100%;border-collapse:separate;border-spacing:0}.fdp-table .fd-table__body__focus-mock{position:absolute;top:var(--fdTable_Header_Cell_Height);left:0;right:0;bottom:0;pointer-events:none;z-index:5}.fdp-table .fd-table__body:focus+.fd-table__body__focus-mock{outline-offset:-.1875rem;outline-width:.0625rem;outline-width:var(--sapContent_FocusWidth, .0625rem);outline-color:#000;outline-color:var(--sapContent_FocusColor, #000);outline-style:dotted;outline-style:var(--sapContent_FocusStyle, dotted)}.fdp-table.fd-table--tree .fd-table__body .fd-table__row,.fdp-table.fd-table--tree .fd-table__body .fd-table__row .fd-replace-indicator,.fdp-table.fd-table--group .fd-table__body .fd-table__row,.fdp-table.fd-table--group .fd-table__body .fd-table__row .fd-replace-indicator{height:2.75rem}.fdp-table.fd-table--tree.fd-table--compact .fd-table__body .fd-table__row,.fdp-table.fd-table--tree.fd-table--compact .fd-table__body .fd-table__row .fd-replace-indicator,.fdp-table.fd-table--group.fd-table--compact .fd-table__body .fd-table__row,.fdp-table.fd-table--group.fd-table--compact .fd-table__body .fd-table__row .fd-replace-indicator{height:2rem}.fdp-table.fd-table--tree.fd-table--condensed .fd-table__body .fd-table__row,.fdp-table.fd-table--tree.fd-table--condensed .fd-table__body .fd-table__row .fd-replace-indicator,.fdp-table.fd-table--group.fd-table--condensed .fd-table__body .fd-table__row,.fdp-table.fd-table--group.fd-table--condensed .fd-table__body .fd-table__row .fd-replace-indicator{height:1.563rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__row{cursor:auto}.fdp-table.fd-table--tree .fd-table__body .fd-table__row--draggable:hover{cursor:grab}.fdp-table.fd-table--tree .fd-table__body .fd-table__row--draggable:active{cursor:grabbing}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__row--draggable.fd-dnd-on-drag.fd-dnd-placeholder,.fdp-table.fd-table--tree .fd-table__body .fd-table__row--draggable.fd-dnd-on-drag.fd-dnd-placeholder[dir=rtl]{padding-left:.5rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__row--draggable.fd-dnd-on-drag:not(.fd-dnd-placeholder) .fdp-table__cell--selection{top:0;transform:translate(-100%)}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__row--draggable.fd-dnd-on-drag:not(.fd-dnd-placeholder) .fdp-table__cell--selection,.fdp-table.fd-table--tree .fd-table__body .fd-table__row--draggable.fd-dnd-on-drag:not(.fd-dnd-placeholder) .fdp-table__cell--selection[dir=rtl]{transform:translate(100%)}.fdp-table.fd-table--tree .fd-table__body .fd-table__row .fd-replace-indicator{top:auto}.fdp-table.fd-table--tree .fd-table__body .fd-table__row .fd-table__text{white-space:nowrap}.fdp-table.fd-table--tree.fd-table--condensed .fd-table__row.fd-dnd-on-drag.fd-dnd-placeholder,.fdp-table.fd-table--tree.fd-table--compact .fd-table__row.fd-dnd-on-drag.fd-dnd-placeholder{padding-left:2rem}[dir=rtl] .fdp-table.fd-table--tree.fd-table--condensed .fd-table__row.fd-dnd-on-drag.fd-dnd-placeholder,.fdp-table.fd-table--tree.fd-table--condensed .fd-table__row.fd-dnd-on-drag.fd-dnd-placeholder[dir=rtl],[dir=rtl] .fdp-table.fd-table--tree.fd-table--compact .fd-table__row.fd-dnd-on-drag.fd-dnd-placeholder,.fdp-table.fd-table--tree.fd-table--compact .fd-table__row.fd-dnd-on-drag.fd-dnd-placeholder[dir=rtl]{padding-left:.5rem}.fdp-table.fd-table--condensed .fd-table__body .fd-table__cell--checkbox .fd-checkbox__label{position:relative;margin-top:0}.fdp-table.fdp-table--no-outer-border .fdp-table__header,.fdp-table.fdp-table--no-outer-border .fdp-table__body,.fdp-table.fdp-table--no-outer-border .fdp-table__body-hs,[dir=rtl] .fdp-table.fdp-table--no-outer-border .fdp-table__header,.fdp-table.fdp-table--no-outer-border .fdp-table__header[dir=rtl],[dir=rtl] .fdp-table.fdp-table--no-outer-border .fdp-table__body,.fdp-table.fdp-table--no-outer-border .fdp-table__body[dir=rtl],[dir=rtl] .fdp-table.fdp-table--no-outer-border .fdp-table__body-hs,.fdp-table.fdp-table--no-outer-border .fdp-table__body-hs[dir=rtl]{border-left:none;border-right:none}[dir=rtl] .fdp-table.fdp-table--no-outer-border .fdp-table__header .fd-table__cell:first-child,.fdp-table.fdp-table--no-outer-border .fdp-table__header[dir=rtl] .fd-table__cell:first-child,[dir=rtl] .fdp-table.fdp-table--no-outer-border .fdp-table__body .fd-table__cell:first-child,.fdp-table.fdp-table--no-outer-border .fdp-table__body[dir=rtl] .fd-table__cell:first-child,[dir=rtl] .fdp-table.fdp-table--no-outer-border .fdp-table__body-hs .fd-table__cell:first-child,.fdp-table.fdp-table--no-outer-border .fdp-table__body-hs[dir=rtl] .fd-table__cell:first-child{border-right:none}.fdp-table.fdp-table--no-outer-border .fdp-table__header .fd-table__cell{border-top:none}.fdp-table.fdp-table--no-outer-border .fdp-table__body{border-bottom:none}.fdp-table__container{position:relative;overflow:hidden;outline:none}.fdp-table__header{z-index:2}.fdp-table__header .fd-table__cell,.fdp-table__header .fd-table__cell--mock{border-top:.0625rem solid #e4e4e4;border-top:var(--sapList_BorderWidth, .0625rem) solid var(--sapList_BorderColor, #e4e4e4);border-bottom:.0625rem solid #e4e4e4;border-bottom:var(--sapList_BorderWidth, .0625rem) solid var(--sapList_BorderColor, #e4e4e4)}.fdp-table__header .fd-table__cell{margin-top:0;max-height:100%;top:0}.fdp-table__header .fd-table__cell--fixed{position:sticky}.fdp-table__header .fd-table__cell .fd-table__popover--custom{display:none}.fdp-table__header .fd-table__cell .fdp-table__navigation-indicator{opacity:0;visibility:hidden}.fdp-table__header .fd-table__cell--truncate-txt{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:inline-block;vertical-align:text-bottom;max-width:100%}.fdp-table__header th.fd-table__cell{border-block-start:none}.fdp-table__body-hs{box-sizing:border-box;border-left:.0625rem solid #e4e4e4;border-left:var(--sapList_BorderWidth, .0625rem) solid var(--sapList_BorderColor, #e4e4e4);background:var(--fdScrollbar_Track_Color, #ffffff);padding-right:var(--fdScrollbar_Dimension)}[dir=rtl] .fdp-table__body-hs,.fdp-table__body-hs[dir=rtl]{padding-right:0;padding-left:var(--fdScrollbar_Dimension);border-left:none;border-right:.0625rem solid #e4e4e4;border-right:var(--sapList_BorderWidth, .0625rem) solid var(--sapList_BorderColor, #e4e4e4)}.fdp-table__body-hs-wrap{width:100%;position:relative}.fdp-table__body-hs-spacer{position:absolute;height:1px;visibility:hidden}.fdp-table__empty-table-message{box-sizing:border-box;padding:1rem;text-align:center;display:flex;align-items:center;justify-content:center;align-content:center;width:100%}.fdp-table__empty .fd-table__cell{width:100%}.fdp-table__empty .fd-table__body{border-left:none}[dir=rtl] .fdp-table__empty .fd-table__body,.fdp-table__empty .fd-table__body[dir=rtl]{border-left:.0625rem solid #e4e4e4;border-left:var(--sapList_BorderWidth, .0625rem) solid var(--sapList_BorderColor, #e4e4e4);border-right:none}.fdp-table__empty.fixed-height{background-color:#fff;background-color:var(--sapList_Background, #fff)}.fdp-table .fd-table__cell{z-index:0}.fdp-table .fd-table__cell--group{min-width:100%;border-left:none}.fdp-table .fd-table__cell--group:before{content:\"\";display:block;position:absolute;top:-.0625rem;left:0;right:0;border-top:.0625rem solid #e4e4e4;border-top:var(--sapList_BorderWidth, .0625rem) solid var(--sapList_BorderColor, #e4e4e4)}.fdp-table .fd-table__cell--status-indicator{border-left:none;border-right:.0625rem solid #e4e4e4;border-right:var(--sapList_BorderWidth, .0625rem) solid var(--sapList_BorderColor, #e4e4e4);min-width:.375rem}[dir=rtl] .fdp-table .fd-table__cell--status-indicator,.fdp-table .fd-table__cell--status-indicator[dir=rtl]{border-right:none}.fdp-table .fd-table__cell--mock.fd-table__cell--mock-borderless{border-left:none!important;border-right:none!important;border-bottom:none!important;border-top:none!important}.fdp-table .fd-table__cell .fdp-table__navigation-indicator{margin:auto}[dir=rtl] .fdp-table .fd-table__cell:nth-last-child(2):not(.fdp-table__cell--group),.fdp-table .fd-table__cell[dir=rtl]:nth-last-child(2):not(.fdp-table__cell--group){border-left:.0625rem solid #e4e4e4;border-left:var(--sapList_BorderWidth, .0625rem) solid var(--sapList_BorderColor, #e4e4e4)}.fdp-table .fd-dnd-item{position:relative}.fdp-table .fd-table__cell--fixed{position:sticky;display:table-cell;z-index:1}.fdp-table .fd-table__cell--checkbox fd-checkbox{display:flex;height:100%}.fdp-table .fd-table__cell--checkbox fd-checkbox .fd-checkbox__label{align-self:center;margin:0}.fdp-table .fd-table__expand-wrapper{display:flex;align-items:center}.fdp-table__column-resizer{bottom:calc(var(--fdScrollbar_Dimension) + var(--sapList_BorderWidth, .0625rem))}.fdp-table__cell--navigation{width:4rem;min-width:4rem;max-width:4rem}.fdp-table__body-table.fd-table--pop-in .fd-table__row--secondary .fd-table__cell{border-bottom:var(--sapList_BorderWidth) solid var(--sapList_BorderColor)}.fdp-table__body-table.fd-table--pop-in .fd-table__row--secondary:hover{background-color:var(--sapList_Hover_Background)}.fdp-table__body-table.fd-table--pop-in .fdp-table__header .fd-table__cell .fd-table__text{margin-bottom:0}.fdp-table__body--virtual-scroll{position:relative;will-change:scroll-position}.fdp-table__body--virtual-scroll .fd-table__body{position:static;will-change:transform}.fdp-table.fd-table--no-vertical-borders .fd-table__cell--status-indicator{border-right-color:transparent}[dir=rtl] .fdp-table.fd-table--no-vertical-borders .fd-table__cell--status-indicator,.fdp-table.fd-table--no-vertical-borders .fd-table__cell--status-indicator[dir=rtl]{border-left-color:transparent}.fdp-table__growing-button{height:auto}.fdp-table__growing-button__title{font-weight:700;margin:.813rem 0}.fdp-table__growing-button__subtitle{padding-bottom:.875rem}.fdp-table__growing-button-content{display:flex;justify-content:center;flex-direction:column}.fdp-table__growing-button-content--byline>*{display:flex;flex-direction:column;width:100%}.fdp-table__growing-button-total{border-top:var(--fdList_Item_Action_Border)!important}.fdp-table__growing-button-total .fd-list__title{line-height:2.75rem}.fdp-table.fdp-table--outer-scroll .fd-toolbar{position:sticky;z-index:10;top:0}.fdp-table.fdp-table--outer-scroll .fdp-table__body.fd-scrollbar,.fdp-table.fdp-table--outer-scroll .fdp-table__container{overflow:visible}.fdp-table.fdp-table--outer-scroll thead{position:sticky;top:0}.fdp-table.fdp-table--outer-scroll:has(.fd-toolbar) thead{position:sticky;top:2.75rem}.fdp-table.fdp-table--outer-scroll:has(.fd-toolbar):has(.is-compact) thead{position:sticky;top:2rem}.fdp-table.fdp-table--outer-scroll:has(.fd-toolbar):has(.fd-toolbar--title) thead{position:sticky;top:2.75rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"1\"]{padding-left:2.75rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"1\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"1\"][dir=rtl]{padding-left:.5rem;padding-right:2.75rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"2\"]{padding-left:4.25rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"2\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"2\"][dir=rtl]{padding-left:.5rem;padding-right:4.25rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"3\"]{padding-left:5rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"3\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"3\"][dir=rtl]{padding-left:.5rem;padding-right:5rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"4\"]{padding-left:5.5rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"4\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"4\"][dir=rtl]{padding-left:.5rem;padding-right:5.5rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"5\"]{padding-left:6rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"5\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"5\"][dir=rtl]{padding-left:.5rem;padding-right:6rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"6\"]{padding-left:6.5rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"6\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"6\"][dir=rtl]{padding-left:.5rem;padding-right:6.5rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"7\"]{padding-left:7rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"7\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"7\"][dir=rtl]{padding-left:.5rem;padding-right:7rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"8\"]{padding-left:7.5rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"8\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"8\"][dir=rtl]{padding-left:.5rem;padding-right:7.5rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"9\"]{padding-left:8rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"9\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"9\"][dir=rtl]{padding-left:.5rem;padding-right:8rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"10\"]{padding-left:8.5rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"10\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"10\"][dir=rtl]{padding-left:.5rem;padding-right:8.5rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"11\"]{padding-left:9rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"11\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"11\"][dir=rtl]{padding-left:.5rem;padding-right:9rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"12\"]{padding-left:9.5rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"12\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"12\"][dir=rtl]{padding-left:.5rem;padding-right:9.5rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"13\"]{padding-left:10rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"13\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"13\"][dir=rtl]{padding-left:.5rem;padding-right:10rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"14\"]{padding-left:10.5rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"14\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"14\"][dir=rtl]{padding-left:.5rem;padding-right:10.5rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"15\"]{padding-left:11rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"15\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"15\"][dir=rtl]{padding-left:.5rem;padding-right:11rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"16\"]{padding-left:11.5rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"16\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"16\"][dir=rtl]{padding-left:.5rem;padding-right:11.5rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"17\"]{padding-left:12rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"17\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"17\"][dir=rtl]{padding-left:.5rem;padding-right:12rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"18\"]{padding-left:12.5rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"18\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"18\"][dir=rtl]{padding-left:.5rem;padding-right:12.5rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"19\"]{padding-left:13rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"19\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"19\"][dir=rtl]{padding-left:.5rem;padding-right:13rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"20\"]{padding-left:13.5rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"20\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"20\"][dir=rtl]{padding-left:.5rem;padding-right:13.5rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand,.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand{cursor:pointer;white-space:nowrap}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"]{padding-left:0}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"][dir=rtl]{padding-left:.5rem;padding-right:0}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"]{padding-left:1.5rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"][dir=rtl]{padding-left:.5rem;padding-right:1.5rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"]{padding-left:2.25rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"][dir=rtl]{padding-left:.5rem;padding-right:2.25rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"]{padding-left:2.75rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"][dir=rtl]{padding-left:.5rem;padding-right:2.75rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"]{padding-left:3.25rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"][dir=rtl]{padding-left:.5rem;padding-right:3.25rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"]{padding-left:3.75rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"][dir=rtl]{padding-left:.5rem;padding-right:3.75rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"]{padding-left:4.25rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"][dir=rtl]{padding-left:.5rem;padding-right:4.25rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"]{padding-left:4.75rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"][dir=rtl]{padding-left:.5rem;padding-right:4.75rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"]{padding-left:5.25rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"][dir=rtl]{padding-left:.5rem;padding-right:5.25rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"]{padding-left:5.75rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"][dir=rtl]{padding-left:.5rem;padding-right:5.75rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"]{padding-left:6.25rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"][dir=rtl]{padding-left:.5rem;padding-right:6.25rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"]{padding-left:6.75rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"][dir=rtl]{padding-left:.5rem;padding-right:6.75rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"]{padding-left:7.25rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"][dir=rtl]{padding-left:.5rem;padding-right:7.25rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"]{padding-left:7.75rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"][dir=rtl]{padding-left:.5rem;padding-right:7.75rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"]{padding-left:8.25rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"][dir=rtl]{padding-left:.5rem;padding-right:8.25rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"]{padding-left:8.75rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"][dir=rtl]{padding-left:.5rem;padding-right:8.75rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"]{padding-left:9.25rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"][dir=rtl]{padding-left:.5rem;padding-right:9.25rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"]{padding-left:9.75rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"][dir=rtl]{padding-left:.5rem;padding-right:9.75rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"]{padding-left:10.25rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"][dir=rtl]{padding-left:.5rem;padding-right:10.25rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"]{padding-left:10.75rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"][dir=rtl]{padding-left:.5rem;padding-right:10.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"1\"]{padding-left:2rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"1\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"1\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"1\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"1\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"1\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"1\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"1\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"1\"][dir=rtl]{padding-left:.5rem;padding-right:2rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"2\"]{padding-left:3.5rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"2\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"2\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"2\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"2\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"2\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"2\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"2\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"2\"][dir=rtl]{padding-left:.5rem;padding-right:3.5rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"3\"]{padding-left:4.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"3\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"3\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"3\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"3\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"3\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"3\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"3\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"3\"][dir=rtl]{padding-left:.5rem;padding-right:4.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"4\"]{padding-left:4.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"4\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"4\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"4\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"4\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"4\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"4\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"4\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"4\"][dir=rtl]{padding-left:.5rem;padding-right:4.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"5\"]{padding-left:5.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"5\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"5\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"5\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"5\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"5\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"5\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"5\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"5\"][dir=rtl]{padding-left:.5rem;padding-right:5.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"6\"]{padding-left:5.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"6\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"6\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"6\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"6\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"6\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"6\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"6\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"6\"][dir=rtl]{padding-left:.5rem;padding-right:5.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"7\"]{padding-left:6.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"7\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"7\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"7\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"7\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"7\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"7\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"7\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"7\"][dir=rtl]{padding-left:.5rem;padding-right:6.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"8\"]{padding-left:6.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"8\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"8\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"8\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"8\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"8\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"8\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"8\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"8\"][dir=rtl]{padding-left:.5rem;padding-right:6.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"9\"]{padding-left:7.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"9\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"9\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"9\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"9\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"9\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"9\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"9\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"9\"][dir=rtl]{padding-left:.5rem;padding-right:7.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"10\"]{padding-left:7.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"10\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"10\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"10\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"10\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"10\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"10\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"10\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"10\"][dir=rtl]{padding-left:.5rem;padding-right:7.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"11\"]{padding-left:8.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"11\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"11\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"11\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"11\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"11\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"11\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"11\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"11\"][dir=rtl]{padding-left:.5rem;padding-right:8.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"12\"]{padding-left:8.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"12\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"12\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"12\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"12\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"12\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"12\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"12\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"12\"][dir=rtl]{padding-left:.5rem;padding-right:8.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"13\"]{padding-left:9.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"13\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"13\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"13\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"13\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"13\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"13\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"13\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"13\"][dir=rtl]{padding-left:.5rem;padding-right:9.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"14\"]{padding-left:9.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"14\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"14\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"14\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"14\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"14\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"14\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"14\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"14\"][dir=rtl]{padding-left:.5rem;padding-right:9.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"15\"]{padding-left:10.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"15\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"15\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"15\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"15\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"15\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"15\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"15\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"15\"][dir=rtl]{padding-left:.5rem;padding-right:10.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"16\"]{padding-left:10.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"16\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"16\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"16\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"16\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"16\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"16\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"16\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"16\"][dir=rtl]{padding-left:.5rem;padding-right:10.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"17\"]{padding-left:11.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"17\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"17\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"17\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"17\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"17\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"17\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"17\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"17\"][dir=rtl]{padding-left:.5rem;padding-right:11.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"18\"]{padding-left:11.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"18\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"18\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"18\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"18\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"18\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"18\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"18\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"18\"][dir=rtl]{padding-left:.5rem;padding-right:11.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"19\"]{padding-left:12.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"19\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"19\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"19\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"19\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"19\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"19\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"19\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"19\"][dir=rtl]{padding-left:.5rem;padding-right:12.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"20\"]{padding-left:12.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"20\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"20\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"20\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"20\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"20\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"20\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"20\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"20\"][dir=rtl]{padding-left:.5rem;padding-right:12.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"]{padding-left:0}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"][dir=rtl]{padding-left:.5rem;padding-right:0}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"]{padding-left:1.5rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"][dir=rtl]{padding-left:.5rem;padding-right:1.5rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"]{padding-left:2.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"][dir=rtl]{padding-left:.5rem;padding-right:2.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"]{padding-left:2.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"][dir=rtl]{padding-left:.5rem;padding-right:2.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"]{padding-left:3.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"][dir=rtl]{padding-left:.5rem;padding-right:3.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"]{padding-left:3.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"][dir=rtl]{padding-left:.5rem;padding-right:3.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"]{padding-left:4.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"][dir=rtl]{padding-left:.5rem;padding-right:4.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"]{padding-left:4.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"][dir=rtl]{padding-left:.5rem;padding-right:4.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"]{padding-left:5.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"][dir=rtl]{padding-left:.5rem;padding-right:5.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"]{padding-left:5.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"][dir=rtl]{padding-left:.5rem;padding-right:5.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"]{padding-left:6.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"][dir=rtl]{padding-left:.5rem;padding-right:6.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"]{padding-left:6.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"][dir=rtl]{padding-left:.5rem;padding-right:6.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"]{padding-left:7.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"][dir=rtl]{padding-left:.5rem;padding-right:7.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"]{padding-left:7.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"][dir=rtl]{padding-left:.5rem;padding-right:7.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"]{padding-left:8.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"][dir=rtl]{padding-left:.5rem;padding-right:8.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"]{padding-left:8.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"][dir=rtl]{padding-left:.5rem;padding-right:8.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"]{padding-left:9.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"][dir=rtl]{padding-left:.5rem;padding-right:9.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"]{padding-left:9.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"][dir=rtl]{padding-left:.5rem;padding-right:9.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"]{padding-left:10.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"][dir=rtl]{padding-left:.5rem;padding-right:10.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"]{padding-left:10.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"][dir=rtl]{padding-left:.5rem;padding-right:10.75rem}.fd-table__intersection-spy{position:relative}.fdp-table--no-outer-border.fd-table--no-vertical-borders .fd-table__cell.is-last-child,.fdp-table--no-outer-border.fd-table--no-vertical-borders .fd-table__cell:last-child{border-left-style:none}th.fd-table__cell .fd-table__inner{font-weight:700}.fd-tr-hovered{background-color:var(--sapList_Hover_Background)!important}.fdp-table__body--disable-scroll{overflow:hidden!important}.fd-toolbar__group{gap:.5rem;display:flex;align-items:center}\n/*! Bundled license information:\n\nfundamental-styles/dist/scrollbar.css:\n (*!\n * Fundamental Library Styles v0.40.1\n * Copyright (c) 2025 SAP SE or an SAP affiliate company.\n * Licensed under Apache License 2.0 (https://github.com/SAP/fundamental-styles/blob/main/LICENSE)\n *)\n*/\n"], dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: BusyIndicatorComponent, selector: "fd-busy-indicator", inputs: ["loading", "size", "block", "ariaLabel", "ariaValueText", "title", "label", "ariaLive"] }, { kind: "component", type: PlatformTableColumnResizerComponent, selector: "fdp-table-column-resizer" }, { kind: "directive", type: TableScrollableDirective, selector: "[fdpTableScrollable]", exportAs: ["tableScrollable"] }, { kind: "component", type: TableComponent$1, selector: "table[fd-table]", inputs: ["noBorderX", "noBorderY", "noOuterBorder", "topBorder", "popIn", "responsive", "keys", "allCellsFocusable"], exportAs: ["fd-table"] }, { kind: "directive", type: TableHeaderDirective, selector: "[fdTableHeader], [fd-table-header]", inputs: ["noBorderX", "noBorderY", "nonInteractive"] }, { kind: "component", type: TableHeaderRowComponent, selector: "[fdp-table-header-row]", inputs: ["rowId", "fixed", "isShownSelectionColumn", "checkedState", "selectionMode", "selectionColumnWidth", "freezeColumnsTo", "noHorizontalBorders", "noVerticalBorders", "noBorders", "freezeEndColumnsTo", "disableSelectionCheckbox"] }, { kind: "directive", type: TableBodyDirective, selector: "[fdTableBody], [fd-table-body]", inputs: ["noBorderX", "noBorderY"] }, { kind: "ngmodule", type: DragAndDropModule }, { kind: "directive", type: i3.DndItemDirective, selector: "[fdkDndItem], [fd-dnd-item]", inputs: ["fdkDndItem", "applyDragItemClass", "containerSelector", "stickInPlace", "draggable", "classWhenElementDragged"], outputs: ["moved", "released", "started"] }, { kind: "directive", type: i3.DndListDirective, selector: "[fdkDndList], [fd-dnd-list]", inputs: ["gridMode", "dropMode", "threshold", "items", "draggable", "dropPredicate", "dragoverPredicate"], outputs: ["dropPredicateCalculating", "itemsChange", "itemDropped", "dropCancelled"] }, { kind: "component", type: TableGroupRowComponent, selector: "[fdp-table-group-row]", inputs: ["rowId", "index", "height", "draggable", "row", "keyToColumnMap", "tableColumnsLength"], outputs: ["toggleGroupRow"] }, { kind: "component", type: TableRowComponent, selector: "[fdp-table-row]", inputs: ["rowId", "row", "index", "selectionMode", "selectableKey", "enableTristateMode", "fixed", "selectionColumnWidth", "freezeColumnsTo", "freezeEndColumnsTo"], outputs: ["keyboardDrag"] }, { kind: "component", type: TablePoppingRowComponent, selector: "[fdp-table-popping-row]", inputs: ["row", "checked", "selectionMode"], outputs: ["toggleGroupRow", "cellClicked"] }, { kind: "directive", type: TableRowDirective, selector: "[fdTableRow], [fd-table-row]", inputs: ["activable", "highlightActive", "hoverable", "focusable", "main", "secondary", "active"] }, { kind: "directive", type: TableCellDirective, selector: "[fdTableCell], [fd-table-cell]", inputs: ["noBorderX", "noBorderY", "activable", "focusable", "hoverable", "fitContent", "noPadding", "noData", "nonInteractive", "key"] }, { kind: "component", type: SkeletonComponent, selector: "fd-skeleton", inputs: ["animated", "type", "textLines", "width", "height"] }, { kind: "directive", type: IntersectionSpyDirective, selector: "[fdkIntersectionSpy]", inputs: ["fdkIntersectionSpy", "viewportOptions"], outputs: ["intersected"] }, { kind: "component", type: TableGrowingButtonComponent, selector: "fdp-table-growing-button", inputs: ["showItemsCount"] }, { kind: "directive", type: TableFooterDirective, selector: "[fdTableFooter], [fd-table-footer]" }, { kind: "component", type: TableFooterRowComponent, selector: "[fdp-table-footer-row]" }, { kind: "pipe", type: AsyncPipe, name: "async" }, { kind: "pipe", type: FdTranslatePipe, name: "fdTranslate" }, { kind: "pipe", type: RowClassesPipe, name: "rowClasses" }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
5409
+ ], queries: [{ propertyName: "tableToolbar", first: true, predicate: TABLE_TOOLBAR, descendants: true }, { propertyName: "_noDataWrapper", first: true, predicate: NoDataWrapperComponent, descendants: true }, { propertyName: "columns", predicate: TableColumn }, { propertyName: "customEditableCells", predicate: EditableTableCell, descendants: true }], viewQueries: [{ propertyName: "tableScrollable", first: true, predicate: ["tableScrollable"], descendants: true }, { propertyName: "tableContainer", first: true, predicate: ["tableContainer"], descendants: true }, { propertyName: "table", first: true, predicate: TableComponent$1, descendants: true, read: ElementRef }, { propertyName: "_focusableGrid", first: true, predicate: FDK_FOCUSABLE_GRID_DIRECTIVE, descendants: true }, { propertyName: "_tableBody", first: true, predicate: ["tableBody"], descendants: true, read: ElementRef }, { propertyName: "_dndDirective", first: true, predicate: DndListDirective, descendants: true }], usesInheritance: true, usesOnChanges: true, hostDirectives: [{ directive: i1.TableDataSourceDirective, inputs: ["dataSource", "dataSource", "childDataSource", "childDataSource"], outputs: ["childDataSourceChanged", "childDataSourceChanged", "onDataRequested", "onDataRequested", "onDataReceived", "onDataReceived", "dataSourceChanged", "dataSourceChanged", "dataChanged", "dataChanged", "isLoading", "isLoading"] }, { directive: i1.TableHeaderResizerDirective }], ngImport: i0, template: "@if (tableToolbar) {\n <!-- Toolbar -->\n <ng-template\n [ngTemplateOutlet]=\"tableToolbar.contentTemplateRef\"\n [ngTemplateOutletContext]=\"_toolbarContext\"\n ></ng-template>\n}\n<fd-busy-indicator\n [loading]=\"(_tableService.tableLoading$ | async) === true && _dataSourceDirective._firstLoadingDone\"\n [block]=\"true\"\n>\n <!-- Table Container -->\n <div class=\"fdp-table__container\" #tableContainer>\n <ng-template [ngTemplateOutlet]=\"tableTemplate\"></ng-template>\n @if (enableDragResize) {\n <!-- Table column resizer for visually representing the resizing process -->\n <fdp-table-column-resizer class=\"fdp-table__column-resizer\"></fdp-table-column-resizer>\n }\n </div>\n @if (showGrowingButton) {\n <fdp-table-growing-button [showItemsCount]=\"showItemsCount\"></fdp-table-growing-button>\n }\n</fd-busy-indicator>\n<!-- Table Template -->\n<ng-template #tableTemplate>\n <div\n class=\"fdp-table__body fd-scrollbar\"\n [class.fdp-table__body--virtual-scroll]=\"!!_virtualScrollDirective?.virtualScroll\"\n [class.fdp-table__body--disable-scroll]=\"!!_dndTableDirective?.dragDropInProgress\"\n fdpTableScrollable\n #tableScrollable=\"tableScrollable\"\n [style.height]=\"bodyHeight\"\n [class.fixed-height]=\"!!bodyHeight\"\n [attr.role]=\"pageScrolling ? 'feed' : null\"\n [class.fd-table--fixed]=\"_freezableColumns.size || fixed\"\n >\n <table\n fd-table\n [attr.role]=\"isTreeTable ? 'treegrid' : 'grid'\"\n class=\"fdp-table__body-table\"\n [allCellsFocusable]=\"true\"\n [popIn]=\"_tableService.poppingColumns$().length > 0\"\n [class.fd-table--no-outer-border]=\"noOuterBorders\"\n [attr.aria-labelledby]=\"_ariaLabelledBy\"\n >\n <thead fd-table-header [nonInteractive]=\"nonInteractiveHeader\" class=\"fdp-table__header\">\n <tr\n fdp-table-header-row\n [noBorders]=\"noBorders\"\n [noHorizontalBorders]=\"noHorizontalBorders\"\n [noVerticalBorders]=\"noVerticalBorders\"\n [rowId]=\"id\"\n [fixed]=\"fixed\"\n [isShownSelectionColumn]=\"isSelectionColumnShown\"\n [checkedState]=\"_checkedState\"\n [selectionMode]=\"_selectionMode\"\n [selectionColumnWidth]=\"_selectionColumnWidth\"\n [freezeColumnsTo]=\"freezeColumnsTo\"\n [freezeEndColumnsTo]=\"freezeEndColumnsTo\"\n (keydown.enter)=\"_onRowClick(null, $event)\"\n (keydown.space)=\"_onRowClick(null, $event)\"\n (click)=\"_onRowClick(null, $event)\"\n [disableSelectionCheckbox]=\"_dataSourceTableRows.length === 0\"\n ></tr>\n </thead>\n @if (!!_tableRowsVisible.length && _tableService.visibleColumnsLength() > 0) {\n <tbody\n fd-table-body\n fdkDndList\n #tableBody\n [dragoverPredicate]=\"_dndTableDirective?.dragoverPredicate\"\n [dropPredicate]=\"_dndTableDirective?.dropPredicate\"\n [noBorderX]=\"noBorderX || noBorders\"\n [noBorderY]=\"noBorderY || noBorders\"\n [tabIndex]=\"pageScrolling ? 0 : -1\"\n [items]=\"_dndTableRowsPlaceholder\"\n [draggable]=\"isDraggable\"\n [dropMode]=\"_dndTableDirective?.dropMode ?? 'group'\"\n (itemDropped)=\"_dndTableDirective?.dragDropItemDrop($event)\"\n (dropPredicateCalculating)=\"_calculatingLoading($event)\"\n (dropCancelled)=\"_dndTableDirective?.dropCancelled()\"\n >\n @for (rowIndex of _tableCurrentlyRenderedRowsPlaceholder; track _rowTrackBy($index, rowIndex)) {\n @if (_tableRowsVisible[rowIndex]; as row) {\n @switch (row.type) {\n @case ('group') {\n <tr\n fdp-table-group-row\n [index]=\"rowIndex\"\n [height]=\"rowHeight\"\n [draggable]=\"isDraggable\"\n [row]=\"row\"\n [rowId]=\"id\"\n [keyToColumnMap]=\"_keyToColumnMap\"\n (toggleGroupRow)=\"_toggleGroupRow($event)\"\n (click)=\"_emitRowActivate(row, $event.ctrlKey || $event.metaKey)\"\n ></tr>\n }\n @default {\n <tr\n [fdkDndItem]=\"row\"\n [applyDragItemClass]=\"isDraggable\"\n [class]=\"row | rowClasses: rowsClass\"\n [tabindex]=\"rowsActivable || !!row.navigatable ? 0 : -1\"\n [focusable]=\"rowsActivable || !!row.navigatable\"\n [hoverable]=\"rowsActivable || isSelectionColumnShown || !!row.navigatable\"\n [activable]=\"rowsActivable || !!row.navigatable\"\n [active]=\"rowIndex === _navigatedRowIndex\"\n [highlightActive]=\"highlightNavigatedRow\"\n [style.height.px]=\"rowHeight\"\n [attr.aria-level]=\"isTreeTable ? row.level + 1 : null\"\n (keydown.enter)=\"_onRowClick(row, $event)\"\n (keydown.space)=\"_onRowClick(row, $event)\"\n (click)=\"_onRowClick(row, $event)\"\n (started)=\"_dndTableDirective?.dragDropStart()\"\n [main]=\"true\"\n [class.fd-table__row--draggable]=\"isDraggable\"\n fdp-table-row\n [attr.aria-rowindex]=\"rowIndex + 1\"\n [rowId]=\"id\"\n [class.fd-tr-hovered]=\"!row.checked && hoveredRowIndex$() === rowIndex\"\n [index]=\"rowIndex\"\n [row]=\"row\"\n [selectionMode]=\"_selectionMode\"\n [selectableKey]=\"selectableKey\"\n [enableTristateMode]=\"enableTristateMode\"\n [fixed]=\"fixed\"\n [selectionColumnWidth]=\"_selectionColumnWidth\"\n [freezeColumnsTo]=\"freezeColumnsTo\"\n [freezeEndColumnsTo]=\"freezeEndColumnsTo\"\n ></tr>\n }\n }\n @if (row.type === 'item' && _tableService.poppingColumns$().length > 0) {\n <tr\n (keydown.enter)=\"_onRowClick(row, $event)\"\n (keydown.space)=\"_onRowClick(row, $event)\"\n (click)=\"_onRowClick(row, $event)\"\n fdp-table-popping-row\n [secondary]=\"true\"\n [style.cursor]=\"rowsActivable || !!row.navigatable ? 'pointer' : 'auto'\"\n [style.height.px]=\"secondaryRowHeight\"\n [selectionMode]=\"selectionMode\"\n [row]=\"row\"\n [checked]=\"row.checked\"\n [class]=\"row | rowClasses: rowsClass\"\n (toggleGroupRow)=\"_toggleGroupRow($event)\"\n (cellClicked)=\"_onCellClick($event.index, $event.row)\"\n (mouseenter)=\"handleMouseEnter(rowIndex)\"\n (mouseleave)=\"handleMouseLeave()\"\n ></tr>\n }\n @if (row.children.length === 0 && (row.childItemsLoading$ | async)) {\n @for (_ of loadingRowRange; track $index) {\n <tr fd-table-row>\n @for (_ of loadingColumnsRange; track $index) {\n <td fd-table-cell>\n <fd-skeleton\n [style.margin]=\"'auto 0'\"\n type=\"text\"\n textLines=\"1\"\n width=\"60%\"\n ></fd-skeleton>\n </td>\n }\n </tr>\n }\n }\n <!-- Last rendered child row. -->\n @if (row.parent?.lastChild?.index === row.index) {\n <tr\n aria-hidden=\"true\"\n class=\"fd-table__intersection-spy\"\n [fdkIntersectionSpy]=\"pageScrollingThreshold\"\n (intersected)=\"$event && _tableRowService.loadChildRows(row.parent!)\"\n [style.top.px]=\"pageScrollingThreshold * -1\"\n ></tr>\n }\n }\n }\n @if (pageScrolling) {\n <tr\n aria-hidden=\"true\"\n class=\"fd-table__intersection-spy\"\n [fdkIntersectionSpy]=\"pageScrollingThreshold\"\n (intersected)=\"$event && _onSpyIntersect($event)\"\n [style.top.px]=\"pageScrollingThreshold * -1\"\n ></tr>\n }\n </tbody>\n } @else {\n @if (!_dataSourceDirective._firstLoadingDone) {\n <tbody fd-table-body>\n @for (_ of loadingRowRange; track $index) {\n <tr fd-table-row>\n @for (_ of loadingColumnsRange; track $index) {\n <td fd-table-cell>\n <fd-skeleton\n [style.margin]=\"'auto 0'\"\n type=\"text\"\n textLines=\"1\"\n width=\"60%\"\n ></fd-skeleton>\n </td>\n }\n </tr>\n }\n </tbody>\n } @else {\n <tbody fd-table-body class=\"fdp-table__empty\">\n <tr fd-table-row>\n <td fd-table-cell class=\"fd-table__cell--no-data\" colspan=\"100%\">\n <div class=\"fdp-table__empty-table-message\">\n <ng-content select=\"fdp-table-no-data-wrapper\"></ng-content>\n @if (!_noDataWrapper && _tableService.visibleColumnsLength() > 0) {\n <div>\n {{\n emptyTableMessage ||\n ('platformTable.defaultEmptyMessage' | fdTranslate)()\n }}\n </div>\n } @else if (_tableService.visibleColumnsLength() === 0) {\n <div>\n {{\n noVisibleColumnsMessage ||\n ('platformTable.noVisibleColumnsMessage' | fdTranslate)()\n }}\n </div>\n }\n </div>\n </td>\n </tr>\n </tbody>\n }\n }\n @if (pageScrolling) {\n <tbody class=\"fd-table__body__focus-mock\"></tbody>\n }\n @if (_virtualScrollDirective?.virtualScroll) {\n <!-- the tbody element below is so the scrollbar renders correctly -->\n <tbody>\n <tr>\n <td colspan=\"100%\" [style.height.px]=\"_virtualScrollDirective!.virtualScrollTotalHeight\"></td>\n </tr>\n </tbody>\n }\n @if (showTableFooter) {\n <tfoot fd-table-footer>\n <tr fdp-table-footer-row></tr>\n </tfoot>\n }\n </table>\n </div>\n</ng-template>\n<!-- Empty Table Message -->\n", styles: [".fd-scrollbar{border:0;-webkit-box-sizing:border-box;box-sizing:border-box;color:var(--sapTextColor);font-family:var(--sapFontFamily);font-size:var(--sapFontSize);font-weight:400;forced-color-adjust:none;line-height:normal;margin-block:0;margin-inline:0;overflow:auto;padding-block:0;padding-inline:0;scrollbar-color:var(--fdScrollbar_Thumb_Color) var(--fdScrollbar_Track_Color)}.fd-scrollbar:after,.fd-scrollbar:before{-webkit-box-sizing:inherit;box-sizing:inherit;font-size:inherit}.fd-scrollbar.is-focus,.fd-scrollbar:focus{outline:none;z-index:5}.fd-scrollbar::-webkit-scrollbar{height:var(--fdScrollbar_Dimension);width:var(--fdScrollbar_Dimension)}.fd-scrollbar::-webkit-scrollbar-corner,.fd-scrollbar::-webkit-scrollbar-track{background-color:var(--fdScrollbar_Track_Color)}.fd-scrollbar::-webkit-scrollbar-thumb{background-color:transparent;border:var(--fdScrollbar_Thumb_Offset) solid transparent;border-radius:calc(var(--fdScrollbar_Thumb_Border_Radius) - var(--fdScrollbar_Thumb_Offset));-webkit-box-shadow:inset 0 0 0 var(--fdScrollbar_Dimension) var(--fdScrollbar_Thumb_Color);box-shadow:inset 0 0 0 var(--fdScrollbar_Dimension) var(--fdScrollbar_Thumb_Color)}.fd-scrollbar::-webkit-scrollbar-thumb:active,.fd-scrollbar::-webkit-scrollbar-thumb:hover{-webkit-box-shadow:inset 0 0 0 var(--fdScrollbar_Dimension) var(--fdScrollbar_Thumb_Hover_Color);box-shadow:inset 0 0 0 var(--fdScrollbar_Dimension) var(--fdScrollbar_Thumb_Hover_Color)}.fd-scrollbar--container::-webkit-scrollbar-corner,.fd-scrollbar--container::-webkit-scrollbar-track{background-color:var(--fdScrollbar_Track_Color);border-radius:0 var(--fdScrollbar_Border_Radius) var(--fdScrollbar_Border_Radius) 0}.fd-scrollbar--container[dir=rtl]::-webkit-scrollbar-corner,.fd-scrollbar--container[dir=rtl]::-webkit-scrollbar-track,[dir=rtl] .fd-scrollbar--container::-webkit-scrollbar-corner,[dir=rtl] .fd-scrollbar--container::-webkit-scrollbar-track{border-radius:var(--fdScrollbar_Border_Radius) 0 0 var(--fdScrollbar_Border_Radius)}.cdk-visually-hidden{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;white-space:nowrap;outline:0;-webkit-appearance:none;-moz-appearance:none;left:0}[dir=rtl] .cdk-visually-hidden{left:auto;right:0}.fd-table__cell--focusable[aria-selected=true]:after{border-color:var(--sapContent_FocusColor)!important}fdk-dynamic-portal .fdp-table-toolbar-actions{gap:.5rem;display:flex;flex-direction:column}.fdp-table{display:block}.fdp-table .fd-table__row:focus-visible{outline:none}.fdp-table .fdp-table-toolbar-actions{gap:.5rem;display:flex;align-items:center}.fdp-table .fdp-table__applied-filters-toolbar label{flex-shrink:1}.fdp-table .fdp-table__body-table,.fdp-table .fdp-table__header-table,.fdp-table .fdp-table__body-hs-table{table-layout:auto;width:100%;border-collapse:separate;border-spacing:0}.fdp-table .fd-table__body__focus-mock{position:absolute;top:var(--fdTable_Header_Cell_Height);left:0;right:0;bottom:0;pointer-events:none;z-index:5}.fdp-table .fd-table__body:focus+.fd-table__body__focus-mock{outline-offset:-.1875rem;outline-width:.0625rem;outline-width:var(--sapContent_FocusWidth, .0625rem);outline-color:#000;outline-color:var(--sapContent_FocusColor, #000);outline-style:dotted;outline-style:var(--sapContent_FocusStyle, dotted)}.fdp-table.fd-table--tree .fd-table__body .fd-table__row,.fdp-table.fd-table--tree .fd-table__body .fd-table__row .fd-replace-indicator,.fdp-table.fd-table--group .fd-table__body .fd-table__row,.fdp-table.fd-table--group .fd-table__body .fd-table__row .fd-replace-indicator{height:2.75rem}.fdp-table.fd-table--tree.fd-table--compact .fd-table__body .fd-table__row,.fdp-table.fd-table--tree.fd-table--compact .fd-table__body .fd-table__row .fd-replace-indicator,.fdp-table.fd-table--group.fd-table--compact .fd-table__body .fd-table__row,.fdp-table.fd-table--group.fd-table--compact .fd-table__body .fd-table__row .fd-replace-indicator{height:2rem}.fdp-table.fd-table--tree.fd-table--condensed .fd-table__body .fd-table__row,.fdp-table.fd-table--tree.fd-table--condensed .fd-table__body .fd-table__row .fd-replace-indicator,.fdp-table.fd-table--group.fd-table--condensed .fd-table__body .fd-table__row,.fdp-table.fd-table--group.fd-table--condensed .fd-table__body .fd-table__row .fd-replace-indicator{height:1.563rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__row{cursor:auto}.fdp-table.fd-table--tree .fd-table__body .fd-table__row--draggable:hover{cursor:grab}.fdp-table.fd-table--tree .fd-table__body .fd-table__row--draggable:active{cursor:grabbing}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__row--draggable.fd-dnd-on-drag.fd-dnd-placeholder,.fdp-table.fd-table--tree .fd-table__body .fd-table__row--draggable.fd-dnd-on-drag.fd-dnd-placeholder[dir=rtl]{padding-left:.5rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__row--draggable.fd-dnd-on-drag:not(.fd-dnd-placeholder) .fdp-table__cell--selection{top:0;transform:translate(-100%)}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__row--draggable.fd-dnd-on-drag:not(.fd-dnd-placeholder) .fdp-table__cell--selection,.fdp-table.fd-table--tree .fd-table__body .fd-table__row--draggable.fd-dnd-on-drag:not(.fd-dnd-placeholder) .fdp-table__cell--selection[dir=rtl]{transform:translate(100%)}.fdp-table.fd-table--tree .fd-table__body .fd-table__row .fd-replace-indicator{top:auto}.fdp-table.fd-table--tree .fd-table__body .fd-table__row .fd-table__text{white-space:nowrap}.fdp-table.fd-table--tree.fd-table--condensed .fd-table__row.fd-dnd-on-drag.fd-dnd-placeholder,.fdp-table.fd-table--tree.fd-table--compact .fd-table__row.fd-dnd-on-drag.fd-dnd-placeholder{padding-left:2rem}[dir=rtl] .fdp-table.fd-table--tree.fd-table--condensed .fd-table__row.fd-dnd-on-drag.fd-dnd-placeholder,.fdp-table.fd-table--tree.fd-table--condensed .fd-table__row.fd-dnd-on-drag.fd-dnd-placeholder[dir=rtl],[dir=rtl] .fdp-table.fd-table--tree.fd-table--compact .fd-table__row.fd-dnd-on-drag.fd-dnd-placeholder,.fdp-table.fd-table--tree.fd-table--compact .fd-table__row.fd-dnd-on-drag.fd-dnd-placeholder[dir=rtl]{padding-left:.5rem}.fdp-table.fd-table--condensed .fd-table__body .fd-table__cell--checkbox .fd-checkbox__label{position:relative;margin-top:0}.fdp-table.fdp-table--no-outer-border .fdp-table__header,.fdp-table.fdp-table--no-outer-border .fdp-table__body,.fdp-table.fdp-table--no-outer-border .fdp-table__body-hs,[dir=rtl] .fdp-table.fdp-table--no-outer-border .fdp-table__header,.fdp-table.fdp-table--no-outer-border .fdp-table__header[dir=rtl],[dir=rtl] .fdp-table.fdp-table--no-outer-border .fdp-table__body,.fdp-table.fdp-table--no-outer-border .fdp-table__body[dir=rtl],[dir=rtl] .fdp-table.fdp-table--no-outer-border .fdp-table__body-hs,.fdp-table.fdp-table--no-outer-border .fdp-table__body-hs[dir=rtl]{border-left:none;border-right:none}[dir=rtl] .fdp-table.fdp-table--no-outer-border .fdp-table__header .fd-table__cell:first-child,.fdp-table.fdp-table--no-outer-border .fdp-table__header[dir=rtl] .fd-table__cell:first-child,[dir=rtl] .fdp-table.fdp-table--no-outer-border .fdp-table__body .fd-table__cell:first-child,.fdp-table.fdp-table--no-outer-border .fdp-table__body[dir=rtl] .fd-table__cell:first-child,[dir=rtl] .fdp-table.fdp-table--no-outer-border .fdp-table__body-hs .fd-table__cell:first-child,.fdp-table.fdp-table--no-outer-border .fdp-table__body-hs[dir=rtl] .fd-table__cell:first-child{border-right:none}.fdp-table.fdp-table--no-outer-border .fdp-table__header .fd-table__cell{border-top:none}.fdp-table.fdp-table--no-outer-border .fdp-table__body{border-bottom:none}.fdp-table__container{position:relative;overflow:hidden;outline:none}.fdp-table__header{z-index:2}.fdp-table__header .fd-table__cell,.fdp-table__header .fd-table__cell--mock{border-top:.0625rem solid #e4e4e4;border-top:var(--sapList_BorderWidth, .0625rem) solid var(--sapList_BorderColor, #e4e4e4);border-bottom:.0625rem solid #e4e4e4;border-bottom:var(--sapList_BorderWidth, .0625rem) solid var(--sapList_BorderColor, #e4e4e4)}.fdp-table__header .fd-table__cell{margin-top:0;max-height:100%;top:0}.fdp-table__header .fd-table__cell--fixed{position:sticky}.fdp-table__header .fd-table__cell .fd-table__popover--custom{display:none}.fdp-table__header .fd-table__cell .fdp-table__navigation-indicator{opacity:0;visibility:hidden}.fdp-table__header .fd-table__cell--truncate-txt{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:inline-block;vertical-align:text-bottom;max-width:100%}.fdp-table__header th.fd-table__cell{border-block-start:none}.fdp-table__body-hs{box-sizing:border-box;border-left:.0625rem solid #e4e4e4;border-left:var(--sapList_BorderWidth, .0625rem) solid var(--sapList_BorderColor, #e4e4e4);background:var(--fdScrollbar_Track_Color, #ffffff);padding-right:var(--fdScrollbar_Dimension)}[dir=rtl] .fdp-table__body-hs,.fdp-table__body-hs[dir=rtl]{padding-right:0;padding-left:var(--fdScrollbar_Dimension);border-left:none;border-right:.0625rem solid #e4e4e4;border-right:var(--sapList_BorderWidth, .0625rem) solid var(--sapList_BorderColor, #e4e4e4)}.fdp-table__body-hs-wrap{width:100%;position:relative}.fdp-table__body-hs-spacer{position:absolute;height:1px;visibility:hidden}.fdp-table__empty-table-message{box-sizing:border-box;padding:1rem;text-align:center;display:flex;align-items:center;justify-content:center;align-content:center;width:100%}.fdp-table__empty .fd-table__cell{width:100%}.fdp-table__empty .fd-table__body{border-left:none}[dir=rtl] .fdp-table__empty .fd-table__body,.fdp-table__empty .fd-table__body[dir=rtl]{border-left:.0625rem solid #e4e4e4;border-left:var(--sapList_BorderWidth, .0625rem) solid var(--sapList_BorderColor, #e4e4e4);border-right:none}.fdp-table__empty.fixed-height{background-color:#fff;background-color:var(--sapList_Background, #fff)}.fdp-table .fd-table__cell{z-index:0}.fdp-table .fd-table__cell--group{min-width:100%;border-left:none}.fdp-table .fd-table__cell--group:before{content:\"\";display:block;position:absolute;top:-.0625rem;left:0;right:0;border-top:.0625rem solid #e4e4e4;border-top:var(--sapList_BorderWidth, .0625rem) solid var(--sapList_BorderColor, #e4e4e4)}.fdp-table .fd-table__cell--status-indicator{border-left:none;border-right:.0625rem solid #e4e4e4;border-right:var(--sapList_BorderWidth, .0625rem) solid var(--sapList_BorderColor, #e4e4e4);min-width:.375rem}[dir=rtl] .fdp-table .fd-table__cell--status-indicator,.fdp-table .fd-table__cell--status-indicator[dir=rtl]{border-right:none}.fdp-table .fd-table__cell--mock.fd-table__cell--mock-borderless{border-left:none!important;border-right:none!important;border-bottom:none!important;border-top:none!important}.fdp-table .fd-table__cell .fdp-table__navigation-indicator{margin:auto}[dir=rtl] .fdp-table .fd-table__cell:nth-last-child(2):not(.fdp-table__cell--group),.fdp-table .fd-table__cell[dir=rtl]:nth-last-child(2):not(.fdp-table__cell--group){border-left:.0625rem solid #e4e4e4;border-left:var(--sapList_BorderWidth, .0625rem) solid var(--sapList_BorderColor, #e4e4e4)}.fdp-table .fd-dnd-item{position:relative}.fdp-table .fd-table__cell--fixed{position:sticky;display:table-cell;z-index:1}.fdp-table .fd-table__cell--checkbox fd-checkbox{display:flex;height:100%}.fdp-table .fd-table__cell--checkbox fd-checkbox .fd-checkbox__label{align-self:center;margin:0}.fdp-table .fd-table__expand-wrapper{display:flex;align-items:center}.fdp-table__column-resizer{bottom:calc(var(--fdScrollbar_Dimension) + var(--sapList_BorderWidth, .0625rem))}.fdp-table__cell--navigation{width:4rem;min-width:4rem;max-width:4rem}.fdp-table__body-table.fd-table--pop-in .fd-table__row--secondary .fd-table__cell{border-bottom:var(--sapList_BorderWidth) solid var(--sapList_BorderColor)}.fdp-table__body-table.fd-table--pop-in .fd-table__row--secondary:hover{background-color:var(--sapList_Hover_Background)}.fdp-table__body-table.fd-table--pop-in .fdp-table__header .fd-table__cell .fd-table__text{margin-bottom:0}.fdp-table__body--virtual-scroll{position:relative;will-change:scroll-position}.fdp-table__body--virtual-scroll .fd-table__body{position:static;will-change:transform}.fdp-table.fd-table--no-vertical-borders .fd-table__cell--status-indicator{border-right-color:transparent}[dir=rtl] .fdp-table.fd-table--no-vertical-borders .fd-table__cell--status-indicator,.fdp-table.fd-table--no-vertical-borders .fd-table__cell--status-indicator[dir=rtl]{border-left-color:transparent}.fdp-table__growing-button{height:auto}.fdp-table__growing-button__title{font-weight:700;margin:.813rem 0}.fdp-table__growing-button__subtitle{padding-bottom:.875rem}.fdp-table__growing-button-content{display:flex;justify-content:center;flex-direction:column}.fdp-table__growing-button-content--byline>*{display:flex;flex-direction:column;width:100%}.fdp-table__growing-button-total{border-top:var(--fdList_Item_Action_Border)!important}.fdp-table__growing-button-total .fd-list__title{line-height:2.75rem}.fdp-table.fdp-table--outer-scroll .fd-toolbar{position:sticky;z-index:10;top:0}.fdp-table.fdp-table--outer-scroll .fdp-table__body.fd-scrollbar,.fdp-table.fdp-table--outer-scroll .fdp-table__container{overflow:visible}.fdp-table.fdp-table--outer-scroll thead{position:sticky;top:0}.fdp-table.fdp-table--outer-scroll:has(.fd-toolbar) thead{position:sticky;top:2.75rem}.fdp-table.fdp-table--outer-scroll:has(.fd-toolbar):has(.is-compact) thead{position:sticky;top:2rem}.fdp-table.fdp-table--outer-scroll:has(.fd-toolbar):has(.fd-toolbar--title) thead{position:sticky;top:2.75rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"1\"]{padding-left:2.75rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"1\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"1\"][dir=rtl]{padding-left:.5rem;padding-right:2.75rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"2\"]{padding-left:4.25rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"2\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"2\"][dir=rtl]{padding-left:.5rem;padding-right:4.25rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"3\"]{padding-left:5rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"3\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"3\"][dir=rtl]{padding-left:.5rem;padding-right:5rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"4\"]{padding-left:5.5rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"4\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"4\"][dir=rtl]{padding-left:.5rem;padding-right:5.5rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"5\"]{padding-left:6rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"5\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"5\"][dir=rtl]{padding-left:.5rem;padding-right:6rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"6\"]{padding-left:6.5rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"6\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"6\"][dir=rtl]{padding-left:.5rem;padding-right:6.5rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"7\"]{padding-left:7rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"7\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"7\"][dir=rtl]{padding-left:.5rem;padding-right:7rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"8\"]{padding-left:7.5rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"8\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"8\"][dir=rtl]{padding-left:.5rem;padding-right:7.5rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"9\"]{padding-left:8rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"9\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"9\"][dir=rtl]{padding-left:.5rem;padding-right:8rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"10\"]{padding-left:8.5rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"10\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"10\"][dir=rtl]{padding-left:.5rem;padding-right:8.5rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"11\"]{padding-left:9rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"11\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"11\"][dir=rtl]{padding-left:.5rem;padding-right:9rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"12\"]{padding-left:9.5rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"12\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"12\"][dir=rtl]{padding-left:.5rem;padding-right:9.5rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"13\"]{padding-left:10rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"13\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"13\"][dir=rtl]{padding-left:.5rem;padding-right:10rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"14\"]{padding-left:10.5rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"14\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"14\"][dir=rtl]{padding-left:.5rem;padding-right:10.5rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"15\"]{padding-left:11rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"15\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"15\"][dir=rtl]{padding-left:.5rem;padding-right:11rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"16\"]{padding-left:11.5rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"16\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"16\"][dir=rtl]{padding-left:.5rem;padding-right:11.5rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"17\"]{padding-left:12rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"17\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"17\"][dir=rtl]{padding-left:.5rem;padding-right:12rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"18\"]{padding-left:12.5rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"18\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"18\"][dir=rtl]{padding-left:.5rem;padding-right:12.5rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"19\"]{padding-left:13rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"19\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"19\"][dir=rtl]{padding-left:.5rem;padding-right:13rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"20\"]{padding-left:13.5rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"20\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"20\"][dir=rtl]{padding-left:.5rem;padding-right:13.5rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand,.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand{cursor:pointer;white-space:nowrap}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"]{padding-left:0}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"][dir=rtl]{padding-left:.5rem;padding-right:0}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"]{padding-left:1.5rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"][dir=rtl]{padding-left:.5rem;padding-right:1.5rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"]{padding-left:2.25rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"][dir=rtl]{padding-left:.5rem;padding-right:2.25rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"]{padding-left:2.75rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"][dir=rtl]{padding-left:.5rem;padding-right:2.75rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"]{padding-left:3.25rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"][dir=rtl]{padding-left:.5rem;padding-right:3.25rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"]{padding-left:3.75rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"][dir=rtl]{padding-left:.5rem;padding-right:3.75rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"]{padding-left:4.25rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"][dir=rtl]{padding-left:.5rem;padding-right:4.25rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"]{padding-left:4.75rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"][dir=rtl]{padding-left:.5rem;padding-right:4.75rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"]{padding-left:5.25rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"][dir=rtl]{padding-left:.5rem;padding-right:5.25rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"]{padding-left:5.75rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"][dir=rtl]{padding-left:.5rem;padding-right:5.75rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"]{padding-left:6.25rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"][dir=rtl]{padding-left:.5rem;padding-right:6.25rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"]{padding-left:6.75rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"][dir=rtl]{padding-left:.5rem;padding-right:6.75rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"]{padding-left:7.25rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"][dir=rtl]{padding-left:.5rem;padding-right:7.25rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"]{padding-left:7.75rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"][dir=rtl]{padding-left:.5rem;padding-right:7.75rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"]{padding-left:8.25rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"][dir=rtl]{padding-left:.5rem;padding-right:8.25rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"]{padding-left:8.75rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"][dir=rtl]{padding-left:.5rem;padding-right:8.75rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"]{padding-left:9.25rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"][dir=rtl]{padding-left:.5rem;padding-right:9.25rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"]{padding-left:9.75rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"][dir=rtl]{padding-left:.5rem;padding-right:9.75rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"]{padding-left:10.25rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"][dir=rtl]{padding-left:.5rem;padding-right:10.25rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"]{padding-left:10.75rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"][dir=rtl]{padding-left:.5rem;padding-right:10.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"1\"]{padding-left:2rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"1\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"1\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"1\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"1\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"1\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"1\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"1\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"1\"][dir=rtl]{padding-left:.5rem;padding-right:2rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"2\"]{padding-left:3.5rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"2\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"2\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"2\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"2\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"2\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"2\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"2\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"2\"][dir=rtl]{padding-left:.5rem;padding-right:3.5rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"3\"]{padding-left:4.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"3\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"3\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"3\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"3\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"3\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"3\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"3\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"3\"][dir=rtl]{padding-left:.5rem;padding-right:4.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"4\"]{padding-left:4.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"4\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"4\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"4\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"4\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"4\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"4\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"4\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"4\"][dir=rtl]{padding-left:.5rem;padding-right:4.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"5\"]{padding-left:5.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"5\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"5\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"5\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"5\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"5\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"5\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"5\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"5\"][dir=rtl]{padding-left:.5rem;padding-right:5.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"6\"]{padding-left:5.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"6\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"6\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"6\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"6\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"6\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"6\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"6\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"6\"][dir=rtl]{padding-left:.5rem;padding-right:5.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"7\"]{padding-left:6.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"7\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"7\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"7\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"7\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"7\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"7\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"7\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"7\"][dir=rtl]{padding-left:.5rem;padding-right:6.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"8\"]{padding-left:6.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"8\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"8\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"8\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"8\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"8\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"8\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"8\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"8\"][dir=rtl]{padding-left:.5rem;padding-right:6.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"9\"]{padding-left:7.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"9\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"9\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"9\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"9\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"9\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"9\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"9\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"9\"][dir=rtl]{padding-left:.5rem;padding-right:7.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"10\"]{padding-left:7.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"10\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"10\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"10\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"10\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"10\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"10\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"10\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"10\"][dir=rtl]{padding-left:.5rem;padding-right:7.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"11\"]{padding-left:8.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"11\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"11\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"11\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"11\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"11\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"11\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"11\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"11\"][dir=rtl]{padding-left:.5rem;padding-right:8.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"12\"]{padding-left:8.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"12\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"12\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"12\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"12\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"12\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"12\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"12\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"12\"][dir=rtl]{padding-left:.5rem;padding-right:8.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"13\"]{padding-left:9.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"13\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"13\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"13\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"13\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"13\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"13\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"13\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"13\"][dir=rtl]{padding-left:.5rem;padding-right:9.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"14\"]{padding-left:9.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"14\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"14\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"14\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"14\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"14\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"14\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"14\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"14\"][dir=rtl]{padding-left:.5rem;padding-right:9.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"15\"]{padding-left:10.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"15\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"15\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"15\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"15\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"15\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"15\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"15\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"15\"][dir=rtl]{padding-left:.5rem;padding-right:10.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"16\"]{padding-left:10.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"16\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"16\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"16\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"16\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"16\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"16\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"16\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"16\"][dir=rtl]{padding-left:.5rem;padding-right:10.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"17\"]{padding-left:11.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"17\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"17\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"17\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"17\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"17\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"17\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"17\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"17\"][dir=rtl]{padding-left:.5rem;padding-right:11.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"18\"]{padding-left:11.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"18\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"18\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"18\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"18\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"18\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"18\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"18\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"18\"][dir=rtl]{padding-left:.5rem;padding-right:11.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"19\"]{padding-left:12.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"19\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"19\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"19\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"19\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"19\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"19\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"19\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"19\"][dir=rtl]{padding-left:.5rem;padding-right:12.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"20\"]{padding-left:12.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"20\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"20\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"20\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"20\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"20\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"20\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"20\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"20\"][dir=rtl]{padding-left:.5rem;padding-right:12.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"]{padding-left:0}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"][dir=rtl]{padding-left:.5rem;padding-right:0}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"]{padding-left:1.5rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"][dir=rtl]{padding-left:.5rem;padding-right:1.5rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"]{padding-left:2.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"][dir=rtl]{padding-left:.5rem;padding-right:2.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"]{padding-left:2.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"][dir=rtl]{padding-left:.5rem;padding-right:2.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"]{padding-left:3.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"][dir=rtl]{padding-left:.5rem;padding-right:3.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"]{padding-left:3.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"][dir=rtl]{padding-left:.5rem;padding-right:3.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"]{padding-left:4.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"][dir=rtl]{padding-left:.5rem;padding-right:4.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"]{padding-left:4.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"][dir=rtl]{padding-left:.5rem;padding-right:4.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"]{padding-left:5.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"][dir=rtl]{padding-left:.5rem;padding-right:5.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"]{padding-left:5.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"][dir=rtl]{padding-left:.5rem;padding-right:5.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"]{padding-left:6.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"][dir=rtl]{padding-left:.5rem;padding-right:6.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"]{padding-left:6.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"][dir=rtl]{padding-left:.5rem;padding-right:6.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"]{padding-left:7.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"][dir=rtl]{padding-left:.5rem;padding-right:7.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"]{padding-left:7.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"][dir=rtl]{padding-left:.5rem;padding-right:7.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"]{padding-left:8.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"][dir=rtl]{padding-left:.5rem;padding-right:8.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"]{padding-left:8.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"][dir=rtl]{padding-left:.5rem;padding-right:8.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"]{padding-left:9.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"][dir=rtl]{padding-left:.5rem;padding-right:9.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"]{padding-left:9.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"][dir=rtl]{padding-left:.5rem;padding-right:9.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"]{padding-left:10.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"][dir=rtl]{padding-left:.5rem;padding-right:10.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"]{padding-left:10.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"][dir=rtl]{padding-left:.5rem;padding-right:10.75rem}.fd-table__intersection-spy{position:relative}.fdp-table--no-outer-border.fd-table--no-vertical-borders .fd-table__cell.is-last-child,.fdp-table--no-outer-border.fd-table--no-vertical-borders .fd-table__cell:last-child{border-left-style:none}th.fd-table__cell .fd-table__inner{font-weight:700}.fd-tr-hovered{background-color:var(--sapList_Hover_Background)!important}.fdp-table__body--disable-scroll{overflow:hidden!important}.fd-toolbar__group{gap:.5rem;display:flex;align-items:center}\n/*! Bundled license information:\n\nfundamental-styles/dist/scrollbar.css:\n (*!\n * Fundamental Library Styles v0.40.1\n * Copyright (c) 2025 SAP SE or an SAP affiliate company.\n * Licensed under Apache License 2.0 (https://github.com/SAP/fundamental-styles/blob/main/LICENSE)\n *)\n*/\n"], dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: BusyIndicatorComponent, selector: "fd-busy-indicator", inputs: ["loading", "size", "block", "ariaLabel", "ariaValueText", "title", "label", "ariaLive"] }, { kind: "component", type: PlatformTableColumnResizerComponent, selector: "fdp-table-column-resizer" }, { kind: "directive", type: TableScrollableDirective, selector: "[fdpTableScrollable]", exportAs: ["tableScrollable"] }, { kind: "component", type: TableComponent$1, selector: "table[fd-table]", inputs: ["noBorderX", "noBorderY", "noOuterBorder", "topBorder", "popIn", "responsive", "keys", "allCellsFocusable"], exportAs: ["fd-table"] }, { kind: "directive", type: TableHeaderDirective, selector: "[fdTableHeader], [fd-table-header]", inputs: ["noBorderX", "noBorderY", "nonInteractive"] }, { kind: "component", type: TableHeaderRowComponent, selector: "[fdp-table-header-row]", inputs: ["rowId", "fixed", "isShownSelectionColumn", "checkedState", "selectionMode", "selectionColumnWidth", "freezeColumnsTo", "noHorizontalBorders", "noVerticalBorders", "noBorders", "freezeEndColumnsTo", "disableSelectionCheckbox"] }, { kind: "directive", type: TableBodyDirective, selector: "[fdTableBody], [fd-table-body]", inputs: ["noBorderX", "noBorderY"] }, { kind: "ngmodule", type: DragAndDropModule }, { kind: "directive", type: i3.DndItemDirective, selector: "[fdkDndItem], [fd-dnd-item]", inputs: ["fdkDndItem", "applyDragItemClass", "containerSelector", "stickInPlace", "draggable", "classWhenElementDragged"], outputs: ["moved", "released", "started"] }, { kind: "directive", type: i3.DndListDirective, selector: "[fdkDndList], [fd-dnd-list]", inputs: ["gridMode", "dropMode", "threshold", "items", "draggable", "dropPredicate", "dragoverPredicate"], outputs: ["dropPredicateCalculating", "itemsChange", "itemDropped", "dropCancelled"] }, { kind: "component", type: TableGroupRowComponent, selector: "[fdp-table-group-row]", inputs: ["rowId", "index", "height", "draggable", "row", "keyToColumnMap"], outputs: ["toggleGroupRow"] }, { kind: "component", type: TableRowComponent, selector: "[fdp-table-row]", inputs: ["rowId", "row", "index", "selectionMode", "selectableKey", "enableTristateMode", "fixed", "selectionColumnWidth", "freezeColumnsTo", "freezeEndColumnsTo"], outputs: ["keyboardDrag"] }, { kind: "component", type: TablePoppingRowComponent, selector: "[fdp-table-popping-row]", inputs: ["row", "checked", "selectionMode"], outputs: ["toggleGroupRow", "cellClicked"] }, { kind: "directive", type: TableRowDirective, selector: "[fdTableRow], [fd-table-row]", inputs: ["activable", "highlightActive", "hoverable", "focusable", "main", "secondary", "active"] }, { kind: "directive", type: TableCellDirective, selector: "[fdTableCell], [fd-table-cell]", inputs: ["noBorderX", "noBorderY", "activable", "focusable", "hoverable", "fitContent", "noPadding", "noData", "nonInteractive", "key"] }, { kind: "component", type: SkeletonComponent, selector: "fd-skeleton", inputs: ["animated", "type", "textLines", "width", "height"] }, { kind: "directive", type: IntersectionSpyDirective, selector: "[fdkIntersectionSpy]", inputs: ["fdkIntersectionSpy", "viewportOptions"], outputs: ["intersected"] }, { kind: "component", type: TableGrowingButtonComponent, selector: "fdp-table-growing-button", inputs: ["showItemsCount"] }, { kind: "directive", type: TableFooterDirective, selector: "[fdTableFooter], [fd-table-footer]" }, { kind: "component", type: TableFooterRowComponent, selector: "[fdp-table-footer-row]" }, { kind: "pipe", type: AsyncPipe, name: "async" }, { kind: "pipe", type: FdTranslatePipe, name: "fdTranslate" }, { kind: "pipe", type: RowClassesPipe, name: "rowClasses" }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
5389
5410
  }
5390
5411
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: TableComponent, decorators: [{
5391
5412
  type: Component,
@@ -5450,7 +5471,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImpor
5450
5471
  TableGrowingButtonComponent,
5451
5472
  TableFooterDirective,
5452
5473
  TableFooterRowComponent
5453
- ], template: "@if (tableToolbar) {\n <!-- Toolbar -->\n <ng-template\n [ngTemplateOutlet]=\"tableToolbar.contentTemplateRef\"\n [ngTemplateOutletContext]=\"_toolbarContext\"\n ></ng-template>\n}\n<fd-busy-indicator\n [loading]=\"(_tableService.tableLoading$ | async) === true && _dataSourceDirective._firstLoadingDone\"\n [block]=\"true\"\n>\n <!-- Table Container -->\n <div class=\"fdp-table__container\" #tableContainer>\n <ng-template [ngTemplateOutlet]=\"tableTemplate\"></ng-template>\n @if (enableDragResize) {\n <!-- Table column resizer for visually representing the resizing process -->\n <fdp-table-column-resizer class=\"fdp-table__column-resizer\"></fdp-table-column-resizer>\n }\n </div>\n @if (showGrowingButton) {\n <fdp-table-growing-button [showItemsCount]=\"showItemsCount\"></fdp-table-growing-button>\n }\n</fd-busy-indicator>\n<!-- Table Template -->\n<ng-template #tableTemplate>\n <div\n class=\"fdp-table__body fd-scrollbar\"\n [class.fdp-table__body--virtual-scroll]=\"!!_virtualScrollDirective?.virtualScroll\"\n [class.fdp-table__body--disable-scroll]=\"!!_dndTableDirective?.dragDropInProgress\"\n fdpTableScrollable\n #tableScrollable=\"tableScrollable\"\n [style.height]=\"bodyHeight\"\n [class.fixed-height]=\"!!bodyHeight\"\n [attr.role]=\"pageScrolling ? 'feed' : null\"\n [class.fd-table--fixed]=\"_freezableColumns.size || fixed\"\n >\n <table\n fd-table\n [attr.role]=\"isTreeTable ? 'treegrid' : 'grid'\"\n class=\"fdp-table__body-table\"\n [allCellsFocusable]=\"true\"\n [popIn]=\"_tableService.poppingColumns$().length > 0\"\n [class.fd-table--no-outer-border]=\"noOuterBorders\"\n [attr.aria-labelledby]=\"_ariaLabelledBy\"\n >\n <thead fd-table-header [nonInteractive]=\"nonInteractiveHeader\" class=\"fdp-table__header\">\n <tr\n fdp-table-header-row\n [noBorders]=\"noBorders\"\n [noHorizontalBorders]=\"noHorizontalBorders\"\n [noVerticalBorders]=\"noVerticalBorders\"\n [rowId]=\"id\"\n [fixed]=\"fixed\"\n [isShownSelectionColumn]=\"isSelectionColumnShown\"\n [checkedState]=\"_checkedState\"\n [selectionMode]=\"_selectionMode\"\n [selectionColumnWidth]=\"_selectionColumnWidth\"\n [freezeColumnsTo]=\"freezeColumnsTo\"\n [freezeEndColumnsTo]=\"freezeEndColumnsTo\"\n (keydown.enter)=\"_onRowClick(null, $event)\"\n (keydown.space)=\"_onRowClick(null, $event)\"\n (click)=\"_onRowClick(null, $event)\"\n [disableSelectionCheckbox]=\"_dataSourceTableRows.length === 0\"\n ></tr>\n </thead>\n @if (!!_tableRowsVisible.length && _tableService.visibleColumnsLength() > 0) {\n <tbody\n fd-table-body\n fdkDndList\n #tableBody\n [dragoverPredicate]=\"_dndTableDirective?.dragoverPredicate\"\n [dropPredicate]=\"_dndTableDirective?.dropPredicate\"\n [noBorderX]=\"noBorderX || noBorders\"\n [noBorderY]=\"noBorderY || noBorders\"\n [tabIndex]=\"pageScrolling ? 0 : -1\"\n [items]=\"_dndTableRowsPlaceholder\"\n [draggable]=\"isDraggable\"\n [dropMode]=\"_dndTableDirective?.dropMode ?? 'group'\"\n (itemDropped)=\"_dndTableDirective?.dragDropItemDrop($event)\"\n (dropPredicateCalculating)=\"_calculatingLoading($event)\"\n (dropCancelled)=\"_dndTableDirective?.dropCancelled()\"\n >\n @for (rowIndex of _tableCurrentlyRenderedRowsPlaceholder; track _rowTrackBy($index, rowIndex)) {\n @if (_tableRowsVisible[rowIndex]; as row) {\n @switch (row.type) {\n @case ('group') {\n <tr\n fdp-table-group-row\n [index]=\"rowIndex\"\n [height]=\"rowHeight\"\n [draggable]=\"isDraggable\"\n [row]=\"row\"\n [rowId]=\"id\"\n [keyToColumnMap]=\"_keyToColumnMap\"\n [tableColumnsLength]=\"_tableColumnsLength\"\n (toggleGroupRow)=\"_toggleGroupRow($event)\"\n (click)=\"_emitRowActivate(row, $event.ctrlKey || $event.metaKey)\"\n ></tr>\n }\n @default {\n <tr\n [fdkDndItem]=\"row\"\n [applyDragItemClass]=\"isDraggable\"\n [class]=\"row | rowClasses: rowsClass\"\n [tabindex]=\"rowsActivable || !!row.navigatable ? 0 : -1\"\n [focusable]=\"rowsActivable || !!row.navigatable\"\n [hoverable]=\"rowsActivable || isSelectionColumnShown || !!row.navigatable\"\n [activable]=\"rowsActivable || !!row.navigatable\"\n [active]=\"rowIndex === _navigatedRowIndex\"\n [highlightActive]=\"highlightNavigatedRow\"\n [style.height.px]=\"rowHeight\"\n [attr.aria-level]=\"isTreeTable ? row.level + 1 : null\"\n (keydown.enter)=\"_onRowClick(row, $event)\"\n (keydown.space)=\"_onRowClick(row, $event)\"\n (click)=\"_onRowClick(row, $event)\"\n (started)=\"_dndTableDirective?.dragDropStart()\"\n [main]=\"true\"\n [class.fd-table__row--draggable]=\"isDraggable\"\n fdp-table-row\n [attr.aria-rowindex]=\"rowIndex + 1\"\n [rowId]=\"id\"\n [class.fd-tr-hovered]=\"!row.checked && hoveredRowIndex$() === rowIndex\"\n [index]=\"rowIndex\"\n [row]=\"row\"\n [selectionMode]=\"_selectionMode\"\n [selectableKey]=\"selectableKey\"\n [enableTristateMode]=\"enableTristateMode\"\n [fixed]=\"fixed\"\n [selectionColumnWidth]=\"_selectionColumnWidth\"\n [freezeColumnsTo]=\"freezeColumnsTo\"\n [freezeEndColumnsTo]=\"freezeEndColumnsTo\"\n ></tr>\n }\n }\n @if (row.type === 'item' && _tableService.poppingColumns$().length > 0) {\n <tr\n (keydown.enter)=\"_onRowClick(row, $event)\"\n (keydown.space)=\"_onRowClick(row, $event)\"\n (click)=\"_onRowClick(row, $event)\"\n fdp-table-popping-row\n [secondary]=\"true\"\n [style.cursor]=\"rowsActivable || !!row.navigatable ? 'pointer' : 'auto'\"\n [style.height.px]=\"secondaryRowHeight\"\n [selectionMode]=\"selectionMode\"\n [row]=\"row\"\n [checked]=\"row.checked\"\n [class]=\"row | rowClasses: rowsClass\"\n (toggleGroupRow)=\"_toggleGroupRow($event)\"\n (cellClicked)=\"_onCellClick($event.index, $event.row)\"\n (mouseenter)=\"handleMouseEnter(rowIndex)\"\n (mouseleave)=\"handleMouseLeave()\"\n ></tr>\n }\n @if (row.children.length === 0 && (row.childItemsLoading$ | async)) {\n @for (_ of loadingRowRange; track $index) {\n <tr fd-table-row>\n @for (_ of loadingColumnsRange; track $index) {\n <td fd-table-cell>\n <fd-skeleton\n [style.margin]=\"'auto 0'\"\n type=\"text\"\n textLines=\"1\"\n width=\"60%\"\n ></fd-skeleton>\n </td>\n }\n </tr>\n }\n }\n <!-- Last rendered child row. -->\n @if (row.parent?.lastChild?.index === row.index) {\n <tr\n aria-hidden=\"true\"\n class=\"fd-table__intersection-spy\"\n [fdkIntersectionSpy]=\"pageScrollingThreshold\"\n (intersected)=\"$event && _tableRowService.loadChildRows(row.parent!)\"\n [style.top.px]=\"pageScrollingThreshold * -1\"\n ></tr>\n }\n }\n }\n @if (pageScrolling) {\n <tr\n aria-hidden=\"true\"\n class=\"fd-table__intersection-spy\"\n [fdkIntersectionSpy]=\"pageScrollingThreshold\"\n (intersected)=\"$event && _onSpyIntersect($event)\"\n [style.top.px]=\"pageScrollingThreshold * -1\"\n ></tr>\n }\n </tbody>\n } @else {\n @if (!_dataSourceDirective._firstLoadingDone) {\n <tbody fd-table-body>\n @for (_ of loadingRowRange; track $index) {\n <tr fd-table-row>\n @for (_ of loadingColumnsRange; track $index) {\n <td fd-table-cell>\n <fd-skeleton\n [style.margin]=\"'auto 0'\"\n type=\"text\"\n textLines=\"1\"\n width=\"60%\"\n ></fd-skeleton>\n </td>\n }\n </tr>\n }\n </tbody>\n } @else {\n <tbody fd-table-body class=\"fdp-table__empty\">\n <tr fd-table-row>\n <td fd-table-cell class=\"fd-table__cell--no-data\" [attr.colspan]=\"_tableColumnsLength\">\n <div class=\"fdp-table__empty-table-message\">\n <ng-content select=\"fdp-table-no-data-wrapper\"></ng-content>\n @if (!_noDataWrapper && _tableService.visibleColumnsLength() > 0) {\n <div>\n {{\n emptyTableMessage ||\n ('platformTable.defaultEmptyMessage' | fdTranslate)()\n }}\n </div>\n } @else if (_tableService.visibleColumnsLength() === 0) {\n <div>\n {{\n noVisibleColumnsMessage ||\n ('platformTable.noVisibleColumnsMessage' | fdTranslate)()\n }}\n </div>\n }\n </div>\n </td>\n </tr>\n </tbody>\n }\n }\n @if (pageScrolling) {\n <tbody class=\"fd-table__body__focus-mock\"></tbody>\n }\n @if (_virtualScrollDirective?.virtualScroll) {\n <!-- the tbody element below is so the scrollbar renders correctly -->\n <tbody>\n <tr>\n <td colspan=\"100%\" [style.height.px]=\"_virtualScrollDirective!.virtualScrollTotalHeight\"></td>\n </tr>\n </tbody>\n }\n @if (showTableFooter) {\n <tfoot fd-table-footer>\n <tr fdp-table-footer-row></tr>\n </tfoot>\n }\n </table>\n </div>\n</ng-template>\n<!-- Empty Table Message -->\n", styles: [".fd-scrollbar{border:0;-webkit-box-sizing:border-box;box-sizing:border-box;color:var(--sapTextColor);font-family:var(--sapFontFamily);font-size:var(--sapFontSize);font-weight:400;forced-color-adjust:none;line-height:normal;margin-block:0;margin-inline:0;overflow:auto;padding-block:0;padding-inline:0;scrollbar-color:var(--fdScrollbar_Thumb_Color) var(--fdScrollbar_Track_Color)}.fd-scrollbar:after,.fd-scrollbar:before{-webkit-box-sizing:inherit;box-sizing:inherit;font-size:inherit}.fd-scrollbar.is-focus,.fd-scrollbar:focus{outline:none;z-index:5}.fd-scrollbar::-webkit-scrollbar{height:var(--fdScrollbar_Dimension);width:var(--fdScrollbar_Dimension)}.fd-scrollbar::-webkit-scrollbar-corner,.fd-scrollbar::-webkit-scrollbar-track{background-color:var(--fdScrollbar_Track_Color)}.fd-scrollbar::-webkit-scrollbar-thumb{background-color:transparent;border:var(--fdScrollbar_Thumb_Offset) solid transparent;border-radius:calc(var(--fdScrollbar_Thumb_Border_Radius) - var(--fdScrollbar_Thumb_Offset));-webkit-box-shadow:inset 0 0 0 var(--fdScrollbar_Dimension) var(--fdScrollbar_Thumb_Color);box-shadow:inset 0 0 0 var(--fdScrollbar_Dimension) var(--fdScrollbar_Thumb_Color)}.fd-scrollbar::-webkit-scrollbar-thumb:active,.fd-scrollbar::-webkit-scrollbar-thumb:hover{-webkit-box-shadow:inset 0 0 0 var(--fdScrollbar_Dimension) var(--fdScrollbar_Thumb_Hover_Color);box-shadow:inset 0 0 0 var(--fdScrollbar_Dimension) var(--fdScrollbar_Thumb_Hover_Color)}.fd-scrollbar--container::-webkit-scrollbar-corner,.fd-scrollbar--container::-webkit-scrollbar-track{background-color:var(--fdScrollbar_Track_Color);border-radius:0 var(--fdScrollbar_Border_Radius) var(--fdScrollbar_Border_Radius) 0}.fd-scrollbar--container[dir=rtl]::-webkit-scrollbar-corner,.fd-scrollbar--container[dir=rtl]::-webkit-scrollbar-track,[dir=rtl] .fd-scrollbar--container::-webkit-scrollbar-corner,[dir=rtl] .fd-scrollbar--container::-webkit-scrollbar-track{border-radius:var(--fdScrollbar_Border_Radius) 0 0 var(--fdScrollbar_Border_Radius)}.cdk-visually-hidden{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;white-space:nowrap;outline:0;-webkit-appearance:none;-moz-appearance:none;left:0}[dir=rtl] .cdk-visually-hidden{left:auto;right:0}.fd-table__cell--focusable[aria-selected=true]:after{border-color:var(--sapContent_FocusColor)!important}fdk-dynamic-portal .fdp-table-toolbar-actions{gap:.5rem;display:flex;flex-direction:column}.fdp-table{display:block}.fdp-table .fd-table__row:focus-visible{outline:none}.fdp-table .fdp-table-toolbar-actions{gap:.5rem;display:flex;align-items:center}.fdp-table .fdp-table__applied-filters-toolbar label{flex-shrink:1}.fdp-table .fdp-table__body-table,.fdp-table .fdp-table__header-table,.fdp-table .fdp-table__body-hs-table{table-layout:auto;width:100%;border-collapse:separate;border-spacing:0}.fdp-table .fd-table__body__focus-mock{position:absolute;top:var(--fdTable_Header_Cell_Height);left:0;right:0;bottom:0;pointer-events:none;z-index:5}.fdp-table .fd-table__body:focus+.fd-table__body__focus-mock{outline-offset:-.1875rem;outline-width:.0625rem;outline-width:var(--sapContent_FocusWidth, .0625rem);outline-color:#000;outline-color:var(--sapContent_FocusColor, #000);outline-style:dotted;outline-style:var(--sapContent_FocusStyle, dotted)}.fdp-table.fd-table--tree .fd-table__body .fd-table__row,.fdp-table.fd-table--tree .fd-table__body .fd-table__row .fd-replace-indicator,.fdp-table.fd-table--group .fd-table__body .fd-table__row,.fdp-table.fd-table--group .fd-table__body .fd-table__row .fd-replace-indicator{height:2.75rem}.fdp-table.fd-table--tree.fd-table--compact .fd-table__body .fd-table__row,.fdp-table.fd-table--tree.fd-table--compact .fd-table__body .fd-table__row .fd-replace-indicator,.fdp-table.fd-table--group.fd-table--compact .fd-table__body .fd-table__row,.fdp-table.fd-table--group.fd-table--compact .fd-table__body .fd-table__row .fd-replace-indicator{height:2rem}.fdp-table.fd-table--tree.fd-table--condensed .fd-table__body .fd-table__row,.fdp-table.fd-table--tree.fd-table--condensed .fd-table__body .fd-table__row .fd-replace-indicator,.fdp-table.fd-table--group.fd-table--condensed .fd-table__body .fd-table__row,.fdp-table.fd-table--group.fd-table--condensed .fd-table__body .fd-table__row .fd-replace-indicator{height:1.563rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__row{cursor:auto}.fdp-table.fd-table--tree .fd-table__body .fd-table__row--draggable:hover{cursor:grab}.fdp-table.fd-table--tree .fd-table__body .fd-table__row--draggable:active{cursor:grabbing}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__row--draggable.fd-dnd-on-drag.fd-dnd-placeholder,.fdp-table.fd-table--tree .fd-table__body .fd-table__row--draggable.fd-dnd-on-drag.fd-dnd-placeholder[dir=rtl]{padding-left:.5rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__row--draggable.fd-dnd-on-drag:not(.fd-dnd-placeholder) .fdp-table__cell--selection{top:0;transform:translate(-100%)}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__row--draggable.fd-dnd-on-drag:not(.fd-dnd-placeholder) .fdp-table__cell--selection,.fdp-table.fd-table--tree .fd-table__body .fd-table__row--draggable.fd-dnd-on-drag:not(.fd-dnd-placeholder) .fdp-table__cell--selection[dir=rtl]{transform:translate(100%)}.fdp-table.fd-table--tree .fd-table__body .fd-table__row .fd-replace-indicator{top:auto}.fdp-table.fd-table--tree .fd-table__body .fd-table__row .fd-table__text{white-space:nowrap}.fdp-table.fd-table--tree.fd-table--condensed .fd-table__row.fd-dnd-on-drag.fd-dnd-placeholder,.fdp-table.fd-table--tree.fd-table--compact .fd-table__row.fd-dnd-on-drag.fd-dnd-placeholder{padding-left:2rem}[dir=rtl] .fdp-table.fd-table--tree.fd-table--condensed .fd-table__row.fd-dnd-on-drag.fd-dnd-placeholder,.fdp-table.fd-table--tree.fd-table--condensed .fd-table__row.fd-dnd-on-drag.fd-dnd-placeholder[dir=rtl],[dir=rtl] .fdp-table.fd-table--tree.fd-table--compact .fd-table__row.fd-dnd-on-drag.fd-dnd-placeholder,.fdp-table.fd-table--tree.fd-table--compact .fd-table__row.fd-dnd-on-drag.fd-dnd-placeholder[dir=rtl]{padding-left:.5rem}.fdp-table.fd-table--condensed .fd-table__body .fd-table__cell--checkbox .fd-checkbox__label{position:relative;margin-top:0}.fdp-table.fdp-table--no-outer-border .fdp-table__header,.fdp-table.fdp-table--no-outer-border .fdp-table__body,.fdp-table.fdp-table--no-outer-border .fdp-table__body-hs,[dir=rtl] .fdp-table.fdp-table--no-outer-border .fdp-table__header,.fdp-table.fdp-table--no-outer-border .fdp-table__header[dir=rtl],[dir=rtl] .fdp-table.fdp-table--no-outer-border .fdp-table__body,.fdp-table.fdp-table--no-outer-border .fdp-table__body[dir=rtl],[dir=rtl] .fdp-table.fdp-table--no-outer-border .fdp-table__body-hs,.fdp-table.fdp-table--no-outer-border .fdp-table__body-hs[dir=rtl]{border-left:none;border-right:none}[dir=rtl] .fdp-table.fdp-table--no-outer-border .fdp-table__header .fd-table__cell:first-child,.fdp-table.fdp-table--no-outer-border .fdp-table__header[dir=rtl] .fd-table__cell:first-child,[dir=rtl] .fdp-table.fdp-table--no-outer-border .fdp-table__body .fd-table__cell:first-child,.fdp-table.fdp-table--no-outer-border .fdp-table__body[dir=rtl] .fd-table__cell:first-child,[dir=rtl] .fdp-table.fdp-table--no-outer-border .fdp-table__body-hs .fd-table__cell:first-child,.fdp-table.fdp-table--no-outer-border .fdp-table__body-hs[dir=rtl] .fd-table__cell:first-child{border-right:none}.fdp-table.fdp-table--no-outer-border .fdp-table__header .fd-table__cell{border-top:none}.fdp-table.fdp-table--no-outer-border .fdp-table__body{border-bottom:none}.fdp-table__container{position:relative;overflow:hidden;outline:none}.fdp-table__header{z-index:2}.fdp-table__header .fd-table__cell,.fdp-table__header .fd-table__cell--mock{border-top:.0625rem solid #e4e4e4;border-top:var(--sapList_BorderWidth, .0625rem) solid var(--sapList_BorderColor, #e4e4e4);border-bottom:.0625rem solid #e4e4e4;border-bottom:var(--sapList_BorderWidth, .0625rem) solid var(--sapList_BorderColor, #e4e4e4)}.fdp-table__header .fd-table__cell{margin-top:0;max-height:100%;top:0}.fdp-table__header .fd-table__cell--fixed{position:sticky}.fdp-table__header .fd-table__cell .fd-table__popover--custom{display:none}.fdp-table__header .fd-table__cell .fdp-table__navigation-indicator{opacity:0;visibility:hidden}.fdp-table__header .fd-table__cell--truncate-txt{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:inline-block;vertical-align:text-bottom;max-width:100%}.fdp-table__header th.fd-table__cell{border-block-start:none}.fdp-table__body-hs{box-sizing:border-box;border-left:.0625rem solid #e4e4e4;border-left:var(--sapList_BorderWidth, .0625rem) solid var(--sapList_BorderColor, #e4e4e4);background:var(--fdScrollbar_Track_Color, #ffffff);padding-right:var(--fdScrollbar_Dimension)}[dir=rtl] .fdp-table__body-hs,.fdp-table__body-hs[dir=rtl]{padding-right:0;padding-left:var(--fdScrollbar_Dimension);border-left:none;border-right:.0625rem solid #e4e4e4;border-right:var(--sapList_BorderWidth, .0625rem) solid var(--sapList_BorderColor, #e4e4e4)}.fdp-table__body-hs-wrap{width:100%;position:relative}.fdp-table__body-hs-spacer{position:absolute;height:1px;visibility:hidden}.fdp-table__empty-table-message{box-sizing:border-box;padding:1rem;text-align:center;display:flex;align-items:center;justify-content:center;align-content:center;width:100%}.fdp-table__empty .fd-table__cell{width:100%}.fdp-table__empty .fd-table__body{border-left:none}[dir=rtl] .fdp-table__empty .fd-table__body,.fdp-table__empty .fd-table__body[dir=rtl]{border-left:.0625rem solid #e4e4e4;border-left:var(--sapList_BorderWidth, .0625rem) solid var(--sapList_BorderColor, #e4e4e4);border-right:none}.fdp-table__empty.fixed-height{background-color:#fff;background-color:var(--sapList_Background, #fff)}.fdp-table .fd-table__cell{z-index:0}.fdp-table .fd-table__cell--group{min-width:100%;border-left:none}.fdp-table .fd-table__cell--group:before{content:\"\";display:block;position:absolute;top:-.0625rem;left:0;right:0;border-top:.0625rem solid #e4e4e4;border-top:var(--sapList_BorderWidth, .0625rem) solid var(--sapList_BorderColor, #e4e4e4)}.fdp-table .fd-table__cell--status-indicator{border-left:none;border-right:.0625rem solid #e4e4e4;border-right:var(--sapList_BorderWidth, .0625rem) solid var(--sapList_BorderColor, #e4e4e4);min-width:.375rem}[dir=rtl] .fdp-table .fd-table__cell--status-indicator,.fdp-table .fd-table__cell--status-indicator[dir=rtl]{border-right:none}.fdp-table .fd-table__cell--mock.fd-table__cell--mock-borderless{border-left:none!important;border-right:none!important;border-bottom:none!important;border-top:none!important}.fdp-table .fd-table__cell .fdp-table__navigation-indicator{margin:auto}[dir=rtl] .fdp-table .fd-table__cell:nth-last-child(2):not(.fdp-table__cell--group),.fdp-table .fd-table__cell[dir=rtl]:nth-last-child(2):not(.fdp-table__cell--group){border-left:.0625rem solid #e4e4e4;border-left:var(--sapList_BorderWidth, .0625rem) solid var(--sapList_BorderColor, #e4e4e4)}.fdp-table .fd-dnd-item{position:relative}.fdp-table .fd-table__cell--fixed{position:sticky;display:table-cell;z-index:1}.fdp-table .fd-table__cell--checkbox fd-checkbox{display:flex;height:100%}.fdp-table .fd-table__cell--checkbox fd-checkbox .fd-checkbox__label{align-self:center;margin:0}.fdp-table .fd-table__expand-wrapper{display:flex;align-items:center}.fdp-table__column-resizer{bottom:calc(var(--fdScrollbar_Dimension) + var(--sapList_BorderWidth, .0625rem))}.fdp-table__cell--navigation{width:4rem;min-width:4rem;max-width:4rem}.fdp-table__body-table.fd-table--pop-in .fd-table__row--secondary .fd-table__cell{border-bottom:var(--sapList_BorderWidth) solid var(--sapList_BorderColor)}.fdp-table__body-table.fd-table--pop-in .fd-table__row--secondary:hover{background-color:var(--sapList_Hover_Background)}.fdp-table__body-table.fd-table--pop-in .fdp-table__header .fd-table__cell .fd-table__text{margin-bottom:0}.fdp-table__body--virtual-scroll{position:relative;will-change:scroll-position}.fdp-table__body--virtual-scroll .fd-table__body{position:static;will-change:transform}.fdp-table.fd-table--no-vertical-borders .fd-table__cell--status-indicator{border-right-color:transparent}[dir=rtl] .fdp-table.fd-table--no-vertical-borders .fd-table__cell--status-indicator,.fdp-table.fd-table--no-vertical-borders .fd-table__cell--status-indicator[dir=rtl]{border-left-color:transparent}.fdp-table__growing-button{height:auto}.fdp-table__growing-button__title{font-weight:700;margin:.813rem 0}.fdp-table__growing-button__subtitle{padding-bottom:.875rem}.fdp-table__growing-button-content{display:flex;justify-content:center;flex-direction:column}.fdp-table__growing-button-content--byline>*{display:flex;flex-direction:column;width:100%}.fdp-table__growing-button-total{border-top:var(--fdList_Item_Action_Border)!important}.fdp-table__growing-button-total .fd-list__title{line-height:2.75rem}.fdp-table.fdp-table--outer-scroll .fd-toolbar{position:sticky;z-index:10;top:0}.fdp-table.fdp-table--outer-scroll .fdp-table__body.fd-scrollbar,.fdp-table.fdp-table--outer-scroll .fdp-table__container{overflow:visible}.fdp-table.fdp-table--outer-scroll thead{position:sticky;top:0}.fdp-table.fdp-table--outer-scroll:has(.fd-toolbar) thead{position:sticky;top:2.75rem}.fdp-table.fdp-table--outer-scroll:has(.fd-toolbar):has(.is-compact) thead{position:sticky;top:2rem}.fdp-table.fdp-table--outer-scroll:has(.fd-toolbar):has(.fd-toolbar--title) thead{position:sticky;top:2.75rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"1\"]{padding-left:2.75rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"1\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"1\"][dir=rtl]{padding-left:.5rem;padding-right:2.75rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"2\"]{padding-left:4.25rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"2\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"2\"][dir=rtl]{padding-left:.5rem;padding-right:4.25rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"3\"]{padding-left:5rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"3\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"3\"][dir=rtl]{padding-left:.5rem;padding-right:5rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"4\"]{padding-left:5.5rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"4\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"4\"][dir=rtl]{padding-left:.5rem;padding-right:5.5rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"5\"]{padding-left:6rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"5\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"5\"][dir=rtl]{padding-left:.5rem;padding-right:6rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"6\"]{padding-left:6.5rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"6\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"6\"][dir=rtl]{padding-left:.5rem;padding-right:6.5rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"7\"]{padding-left:7rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"7\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"7\"][dir=rtl]{padding-left:.5rem;padding-right:7rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"8\"]{padding-left:7.5rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"8\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"8\"][dir=rtl]{padding-left:.5rem;padding-right:7.5rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"9\"]{padding-left:8rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"9\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"9\"][dir=rtl]{padding-left:.5rem;padding-right:8rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"10\"]{padding-left:8.5rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"10\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"10\"][dir=rtl]{padding-left:.5rem;padding-right:8.5rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"11\"]{padding-left:9rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"11\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"11\"][dir=rtl]{padding-left:.5rem;padding-right:9rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"12\"]{padding-left:9.5rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"12\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"12\"][dir=rtl]{padding-left:.5rem;padding-right:9.5rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"13\"]{padding-left:10rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"13\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"13\"][dir=rtl]{padding-left:.5rem;padding-right:10rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"14\"]{padding-left:10.5rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"14\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"14\"][dir=rtl]{padding-left:.5rem;padding-right:10.5rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"15\"]{padding-left:11rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"15\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"15\"][dir=rtl]{padding-left:.5rem;padding-right:11rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"16\"]{padding-left:11.5rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"16\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"16\"][dir=rtl]{padding-left:.5rem;padding-right:11.5rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"17\"]{padding-left:12rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"17\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"17\"][dir=rtl]{padding-left:.5rem;padding-right:12rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"18\"]{padding-left:12.5rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"18\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"18\"][dir=rtl]{padding-left:.5rem;padding-right:12.5rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"19\"]{padding-left:13rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"19\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"19\"][dir=rtl]{padding-left:.5rem;padding-right:13rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"20\"]{padding-left:13.5rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"20\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"20\"][dir=rtl]{padding-left:.5rem;padding-right:13.5rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand,.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand{cursor:pointer;white-space:nowrap}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"]{padding-left:0}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"][dir=rtl]{padding-left:.5rem;padding-right:0}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"]{padding-left:1.5rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"][dir=rtl]{padding-left:.5rem;padding-right:1.5rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"]{padding-left:2.25rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"][dir=rtl]{padding-left:.5rem;padding-right:2.25rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"]{padding-left:2.75rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"][dir=rtl]{padding-left:.5rem;padding-right:2.75rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"]{padding-left:3.25rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"][dir=rtl]{padding-left:.5rem;padding-right:3.25rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"]{padding-left:3.75rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"][dir=rtl]{padding-left:.5rem;padding-right:3.75rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"]{padding-left:4.25rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"][dir=rtl]{padding-left:.5rem;padding-right:4.25rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"]{padding-left:4.75rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"][dir=rtl]{padding-left:.5rem;padding-right:4.75rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"]{padding-left:5.25rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"][dir=rtl]{padding-left:.5rem;padding-right:5.25rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"]{padding-left:5.75rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"][dir=rtl]{padding-left:.5rem;padding-right:5.75rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"]{padding-left:6.25rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"][dir=rtl]{padding-left:.5rem;padding-right:6.25rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"]{padding-left:6.75rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"][dir=rtl]{padding-left:.5rem;padding-right:6.75rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"]{padding-left:7.25rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"][dir=rtl]{padding-left:.5rem;padding-right:7.25rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"]{padding-left:7.75rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"][dir=rtl]{padding-left:.5rem;padding-right:7.75rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"]{padding-left:8.25rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"][dir=rtl]{padding-left:.5rem;padding-right:8.25rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"]{padding-left:8.75rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"][dir=rtl]{padding-left:.5rem;padding-right:8.75rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"]{padding-left:9.25rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"][dir=rtl]{padding-left:.5rem;padding-right:9.25rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"]{padding-left:9.75rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"][dir=rtl]{padding-left:.5rem;padding-right:9.75rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"]{padding-left:10.25rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"][dir=rtl]{padding-left:.5rem;padding-right:10.25rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"]{padding-left:10.75rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"][dir=rtl]{padding-left:.5rem;padding-right:10.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"1\"]{padding-left:2rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"1\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"1\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"1\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"1\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"1\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"1\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"1\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"1\"][dir=rtl]{padding-left:.5rem;padding-right:2rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"2\"]{padding-left:3.5rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"2\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"2\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"2\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"2\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"2\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"2\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"2\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"2\"][dir=rtl]{padding-left:.5rem;padding-right:3.5rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"3\"]{padding-left:4.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"3\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"3\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"3\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"3\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"3\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"3\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"3\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"3\"][dir=rtl]{padding-left:.5rem;padding-right:4.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"4\"]{padding-left:4.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"4\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"4\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"4\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"4\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"4\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"4\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"4\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"4\"][dir=rtl]{padding-left:.5rem;padding-right:4.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"5\"]{padding-left:5.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"5\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"5\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"5\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"5\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"5\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"5\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"5\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"5\"][dir=rtl]{padding-left:.5rem;padding-right:5.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"6\"]{padding-left:5.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"6\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"6\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"6\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"6\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"6\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"6\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"6\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"6\"][dir=rtl]{padding-left:.5rem;padding-right:5.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"7\"]{padding-left:6.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"7\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"7\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"7\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"7\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"7\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"7\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"7\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"7\"][dir=rtl]{padding-left:.5rem;padding-right:6.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"8\"]{padding-left:6.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"8\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"8\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"8\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"8\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"8\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"8\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"8\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"8\"][dir=rtl]{padding-left:.5rem;padding-right:6.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"9\"]{padding-left:7.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"9\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"9\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"9\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"9\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"9\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"9\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"9\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"9\"][dir=rtl]{padding-left:.5rem;padding-right:7.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"10\"]{padding-left:7.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"10\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"10\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"10\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"10\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"10\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"10\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"10\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"10\"][dir=rtl]{padding-left:.5rem;padding-right:7.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"11\"]{padding-left:8.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"11\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"11\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"11\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"11\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"11\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"11\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"11\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"11\"][dir=rtl]{padding-left:.5rem;padding-right:8.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"12\"]{padding-left:8.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"12\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"12\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"12\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"12\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"12\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"12\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"12\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"12\"][dir=rtl]{padding-left:.5rem;padding-right:8.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"13\"]{padding-left:9.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"13\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"13\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"13\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"13\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"13\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"13\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"13\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"13\"][dir=rtl]{padding-left:.5rem;padding-right:9.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"14\"]{padding-left:9.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"14\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"14\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"14\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"14\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"14\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"14\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"14\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"14\"][dir=rtl]{padding-left:.5rem;padding-right:9.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"15\"]{padding-left:10.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"15\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"15\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"15\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"15\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"15\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"15\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"15\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"15\"][dir=rtl]{padding-left:.5rem;padding-right:10.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"16\"]{padding-left:10.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"16\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"16\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"16\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"16\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"16\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"16\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"16\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"16\"][dir=rtl]{padding-left:.5rem;padding-right:10.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"17\"]{padding-left:11.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"17\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"17\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"17\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"17\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"17\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"17\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"17\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"17\"][dir=rtl]{padding-left:.5rem;padding-right:11.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"18\"]{padding-left:11.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"18\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"18\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"18\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"18\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"18\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"18\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"18\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"18\"][dir=rtl]{padding-left:.5rem;padding-right:11.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"19\"]{padding-left:12.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"19\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"19\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"19\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"19\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"19\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"19\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"19\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"19\"][dir=rtl]{padding-left:.5rem;padding-right:12.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"20\"]{padding-left:12.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"20\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"20\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"20\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"20\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"20\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"20\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"20\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"20\"][dir=rtl]{padding-left:.5rem;padding-right:12.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"]{padding-left:0}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"][dir=rtl]{padding-left:.5rem;padding-right:0}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"]{padding-left:1.5rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"][dir=rtl]{padding-left:.5rem;padding-right:1.5rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"]{padding-left:2.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"][dir=rtl]{padding-left:.5rem;padding-right:2.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"]{padding-left:2.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"][dir=rtl]{padding-left:.5rem;padding-right:2.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"]{padding-left:3.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"][dir=rtl]{padding-left:.5rem;padding-right:3.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"]{padding-left:3.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"][dir=rtl]{padding-left:.5rem;padding-right:3.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"]{padding-left:4.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"][dir=rtl]{padding-left:.5rem;padding-right:4.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"]{padding-left:4.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"][dir=rtl]{padding-left:.5rem;padding-right:4.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"]{padding-left:5.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"][dir=rtl]{padding-left:.5rem;padding-right:5.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"]{padding-left:5.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"][dir=rtl]{padding-left:.5rem;padding-right:5.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"]{padding-left:6.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"][dir=rtl]{padding-left:.5rem;padding-right:6.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"]{padding-left:6.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"][dir=rtl]{padding-left:.5rem;padding-right:6.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"]{padding-left:7.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"][dir=rtl]{padding-left:.5rem;padding-right:7.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"]{padding-left:7.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"][dir=rtl]{padding-left:.5rem;padding-right:7.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"]{padding-left:8.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"][dir=rtl]{padding-left:.5rem;padding-right:8.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"]{padding-left:8.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"][dir=rtl]{padding-left:.5rem;padding-right:8.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"]{padding-left:9.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"][dir=rtl]{padding-left:.5rem;padding-right:9.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"]{padding-left:9.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"][dir=rtl]{padding-left:.5rem;padding-right:9.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"]{padding-left:10.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"][dir=rtl]{padding-left:.5rem;padding-right:10.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"]{padding-left:10.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"][dir=rtl]{padding-left:.5rem;padding-right:10.75rem}.fd-table__intersection-spy{position:relative}.fdp-table--no-outer-border.fd-table--no-vertical-borders .fd-table__cell.is-last-child,.fdp-table--no-outer-border.fd-table--no-vertical-borders .fd-table__cell:last-child{border-left-style:none}th.fd-table__cell .fd-table__inner{font-weight:700}.fd-tr-hovered{background-color:var(--sapList_Hover_Background)!important}.fdp-table__body--disable-scroll{overflow:hidden!important}.fd-toolbar__group{gap:.5rem;display:flex;align-items:center}\n/*! Bundled license information:\n\nfundamental-styles/dist/scrollbar.css:\n (*!\n * Fundamental Library Styles v0.40.1\n * Copyright (c) 2025 SAP SE or an SAP affiliate company.\n * Licensed under Apache License 2.0 (https://github.com/SAP/fundamental-styles/blob/main/LICENSE)\n *)\n*/\n"] }]
5474
+ ], template: "@if (tableToolbar) {\n <!-- Toolbar -->\n <ng-template\n [ngTemplateOutlet]=\"tableToolbar.contentTemplateRef\"\n [ngTemplateOutletContext]=\"_toolbarContext\"\n ></ng-template>\n}\n<fd-busy-indicator\n [loading]=\"(_tableService.tableLoading$ | async) === true && _dataSourceDirective._firstLoadingDone\"\n [block]=\"true\"\n>\n <!-- Table Container -->\n <div class=\"fdp-table__container\" #tableContainer>\n <ng-template [ngTemplateOutlet]=\"tableTemplate\"></ng-template>\n @if (enableDragResize) {\n <!-- Table column resizer for visually representing the resizing process -->\n <fdp-table-column-resizer class=\"fdp-table__column-resizer\"></fdp-table-column-resizer>\n }\n </div>\n @if (showGrowingButton) {\n <fdp-table-growing-button [showItemsCount]=\"showItemsCount\"></fdp-table-growing-button>\n }\n</fd-busy-indicator>\n<!-- Table Template -->\n<ng-template #tableTemplate>\n <div\n class=\"fdp-table__body fd-scrollbar\"\n [class.fdp-table__body--virtual-scroll]=\"!!_virtualScrollDirective?.virtualScroll\"\n [class.fdp-table__body--disable-scroll]=\"!!_dndTableDirective?.dragDropInProgress\"\n fdpTableScrollable\n #tableScrollable=\"tableScrollable\"\n [style.height]=\"bodyHeight\"\n [class.fixed-height]=\"!!bodyHeight\"\n [attr.role]=\"pageScrolling ? 'feed' : null\"\n [class.fd-table--fixed]=\"_freezableColumns.size || fixed\"\n >\n <table\n fd-table\n [attr.role]=\"isTreeTable ? 'treegrid' : 'grid'\"\n class=\"fdp-table__body-table\"\n [allCellsFocusable]=\"true\"\n [popIn]=\"_tableService.poppingColumns$().length > 0\"\n [class.fd-table--no-outer-border]=\"noOuterBorders\"\n [attr.aria-labelledby]=\"_ariaLabelledBy\"\n >\n <thead fd-table-header [nonInteractive]=\"nonInteractiveHeader\" class=\"fdp-table__header\">\n <tr\n fdp-table-header-row\n [noBorders]=\"noBorders\"\n [noHorizontalBorders]=\"noHorizontalBorders\"\n [noVerticalBorders]=\"noVerticalBorders\"\n [rowId]=\"id\"\n [fixed]=\"fixed\"\n [isShownSelectionColumn]=\"isSelectionColumnShown\"\n [checkedState]=\"_checkedState\"\n [selectionMode]=\"_selectionMode\"\n [selectionColumnWidth]=\"_selectionColumnWidth\"\n [freezeColumnsTo]=\"freezeColumnsTo\"\n [freezeEndColumnsTo]=\"freezeEndColumnsTo\"\n (keydown.enter)=\"_onRowClick(null, $event)\"\n (keydown.space)=\"_onRowClick(null, $event)\"\n (click)=\"_onRowClick(null, $event)\"\n [disableSelectionCheckbox]=\"_dataSourceTableRows.length === 0\"\n ></tr>\n </thead>\n @if (!!_tableRowsVisible.length && _tableService.visibleColumnsLength() > 0) {\n <tbody\n fd-table-body\n fdkDndList\n #tableBody\n [dragoverPredicate]=\"_dndTableDirective?.dragoverPredicate\"\n [dropPredicate]=\"_dndTableDirective?.dropPredicate\"\n [noBorderX]=\"noBorderX || noBorders\"\n [noBorderY]=\"noBorderY || noBorders\"\n [tabIndex]=\"pageScrolling ? 0 : -1\"\n [items]=\"_dndTableRowsPlaceholder\"\n [draggable]=\"isDraggable\"\n [dropMode]=\"_dndTableDirective?.dropMode ?? 'group'\"\n (itemDropped)=\"_dndTableDirective?.dragDropItemDrop($event)\"\n (dropPredicateCalculating)=\"_calculatingLoading($event)\"\n (dropCancelled)=\"_dndTableDirective?.dropCancelled()\"\n >\n @for (rowIndex of _tableCurrentlyRenderedRowsPlaceholder; track _rowTrackBy($index, rowIndex)) {\n @if (_tableRowsVisible[rowIndex]; as row) {\n @switch (row.type) {\n @case ('group') {\n <tr\n fdp-table-group-row\n [index]=\"rowIndex\"\n [height]=\"rowHeight\"\n [draggable]=\"isDraggable\"\n [row]=\"row\"\n [rowId]=\"id\"\n [keyToColumnMap]=\"_keyToColumnMap\"\n (toggleGroupRow)=\"_toggleGroupRow($event)\"\n (click)=\"_emitRowActivate(row, $event.ctrlKey || $event.metaKey)\"\n ></tr>\n }\n @default {\n <tr\n [fdkDndItem]=\"row\"\n [applyDragItemClass]=\"isDraggable\"\n [class]=\"row | rowClasses: rowsClass\"\n [tabindex]=\"rowsActivable || !!row.navigatable ? 0 : -1\"\n [focusable]=\"rowsActivable || !!row.navigatable\"\n [hoverable]=\"rowsActivable || isSelectionColumnShown || !!row.navigatable\"\n [activable]=\"rowsActivable || !!row.navigatable\"\n [active]=\"rowIndex === _navigatedRowIndex\"\n [highlightActive]=\"highlightNavigatedRow\"\n [style.height.px]=\"rowHeight\"\n [attr.aria-level]=\"isTreeTable ? row.level + 1 : null\"\n (keydown.enter)=\"_onRowClick(row, $event)\"\n (keydown.space)=\"_onRowClick(row, $event)\"\n (click)=\"_onRowClick(row, $event)\"\n (started)=\"_dndTableDirective?.dragDropStart()\"\n [main]=\"true\"\n [class.fd-table__row--draggable]=\"isDraggable\"\n fdp-table-row\n [attr.aria-rowindex]=\"rowIndex + 1\"\n [rowId]=\"id\"\n [class.fd-tr-hovered]=\"!row.checked && hoveredRowIndex$() === rowIndex\"\n [index]=\"rowIndex\"\n [row]=\"row\"\n [selectionMode]=\"_selectionMode\"\n [selectableKey]=\"selectableKey\"\n [enableTristateMode]=\"enableTristateMode\"\n [fixed]=\"fixed\"\n [selectionColumnWidth]=\"_selectionColumnWidth\"\n [freezeColumnsTo]=\"freezeColumnsTo\"\n [freezeEndColumnsTo]=\"freezeEndColumnsTo\"\n ></tr>\n }\n }\n @if (row.type === 'item' && _tableService.poppingColumns$().length > 0) {\n <tr\n (keydown.enter)=\"_onRowClick(row, $event)\"\n (keydown.space)=\"_onRowClick(row, $event)\"\n (click)=\"_onRowClick(row, $event)\"\n fdp-table-popping-row\n [secondary]=\"true\"\n [style.cursor]=\"rowsActivable || !!row.navigatable ? 'pointer' : 'auto'\"\n [style.height.px]=\"secondaryRowHeight\"\n [selectionMode]=\"selectionMode\"\n [row]=\"row\"\n [checked]=\"row.checked\"\n [class]=\"row | rowClasses: rowsClass\"\n (toggleGroupRow)=\"_toggleGroupRow($event)\"\n (cellClicked)=\"_onCellClick($event.index, $event.row)\"\n (mouseenter)=\"handleMouseEnter(rowIndex)\"\n (mouseleave)=\"handleMouseLeave()\"\n ></tr>\n }\n @if (row.children.length === 0 && (row.childItemsLoading$ | async)) {\n @for (_ of loadingRowRange; track $index) {\n <tr fd-table-row>\n @for (_ of loadingColumnsRange; track $index) {\n <td fd-table-cell>\n <fd-skeleton\n [style.margin]=\"'auto 0'\"\n type=\"text\"\n textLines=\"1\"\n width=\"60%\"\n ></fd-skeleton>\n </td>\n }\n </tr>\n }\n }\n <!-- Last rendered child row. -->\n @if (row.parent?.lastChild?.index === row.index) {\n <tr\n aria-hidden=\"true\"\n class=\"fd-table__intersection-spy\"\n [fdkIntersectionSpy]=\"pageScrollingThreshold\"\n (intersected)=\"$event && _tableRowService.loadChildRows(row.parent!)\"\n [style.top.px]=\"pageScrollingThreshold * -1\"\n ></tr>\n }\n }\n }\n @if (pageScrolling) {\n <tr\n aria-hidden=\"true\"\n class=\"fd-table__intersection-spy\"\n [fdkIntersectionSpy]=\"pageScrollingThreshold\"\n (intersected)=\"$event && _onSpyIntersect($event)\"\n [style.top.px]=\"pageScrollingThreshold * -1\"\n ></tr>\n }\n </tbody>\n } @else {\n @if (!_dataSourceDirective._firstLoadingDone) {\n <tbody fd-table-body>\n @for (_ of loadingRowRange; track $index) {\n <tr fd-table-row>\n @for (_ of loadingColumnsRange; track $index) {\n <td fd-table-cell>\n <fd-skeleton\n [style.margin]=\"'auto 0'\"\n type=\"text\"\n textLines=\"1\"\n width=\"60%\"\n ></fd-skeleton>\n </td>\n }\n </tr>\n }\n </tbody>\n } @else {\n <tbody fd-table-body class=\"fdp-table__empty\">\n <tr fd-table-row>\n <td fd-table-cell class=\"fd-table__cell--no-data\" colspan=\"100%\">\n <div class=\"fdp-table__empty-table-message\">\n <ng-content select=\"fdp-table-no-data-wrapper\"></ng-content>\n @if (!_noDataWrapper && _tableService.visibleColumnsLength() > 0) {\n <div>\n {{\n emptyTableMessage ||\n ('platformTable.defaultEmptyMessage' | fdTranslate)()\n }}\n </div>\n } @else if (_tableService.visibleColumnsLength() === 0) {\n <div>\n {{\n noVisibleColumnsMessage ||\n ('platformTable.noVisibleColumnsMessage' | fdTranslate)()\n }}\n </div>\n }\n </div>\n </td>\n </tr>\n </tbody>\n }\n }\n @if (pageScrolling) {\n <tbody class=\"fd-table__body__focus-mock\"></tbody>\n }\n @if (_virtualScrollDirective?.virtualScroll) {\n <!-- the tbody element below is so the scrollbar renders correctly -->\n <tbody>\n <tr>\n <td colspan=\"100%\" [style.height.px]=\"_virtualScrollDirective!.virtualScrollTotalHeight\"></td>\n </tr>\n </tbody>\n }\n @if (showTableFooter) {\n <tfoot fd-table-footer>\n <tr fdp-table-footer-row></tr>\n </tfoot>\n }\n </table>\n </div>\n</ng-template>\n<!-- Empty Table Message -->\n", styles: [".fd-scrollbar{border:0;-webkit-box-sizing:border-box;box-sizing:border-box;color:var(--sapTextColor);font-family:var(--sapFontFamily);font-size:var(--sapFontSize);font-weight:400;forced-color-adjust:none;line-height:normal;margin-block:0;margin-inline:0;overflow:auto;padding-block:0;padding-inline:0;scrollbar-color:var(--fdScrollbar_Thumb_Color) var(--fdScrollbar_Track_Color)}.fd-scrollbar:after,.fd-scrollbar:before{-webkit-box-sizing:inherit;box-sizing:inherit;font-size:inherit}.fd-scrollbar.is-focus,.fd-scrollbar:focus{outline:none;z-index:5}.fd-scrollbar::-webkit-scrollbar{height:var(--fdScrollbar_Dimension);width:var(--fdScrollbar_Dimension)}.fd-scrollbar::-webkit-scrollbar-corner,.fd-scrollbar::-webkit-scrollbar-track{background-color:var(--fdScrollbar_Track_Color)}.fd-scrollbar::-webkit-scrollbar-thumb{background-color:transparent;border:var(--fdScrollbar_Thumb_Offset) solid transparent;border-radius:calc(var(--fdScrollbar_Thumb_Border_Radius) - var(--fdScrollbar_Thumb_Offset));-webkit-box-shadow:inset 0 0 0 var(--fdScrollbar_Dimension) var(--fdScrollbar_Thumb_Color);box-shadow:inset 0 0 0 var(--fdScrollbar_Dimension) var(--fdScrollbar_Thumb_Color)}.fd-scrollbar::-webkit-scrollbar-thumb:active,.fd-scrollbar::-webkit-scrollbar-thumb:hover{-webkit-box-shadow:inset 0 0 0 var(--fdScrollbar_Dimension) var(--fdScrollbar_Thumb_Hover_Color);box-shadow:inset 0 0 0 var(--fdScrollbar_Dimension) var(--fdScrollbar_Thumb_Hover_Color)}.fd-scrollbar--container::-webkit-scrollbar-corner,.fd-scrollbar--container::-webkit-scrollbar-track{background-color:var(--fdScrollbar_Track_Color);border-radius:0 var(--fdScrollbar_Border_Radius) var(--fdScrollbar_Border_Radius) 0}.fd-scrollbar--container[dir=rtl]::-webkit-scrollbar-corner,.fd-scrollbar--container[dir=rtl]::-webkit-scrollbar-track,[dir=rtl] .fd-scrollbar--container::-webkit-scrollbar-corner,[dir=rtl] .fd-scrollbar--container::-webkit-scrollbar-track{border-radius:var(--fdScrollbar_Border_Radius) 0 0 var(--fdScrollbar_Border_Radius)}.cdk-visually-hidden{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;white-space:nowrap;outline:0;-webkit-appearance:none;-moz-appearance:none;left:0}[dir=rtl] .cdk-visually-hidden{left:auto;right:0}.fd-table__cell--focusable[aria-selected=true]:after{border-color:var(--sapContent_FocusColor)!important}fdk-dynamic-portal .fdp-table-toolbar-actions{gap:.5rem;display:flex;flex-direction:column}.fdp-table{display:block}.fdp-table .fd-table__row:focus-visible{outline:none}.fdp-table .fdp-table-toolbar-actions{gap:.5rem;display:flex;align-items:center}.fdp-table .fdp-table__applied-filters-toolbar label{flex-shrink:1}.fdp-table .fdp-table__body-table,.fdp-table .fdp-table__header-table,.fdp-table .fdp-table__body-hs-table{table-layout:auto;width:100%;border-collapse:separate;border-spacing:0}.fdp-table .fd-table__body__focus-mock{position:absolute;top:var(--fdTable_Header_Cell_Height);left:0;right:0;bottom:0;pointer-events:none;z-index:5}.fdp-table .fd-table__body:focus+.fd-table__body__focus-mock{outline-offset:-.1875rem;outline-width:.0625rem;outline-width:var(--sapContent_FocusWidth, .0625rem);outline-color:#000;outline-color:var(--sapContent_FocusColor, #000);outline-style:dotted;outline-style:var(--sapContent_FocusStyle, dotted)}.fdp-table.fd-table--tree .fd-table__body .fd-table__row,.fdp-table.fd-table--tree .fd-table__body .fd-table__row .fd-replace-indicator,.fdp-table.fd-table--group .fd-table__body .fd-table__row,.fdp-table.fd-table--group .fd-table__body .fd-table__row .fd-replace-indicator{height:2.75rem}.fdp-table.fd-table--tree.fd-table--compact .fd-table__body .fd-table__row,.fdp-table.fd-table--tree.fd-table--compact .fd-table__body .fd-table__row .fd-replace-indicator,.fdp-table.fd-table--group.fd-table--compact .fd-table__body .fd-table__row,.fdp-table.fd-table--group.fd-table--compact .fd-table__body .fd-table__row .fd-replace-indicator{height:2rem}.fdp-table.fd-table--tree.fd-table--condensed .fd-table__body .fd-table__row,.fdp-table.fd-table--tree.fd-table--condensed .fd-table__body .fd-table__row .fd-replace-indicator,.fdp-table.fd-table--group.fd-table--condensed .fd-table__body .fd-table__row,.fdp-table.fd-table--group.fd-table--condensed .fd-table__body .fd-table__row .fd-replace-indicator{height:1.563rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__row{cursor:auto}.fdp-table.fd-table--tree .fd-table__body .fd-table__row--draggable:hover{cursor:grab}.fdp-table.fd-table--tree .fd-table__body .fd-table__row--draggable:active{cursor:grabbing}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__row--draggable.fd-dnd-on-drag.fd-dnd-placeholder,.fdp-table.fd-table--tree .fd-table__body .fd-table__row--draggable.fd-dnd-on-drag.fd-dnd-placeholder[dir=rtl]{padding-left:.5rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__row--draggable.fd-dnd-on-drag:not(.fd-dnd-placeholder) .fdp-table__cell--selection{top:0;transform:translate(-100%)}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__row--draggable.fd-dnd-on-drag:not(.fd-dnd-placeholder) .fdp-table__cell--selection,.fdp-table.fd-table--tree .fd-table__body .fd-table__row--draggable.fd-dnd-on-drag:not(.fd-dnd-placeholder) .fdp-table__cell--selection[dir=rtl]{transform:translate(100%)}.fdp-table.fd-table--tree .fd-table__body .fd-table__row .fd-replace-indicator{top:auto}.fdp-table.fd-table--tree .fd-table__body .fd-table__row .fd-table__text{white-space:nowrap}.fdp-table.fd-table--tree.fd-table--condensed .fd-table__row.fd-dnd-on-drag.fd-dnd-placeholder,.fdp-table.fd-table--tree.fd-table--compact .fd-table__row.fd-dnd-on-drag.fd-dnd-placeholder{padding-left:2rem}[dir=rtl] .fdp-table.fd-table--tree.fd-table--condensed .fd-table__row.fd-dnd-on-drag.fd-dnd-placeholder,.fdp-table.fd-table--tree.fd-table--condensed .fd-table__row.fd-dnd-on-drag.fd-dnd-placeholder[dir=rtl],[dir=rtl] .fdp-table.fd-table--tree.fd-table--compact .fd-table__row.fd-dnd-on-drag.fd-dnd-placeholder,.fdp-table.fd-table--tree.fd-table--compact .fd-table__row.fd-dnd-on-drag.fd-dnd-placeholder[dir=rtl]{padding-left:.5rem}.fdp-table.fd-table--condensed .fd-table__body .fd-table__cell--checkbox .fd-checkbox__label{position:relative;margin-top:0}.fdp-table.fdp-table--no-outer-border .fdp-table__header,.fdp-table.fdp-table--no-outer-border .fdp-table__body,.fdp-table.fdp-table--no-outer-border .fdp-table__body-hs,[dir=rtl] .fdp-table.fdp-table--no-outer-border .fdp-table__header,.fdp-table.fdp-table--no-outer-border .fdp-table__header[dir=rtl],[dir=rtl] .fdp-table.fdp-table--no-outer-border .fdp-table__body,.fdp-table.fdp-table--no-outer-border .fdp-table__body[dir=rtl],[dir=rtl] .fdp-table.fdp-table--no-outer-border .fdp-table__body-hs,.fdp-table.fdp-table--no-outer-border .fdp-table__body-hs[dir=rtl]{border-left:none;border-right:none}[dir=rtl] .fdp-table.fdp-table--no-outer-border .fdp-table__header .fd-table__cell:first-child,.fdp-table.fdp-table--no-outer-border .fdp-table__header[dir=rtl] .fd-table__cell:first-child,[dir=rtl] .fdp-table.fdp-table--no-outer-border .fdp-table__body .fd-table__cell:first-child,.fdp-table.fdp-table--no-outer-border .fdp-table__body[dir=rtl] .fd-table__cell:first-child,[dir=rtl] .fdp-table.fdp-table--no-outer-border .fdp-table__body-hs .fd-table__cell:first-child,.fdp-table.fdp-table--no-outer-border .fdp-table__body-hs[dir=rtl] .fd-table__cell:first-child{border-right:none}.fdp-table.fdp-table--no-outer-border .fdp-table__header .fd-table__cell{border-top:none}.fdp-table.fdp-table--no-outer-border .fdp-table__body{border-bottom:none}.fdp-table__container{position:relative;overflow:hidden;outline:none}.fdp-table__header{z-index:2}.fdp-table__header .fd-table__cell,.fdp-table__header .fd-table__cell--mock{border-top:.0625rem solid #e4e4e4;border-top:var(--sapList_BorderWidth, .0625rem) solid var(--sapList_BorderColor, #e4e4e4);border-bottom:.0625rem solid #e4e4e4;border-bottom:var(--sapList_BorderWidth, .0625rem) solid var(--sapList_BorderColor, #e4e4e4)}.fdp-table__header .fd-table__cell{margin-top:0;max-height:100%;top:0}.fdp-table__header .fd-table__cell--fixed{position:sticky}.fdp-table__header .fd-table__cell .fd-table__popover--custom{display:none}.fdp-table__header .fd-table__cell .fdp-table__navigation-indicator{opacity:0;visibility:hidden}.fdp-table__header .fd-table__cell--truncate-txt{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:inline-block;vertical-align:text-bottom;max-width:100%}.fdp-table__header th.fd-table__cell{border-block-start:none}.fdp-table__body-hs{box-sizing:border-box;border-left:.0625rem solid #e4e4e4;border-left:var(--sapList_BorderWidth, .0625rem) solid var(--sapList_BorderColor, #e4e4e4);background:var(--fdScrollbar_Track_Color, #ffffff);padding-right:var(--fdScrollbar_Dimension)}[dir=rtl] .fdp-table__body-hs,.fdp-table__body-hs[dir=rtl]{padding-right:0;padding-left:var(--fdScrollbar_Dimension);border-left:none;border-right:.0625rem solid #e4e4e4;border-right:var(--sapList_BorderWidth, .0625rem) solid var(--sapList_BorderColor, #e4e4e4)}.fdp-table__body-hs-wrap{width:100%;position:relative}.fdp-table__body-hs-spacer{position:absolute;height:1px;visibility:hidden}.fdp-table__empty-table-message{box-sizing:border-box;padding:1rem;text-align:center;display:flex;align-items:center;justify-content:center;align-content:center;width:100%}.fdp-table__empty .fd-table__cell{width:100%}.fdp-table__empty .fd-table__body{border-left:none}[dir=rtl] .fdp-table__empty .fd-table__body,.fdp-table__empty .fd-table__body[dir=rtl]{border-left:.0625rem solid #e4e4e4;border-left:var(--sapList_BorderWidth, .0625rem) solid var(--sapList_BorderColor, #e4e4e4);border-right:none}.fdp-table__empty.fixed-height{background-color:#fff;background-color:var(--sapList_Background, #fff)}.fdp-table .fd-table__cell{z-index:0}.fdp-table .fd-table__cell--group{min-width:100%;border-left:none}.fdp-table .fd-table__cell--group:before{content:\"\";display:block;position:absolute;top:-.0625rem;left:0;right:0;border-top:.0625rem solid #e4e4e4;border-top:var(--sapList_BorderWidth, .0625rem) solid var(--sapList_BorderColor, #e4e4e4)}.fdp-table .fd-table__cell--status-indicator{border-left:none;border-right:.0625rem solid #e4e4e4;border-right:var(--sapList_BorderWidth, .0625rem) solid var(--sapList_BorderColor, #e4e4e4);min-width:.375rem}[dir=rtl] .fdp-table .fd-table__cell--status-indicator,.fdp-table .fd-table__cell--status-indicator[dir=rtl]{border-right:none}.fdp-table .fd-table__cell--mock.fd-table__cell--mock-borderless{border-left:none!important;border-right:none!important;border-bottom:none!important;border-top:none!important}.fdp-table .fd-table__cell .fdp-table__navigation-indicator{margin:auto}[dir=rtl] .fdp-table .fd-table__cell:nth-last-child(2):not(.fdp-table__cell--group),.fdp-table .fd-table__cell[dir=rtl]:nth-last-child(2):not(.fdp-table__cell--group){border-left:.0625rem solid #e4e4e4;border-left:var(--sapList_BorderWidth, .0625rem) solid var(--sapList_BorderColor, #e4e4e4)}.fdp-table .fd-dnd-item{position:relative}.fdp-table .fd-table__cell--fixed{position:sticky;display:table-cell;z-index:1}.fdp-table .fd-table__cell--checkbox fd-checkbox{display:flex;height:100%}.fdp-table .fd-table__cell--checkbox fd-checkbox .fd-checkbox__label{align-self:center;margin:0}.fdp-table .fd-table__expand-wrapper{display:flex;align-items:center}.fdp-table__column-resizer{bottom:calc(var(--fdScrollbar_Dimension) + var(--sapList_BorderWidth, .0625rem))}.fdp-table__cell--navigation{width:4rem;min-width:4rem;max-width:4rem}.fdp-table__body-table.fd-table--pop-in .fd-table__row--secondary .fd-table__cell{border-bottom:var(--sapList_BorderWidth) solid var(--sapList_BorderColor)}.fdp-table__body-table.fd-table--pop-in .fd-table__row--secondary:hover{background-color:var(--sapList_Hover_Background)}.fdp-table__body-table.fd-table--pop-in .fdp-table__header .fd-table__cell .fd-table__text{margin-bottom:0}.fdp-table__body--virtual-scroll{position:relative;will-change:scroll-position}.fdp-table__body--virtual-scroll .fd-table__body{position:static;will-change:transform}.fdp-table.fd-table--no-vertical-borders .fd-table__cell--status-indicator{border-right-color:transparent}[dir=rtl] .fdp-table.fd-table--no-vertical-borders .fd-table__cell--status-indicator,.fdp-table.fd-table--no-vertical-borders .fd-table__cell--status-indicator[dir=rtl]{border-left-color:transparent}.fdp-table__growing-button{height:auto}.fdp-table__growing-button__title{font-weight:700;margin:.813rem 0}.fdp-table__growing-button__subtitle{padding-bottom:.875rem}.fdp-table__growing-button-content{display:flex;justify-content:center;flex-direction:column}.fdp-table__growing-button-content--byline>*{display:flex;flex-direction:column;width:100%}.fdp-table__growing-button-total{border-top:var(--fdList_Item_Action_Border)!important}.fdp-table__growing-button-total .fd-list__title{line-height:2.75rem}.fdp-table.fdp-table--outer-scroll .fd-toolbar{position:sticky;z-index:10;top:0}.fdp-table.fdp-table--outer-scroll .fdp-table__body.fd-scrollbar,.fdp-table.fdp-table--outer-scroll .fdp-table__container{overflow:visible}.fdp-table.fdp-table--outer-scroll thead{position:sticky;top:0}.fdp-table.fdp-table--outer-scroll:has(.fd-toolbar) thead{position:sticky;top:2.75rem}.fdp-table.fdp-table--outer-scroll:has(.fd-toolbar):has(.is-compact) thead{position:sticky;top:2rem}.fdp-table.fdp-table--outer-scroll:has(.fd-toolbar):has(.fd-toolbar--title) thead{position:sticky;top:2.75rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"1\"]{padding-left:2.75rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"1\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"1\"][dir=rtl]{padding-left:.5rem;padding-right:2.75rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"2\"]{padding-left:4.25rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"2\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"2\"][dir=rtl]{padding-left:.5rem;padding-right:4.25rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"3\"]{padding-left:5rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"3\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"3\"][dir=rtl]{padding-left:.5rem;padding-right:5rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"4\"]{padding-left:5.5rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"4\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"4\"][dir=rtl]{padding-left:.5rem;padding-right:5.5rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"5\"]{padding-left:6rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"5\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"5\"][dir=rtl]{padding-left:.5rem;padding-right:6rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"6\"]{padding-left:6.5rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"6\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"6\"][dir=rtl]{padding-left:.5rem;padding-right:6.5rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"7\"]{padding-left:7rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"7\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"7\"][dir=rtl]{padding-left:.5rem;padding-right:7rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"8\"]{padding-left:7.5rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"8\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"8\"][dir=rtl]{padding-left:.5rem;padding-right:7.5rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"9\"]{padding-left:8rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"9\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"9\"][dir=rtl]{padding-left:.5rem;padding-right:8rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"10\"]{padding-left:8.5rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"10\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"10\"][dir=rtl]{padding-left:.5rem;padding-right:8.5rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"11\"]{padding-left:9rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"11\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"11\"][dir=rtl]{padding-left:.5rem;padding-right:9rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"12\"]{padding-left:9.5rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"12\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"12\"][dir=rtl]{padding-left:.5rem;padding-right:9.5rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"13\"]{padding-left:10rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"13\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"13\"][dir=rtl]{padding-left:.5rem;padding-right:10rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"14\"]{padding-left:10.5rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"14\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"14\"][dir=rtl]{padding-left:.5rem;padding-right:10.5rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"15\"]{padding-left:11rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"15\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"15\"][dir=rtl]{padding-left:.5rem;padding-right:11rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"16\"]{padding-left:11.5rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"16\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"16\"][dir=rtl]{padding-left:.5rem;padding-right:11.5rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"17\"]{padding-left:12rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"17\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"17\"][dir=rtl]{padding-left:.5rem;padding-right:12rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"18\"]{padding-left:12.5rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"18\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"18\"][dir=rtl]{padding-left:.5rem;padding-right:12.5rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"19\"]{padding-left:13rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"19\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"19\"][dir=rtl]{padding-left:.5rem;padding-right:13rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"20\"]{padding-left:13.5rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"20\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"20\"][dir=rtl]{padding-left:.5rem;padding-right:13.5rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand,.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand{cursor:pointer;white-space:nowrap}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"]{padding-left:0}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"][dir=rtl]{padding-left:.5rem;padding-right:0}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"]{padding-left:1.5rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"][dir=rtl]{padding-left:.5rem;padding-right:1.5rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"]{padding-left:2.25rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"][dir=rtl]{padding-left:.5rem;padding-right:2.25rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"]{padding-left:2.75rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"][dir=rtl]{padding-left:.5rem;padding-right:2.75rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"]{padding-left:3.25rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"][dir=rtl]{padding-left:.5rem;padding-right:3.25rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"]{padding-left:3.75rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"][dir=rtl]{padding-left:.5rem;padding-right:3.75rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"]{padding-left:4.25rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"][dir=rtl]{padding-left:.5rem;padding-right:4.25rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"]{padding-left:4.75rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"][dir=rtl]{padding-left:.5rem;padding-right:4.75rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"]{padding-left:5.25rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"][dir=rtl]{padding-left:.5rem;padding-right:5.25rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"]{padding-left:5.75rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"][dir=rtl]{padding-left:.5rem;padding-right:5.75rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"]{padding-left:6.25rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"][dir=rtl]{padding-left:.5rem;padding-right:6.25rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"]{padding-left:6.75rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"][dir=rtl]{padding-left:.5rem;padding-right:6.75rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"]{padding-left:7.25rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"][dir=rtl]{padding-left:.5rem;padding-right:7.25rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"]{padding-left:7.75rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"][dir=rtl]{padding-left:.5rem;padding-right:7.75rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"]{padding-left:8.25rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"][dir=rtl]{padding-left:.5rem;padding-right:8.25rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"]{padding-left:8.75rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"][dir=rtl]{padding-left:.5rem;padding-right:8.75rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"]{padding-left:9.25rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"][dir=rtl]{padding-left:.5rem;padding-right:9.25rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"]{padding-left:9.75rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"][dir=rtl]{padding-left:.5rem;padding-right:9.75rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"]{padding-left:10.25rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"][dir=rtl]{padding-left:.5rem;padding-right:10.25rem}.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"]{padding-left:10.75rem}[dir=rtl] .fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],.fdp-table.fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"][dir=rtl],[dir=rtl] .fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],.fdp-table.fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"][dir=rtl]{padding-left:.5rem;padding-right:10.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"1\"]{padding-left:2rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"1\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"1\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"1\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"1\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"1\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"1\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"1\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"1\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"1\"][dir=rtl]{padding-left:.5rem;padding-right:2rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"2\"]{padding-left:3.5rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"2\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"2\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"2\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"2\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"2\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"2\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"2\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"2\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"2\"][dir=rtl]{padding-left:.5rem;padding-right:3.5rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"3\"]{padding-left:4.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"3\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"3\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"3\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"3\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"3\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"3\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"3\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"3\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"3\"][dir=rtl]{padding-left:.5rem;padding-right:4.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"4\"]{padding-left:4.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"4\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"4\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"4\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"4\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"4\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"4\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"4\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"4\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"4\"][dir=rtl]{padding-left:.5rem;padding-right:4.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"5\"]{padding-left:5.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"5\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"5\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"5\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"5\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"5\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"5\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"5\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"5\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"5\"][dir=rtl]{padding-left:.5rem;padding-right:5.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"6\"]{padding-left:5.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"6\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"6\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"6\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"6\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"6\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"6\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"6\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"6\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"6\"][dir=rtl]{padding-left:.5rem;padding-right:5.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"7\"]{padding-left:6.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"7\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"7\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"7\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"7\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"7\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"7\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"7\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"7\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"7\"][dir=rtl]{padding-left:.5rem;padding-right:6.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"8\"]{padding-left:6.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"8\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"8\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"8\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"8\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"8\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"8\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"8\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"8\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"8\"][dir=rtl]{padding-left:.5rem;padding-right:6.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"9\"]{padding-left:7.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"9\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"9\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"9\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"9\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"9\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"9\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"9\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"9\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"9\"][dir=rtl]{padding-left:.5rem;padding-right:7.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"10\"]{padding-left:7.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"10\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"10\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"10\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"10\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"10\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"10\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"10\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"10\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"10\"][dir=rtl]{padding-left:.5rem;padding-right:7.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"11\"]{padding-left:8.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"11\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"11\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"11\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"11\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"11\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"11\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"11\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"11\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"11\"][dir=rtl]{padding-left:.5rem;padding-right:8.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"12\"]{padding-left:8.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"12\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"12\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"12\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"12\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"12\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"12\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"12\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"12\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"12\"][dir=rtl]{padding-left:.5rem;padding-right:8.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"13\"]{padding-left:9.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"13\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"13\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"13\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"13\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"13\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"13\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"13\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"13\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"13\"][dir=rtl]{padding-left:.5rem;padding-right:9.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"14\"]{padding-left:9.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"14\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"14\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"14\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"14\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"14\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"14\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"14\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"14\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"14\"][dir=rtl]{padding-left:.5rem;padding-right:9.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"15\"]{padding-left:10.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"15\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"15\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"15\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"15\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"15\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"15\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"15\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"15\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"15\"][dir=rtl]{padding-left:.5rem;padding-right:10.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"16\"]{padding-left:10.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"16\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"16\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"16\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"16\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"16\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"16\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"16\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"16\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"16\"][dir=rtl]{padding-left:.5rem;padding-right:10.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"17\"]{padding-left:11.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"17\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"17\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"17\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"17\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"17\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"17\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"17\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"17\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"17\"][dir=rtl]{padding-left:.5rem;padding-right:11.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"18\"]{padding-left:11.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"18\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"18\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"18\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"18\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"18\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"18\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"18\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"18\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"18\"][dir=rtl]{padding-left:.5rem;padding-right:11.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"19\"]{padding-left:12.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"19\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"19\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"19\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"19\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"19\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"19\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"19\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"19\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"19\"][dir=rtl]{padding-left:.5rem;padding-right:12.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"20\"]{padding-left:12.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"20\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"20\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"20\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"20\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"20\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"20\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell[data-nesting-level=\"20\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"20\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell[data-nesting-level=\"20\"][dir=rtl]{padding-left:.5rem;padding-right:12.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"]{padding-left:0}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"1\"][dir=rtl]{padding-left:.5rem;padding-right:0}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"]{padding-left:1.5rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"2\"][dir=rtl]{padding-left:.5rem;padding-right:1.5rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"]{padding-left:2.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"3\"][dir=rtl]{padding-left:.5rem;padding-right:2.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"]{padding-left:2.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"4\"][dir=rtl]{padding-left:.5rem;padding-right:2.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"]{padding-left:3.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"5\"][dir=rtl]{padding-left:.5rem;padding-right:3.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"]{padding-left:3.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"6\"][dir=rtl]{padding-left:.5rem;padding-right:3.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"]{padding-left:4.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"7\"][dir=rtl]{padding-left:.5rem;padding-right:4.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"]{padding-left:4.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"8\"][dir=rtl]{padding-left:.5rem;padding-right:4.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"]{padding-left:5.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"9\"][dir=rtl]{padding-left:.5rem;padding-right:5.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"]{padding-left:5.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"10\"][dir=rtl]{padding-left:.5rem;padding-right:5.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"]{padding-left:6.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"11\"][dir=rtl]{padding-left:.5rem;padding-right:6.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"]{padding-left:6.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"12\"][dir=rtl]{padding-left:.5rem;padding-right:6.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"]{padding-left:7.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"13\"][dir=rtl]{padding-left:.5rem;padding-right:7.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"]{padding-left:7.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"14\"][dir=rtl]{padding-left:.5rem;padding-right:7.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"]{padding-left:8.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"15\"][dir=rtl]{padding-left:.5rem;padding-right:8.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"]{padding-left:8.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"16\"][dir=rtl]{padding-left:.5rem;padding-right:8.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"]{padding-left:9.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"17\"][dir=rtl]{padding-left:.5rem;padding-right:9.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"]{padding-left:9.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"18\"][dir=rtl]{padding-left:.5rem;padding-right:9.75rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"]{padding-left:10.25rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"19\"][dir=rtl]{padding-left:.5rem;padding-right:10.25rem}[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"]{padding-left:10.75rem}[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"][dir=rtl],[dir=rtl] [class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],[class*=-condensed] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"][dir=rtl],[dir=rtl] [class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],[class*=-compact] .fdp-table:not([class*=-cozy]).fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],.fdp-table[class*=-condensed].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"][dir=rtl],[dir=rtl] .fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],.fdp-table[class*=-condensed].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],.fdp-table[class*=-compact].fd-table--tree .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"][dir=rtl],[dir=rtl] .fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"],.fdp-table[class*=-compact].fd-table--group .fd-table__body .fd-table__cell--expand[data-nesting-level=\"20\"][dir=rtl]{padding-left:.5rem;padding-right:10.75rem}.fd-table__intersection-spy{position:relative}.fdp-table--no-outer-border.fd-table--no-vertical-borders .fd-table__cell.is-last-child,.fdp-table--no-outer-border.fd-table--no-vertical-borders .fd-table__cell:last-child{border-left-style:none}th.fd-table__cell .fd-table__inner{font-weight:700}.fd-tr-hovered{background-color:var(--sapList_Hover_Background)!important}.fdp-table__body--disable-scroll{overflow:hidden!important}.fd-toolbar__group{gap:.5rem;display:flex;align-items:center}\n/*! Bundled license information:\n\nfundamental-styles/dist/scrollbar.css:\n (*!\n * Fundamental Library Styles v0.40.1\n * Copyright (c) 2025 SAP SE or an SAP affiliate company.\n * Licensed under Apache License 2.0 (https://github.com/SAP/fundamental-styles/blob/main/LICENSE)\n *)\n*/\n"] }]
5454
5475
  }], ctorParameters: () => [{ type: i0.NgZone }, { type: i0.ChangeDetectorRef }, { type: i1.TableService }, { type: i1.TableScrollDispatcherService }, { type: i1.TableColumnResizeService }, { type: i1$3.ContentDensityObserver }, { type: i0.Injector }, { type: i3.TabbableElementService }], propDecorators: { name: [{
5455
5476
  type: Input
5456
5477
  }], id: [{