@finos/legend-extension-dsl-data-product 0.0.49 → 0.0.52
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/components/DataProduct/DataProductDataAccess.js +1 -1
- package/lib/components/DataProduct/LakehouseDataProductOwnersTooltip.d.ts +30 -0
- package/lib/components/DataProduct/LakehouseDataProductOwnersTooltip.d.ts.map +1 -0
- package/lib/components/DataProduct/LakehouseDataProductOwnersTooltip.js +56 -0
- package/lib/components/DataProduct/LakehouseDataProductOwnersTooltip.js.map +1 -0
- package/lib/components/ProductViewer.d.ts.map +1 -1
- package/lib/components/ProductViewer.js +9 -1
- package/lib/components/ProductViewer.js.map +1 -1
- package/lib/index.css +2 -2
- package/lib/index.css.map +1 -1
- package/lib/index.d.ts +1 -0
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js +1 -0
- package/lib/index.js.map +1 -1
- package/lib/package.json +1 -1
- package/lib/stores/DataProduct/DataProductDataAccessState.d.ts +4 -0
- package/lib/stores/DataProduct/DataProductDataAccessState.d.ts.map +1 -1
- package/lib/stores/DataProduct/DataProductDataAccessState.js +24 -1
- package/lib/stores/DataProduct/DataProductDataAccessState.js.map +1 -1
- package/lib/stores/DataProductDataAccess_LegendApplicationPlugin_Extension.d.ts +12 -0
- package/lib/stores/DataProductDataAccess_LegendApplicationPlugin_Extension.d.ts.map +1 -1
- package/lib/utils/LakehouseUtils.d.ts +1 -0
- package/lib/utils/LakehouseUtils.d.ts.map +1 -1
- package/lib/utils/LakehouseUtils.js +6 -0
- package/lib/utils/LakehouseUtils.js.map +1 -1
- package/package.json +11 -11
- package/src/components/DataProduct/DataProductDataAccess.tsx +1 -1
- package/src/components/DataProduct/LakehouseDataProductOwnersTooltip.tsx +144 -0
- package/src/components/ProductViewer.tsx +31 -0
- package/src/index.ts +1 -0
- package/src/stores/DataProduct/DataProductDataAccessState.ts +34 -1
- package/src/stores/DataProductDataAccess_LegendApplicationPlugin_Extension.ts +14 -0
- package/src/utils/LakehouseUtils.tsx +10 -0
- package/tsconfig.json +1 -0
|
@@ -340,7 +340,7 @@ const AccessPointTable = observer((props) => {
|
|
|
340
340
|
}
|
|
341
341
|
} }) })) : (_jsx(TabMessageScreen, { message: "Unable to fetch access point columns" })) }));
|
|
342
342
|
case DataProductAccessPointTabs.GRAMMAR:
|
|
343
|
-
return (_jsx(_Fragment, { children: accessPointState.fetchingGrammarState.isInProgress ? (_jsx(Box, { className: "data-product__viewer__more-info__loading-indicator", children: _jsx(CubesLoadingIndicator, { isLoading: true, children: _jsx(CubesLoadingIndicatorIcon, {}) }) })) : accessPointState.fetchingGrammarState.hasCompleted ? (_jsx(Box, { className: "data-product__viewer__more-info__grammar", children: _jsx(CodeEditor, { inputValue: accessPointState.grammar ?? 'Unable to fetch grammar', isReadOnly: true, language: CODE_EDITOR_LANGUAGE.
|
|
343
|
+
return (_jsx(_Fragment, { children: accessPointState.fetchingGrammarState.isInProgress ? (_jsx(Box, { className: "data-product__viewer__more-info__loading-indicator", children: _jsx(CubesLoadingIndicator, { isLoading: true, children: _jsx(CubesLoadingIndicatorIcon, {}) }) })) : accessPointState.fetchingGrammarState.hasCompleted ? (_jsx(Box, { className: "data-product__viewer__more-info__grammar", children: _jsx(CodeEditor, { inputValue: accessPointState.grammar ?? 'Unable to fetch grammar', isReadOnly: true, language: CODE_EDITOR_LANGUAGE.PURE, hideMinimap: true, hideGutter: true, hideActionBar: true, lightTheme: CODE_EDITOR_THEME.GITHUB_LIGHT, extraEditorOptions: {
|
|
344
344
|
scrollBeyondLastLine: false,
|
|
345
345
|
wordWrap: 'on',
|
|
346
346
|
} }) })) : (_jsx(TabMessageScreen, { message: "Unable to fetch access point grammar" })) }));
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) 2020-present, Goldman Sachs
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import type { ActionState, UserSearchService } from '@finos/legend-shared';
|
|
17
|
+
import type { GenericLegendApplicationStore } from '@finos/legend-application';
|
|
18
|
+
export declare const LakehouseDataProductOwnersTooltip: ((props: {
|
|
19
|
+
open: boolean;
|
|
20
|
+
setIsOpen: (val: boolean) => void;
|
|
21
|
+
owners: string[];
|
|
22
|
+
fetchingOwnersState: ActionState;
|
|
23
|
+
fetchOwners?: () => Promise<void>;
|
|
24
|
+
applicationStore: GenericLegendApplicationStore;
|
|
25
|
+
userSearchService: UserSearchService | undefined;
|
|
26
|
+
children: React.ReactElement;
|
|
27
|
+
}) => import("react/jsx-runtime").JSX.Element) & {
|
|
28
|
+
displayName: string;
|
|
29
|
+
};
|
|
30
|
+
//# sourceMappingURL=LakehouseDataProductOwnersTooltip.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"LakehouseDataProductOwnersTooltip.d.ts","sourceRoot":"","sources":["../../../src/components/DataProduct/LakehouseDataProductOwnersTooltip.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AASH,OAAO,KAAK,EAAE,WAAW,EAAE,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;AAC3E,OAAO,KAAK,EAAE,6BAA6B,EAAE,MAAM,2BAA2B,CAAC;AAoE/E,eAAO,MAAM,iCAAiC,WACpC;IACN,IAAI,EAAE,OAAO,CAAC;IACd,SAAS,EAAE,CAAC,GAAG,EAAE,OAAO,KAAK,IAAI,CAAC;IAClC,MAAM,EAAE,MAAM,EAAE,CAAC;IACjB,mBAAmB,EAAE,WAAW,CAAC;IACjC,WAAW,CAAC,EAAE,MAAM,OAAO,CAAC,IAAI,CAAC,CAAC;IAClC,gBAAgB,EAAE,6BAA6B,CAAC;IAChD,iBAAiB,EAAE,iBAAiB,GAAG,SAAS,CAAC;IACjD,QAAQ,EAAE,KAAK,CAAC,YAAY,CAAC;CAC9B;;CAyCF,CAAC"}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
/**
|
|
3
|
+
* Copyright (c) 2020-present, Goldman Sachs
|
|
4
|
+
*
|
|
5
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
6
|
+
* you may not use this file except in compliance with the License.
|
|
7
|
+
* You may obtain a copy of the License at
|
|
8
|
+
*
|
|
9
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
+
*
|
|
11
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
12
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
13
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
14
|
+
* See the License for the specific language governing permissions and
|
|
15
|
+
* limitations under the License.
|
|
16
|
+
*/
|
|
17
|
+
import { CubesLoadingIndicator, CubesLoadingIndicatorIcon, } from '@finos/legend-art';
|
|
18
|
+
import { Box, ClickAwayListener, Tooltip, Typography } from '@mui/material';
|
|
19
|
+
import { observer } from 'mobx-react-lite';
|
|
20
|
+
import { useEffect, useState, useCallback } from 'react';
|
|
21
|
+
import { UserRenderer } from '../UserRenderer/UserRenderer.js';
|
|
22
|
+
const TooltipContent = observer((props) => {
|
|
23
|
+
const { owners, fetchingOwnersState, fetchOwners, applicationStore, userSearchService, } = props;
|
|
24
|
+
useEffect(() => {
|
|
25
|
+
if (fetchingOwnersState.isInInitialState) {
|
|
26
|
+
// eslint-disable-next-line no-void
|
|
27
|
+
void fetchOwners?.();
|
|
28
|
+
}
|
|
29
|
+
}, [fetchOwners, fetchingOwnersState.isInInitialState]);
|
|
30
|
+
// In order to ensure the popover is properly resized after we load
|
|
31
|
+
// all the target user data, track how many users have finished loading
|
|
32
|
+
// so that we can trigger a window resize event once all the user data is loaded.
|
|
33
|
+
const [, setNumUsersLoaded] = useState(0);
|
|
34
|
+
const finishedLoadingUserCallback = useCallback(() => {
|
|
35
|
+
if (fetchingOwnersState.hasCompleted) {
|
|
36
|
+
setNumUsersLoaded((prev) => {
|
|
37
|
+
if (prev + 1 === owners.length) {
|
|
38
|
+
// Trigger a window resize event to ensure the Select menu is properly resized
|
|
39
|
+
window.dispatchEvent(new Event('resize'));
|
|
40
|
+
}
|
|
41
|
+
return prev + 1;
|
|
42
|
+
});
|
|
43
|
+
}
|
|
44
|
+
}, [fetchingOwnersState.hasCompleted, owners.length]);
|
|
45
|
+
return (_jsxs(Box, { className: "lakehouse-data-product-owners-tooltip", children: [_jsx(Typography, { variant: "h5", gutterBottom: true, children: "Owners" }), fetchingOwnersState.isInInitialState ||
|
|
46
|
+
fetchingOwnersState.isInProgress ? (_jsx(CubesLoadingIndicator, { isLoading: true, children: _jsx(CubesLoadingIndicatorIcon, {}) })) : (owners.map((owner) => (_jsx(UserRenderer, { userId: owner, applicationStore: applicationStore, userSearchService: userSearchService, onFinishedLoadingCallback: finishedLoadingUserCallback }, owner))))] }));
|
|
47
|
+
});
|
|
48
|
+
export const LakehouseDataProductOwnersTooltip = observer((props) => {
|
|
49
|
+
const { open, setIsOpen, owners, fetchingOwnersState, fetchOwners, applicationStore, userSearchService, children, } = props;
|
|
50
|
+
return (_jsx(ClickAwayListener, { onClickAway: () => setIsOpen(false), children: _jsx(Tooltip, { open: open, onClose: () => setIsOpen(false), placement: "bottom", disableFocusListener: true, disableHoverListener: true, disableTouchListener: true, title: _jsx(TooltipContent, { owners: owners, fetchingOwnersState: fetchingOwnersState, fetchOwners: fetchOwners, applicationStore: applicationStore, userSearchService: userSearchService }), slotProps: {
|
|
51
|
+
tooltip: {
|
|
52
|
+
className: 'lakehouse-data-product-owners-tooltip__wrapper',
|
|
53
|
+
},
|
|
54
|
+
}, children: children }) }));
|
|
55
|
+
});
|
|
56
|
+
//# sourceMappingURL=LakehouseDataProductOwnersTooltip.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"LakehouseDataProductOwnersTooltip.js","sourceRoot":"","sources":["../../../src/components/DataProduct/LakehouseDataProductOwnersTooltip.tsx"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ProductViewer.d.ts","sourceRoot":"","sources":["../../src/components/ProductViewer.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAOH,OAAO,EACL,KAAK,WAAW,EAChB,KAAK,cAAc,EAIpB,MAAM,qBAAqB,CAAC;AAC7B,OAAO,KAAK,EACV,0BAA0B,EAC1B,sBAAsB,EACvB,MAAM,8BAA8B,CAAC;AACtC,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,8BAA8B,CAAC;AACpE,OAAO,EAAE,sBAAsB,EAAE,MAAM,iDAAiD,CAAC;AAEzF,OAAO,EAAE,0BAA0B,EAAE,MAAM,qDAAqD,CAAC;AACjG,OAAO,EAAE,0BAA0B,EAAE,MAAM,yDAAyD,CAAC;AACrG,OAAO,KAAK,EAAE,8BAA8B,EAAE,MAAM,6DAA6D,CAAC;
|
|
1
|
+
{"version":3,"file":"ProductViewer.d.ts","sourceRoot":"","sources":["../../src/components/ProductViewer.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAOH,OAAO,EACL,KAAK,WAAW,EAChB,KAAK,cAAc,EAIpB,MAAM,qBAAqB,CAAC;AAC7B,OAAO,KAAK,EACV,0BAA0B,EAC1B,sBAAsB,EACvB,MAAM,8BAA8B,CAAC;AACtC,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,8BAA8B,CAAC;AACpE,OAAO,EAAE,sBAAsB,EAAE,MAAM,iDAAiD,CAAC;AAEzF,OAAO,EAAE,0BAA0B,EAAE,MAAM,qDAAqD,CAAC;AACjG,OAAO,EAAE,0BAA0B,EAAE,MAAM,yDAAyD,CAAC;AACrG,OAAO,KAAK,EAAE,8BAA8B,EAAE,MAAM,6DAA6D,CAAC;AAIlH,eAAO,MAAM,wBAAwB,GACnC,OAAO,eAAe,CAAC,iBAAiB,EAAE,qBAAqB,CAAC,KAC/D,KAAK,IAAI,sBAEX,CAAC;AAEF,eAAO,MAAM,4BAA4B,GACvC,OAAO,eAAe,CAAC,iBAAiB,EAAE,qBAAqB,CAAC,KAC/D,KAAK,IAAI,0BAEX,CAAC;AAEF,MAAM,MAAM,iBAAiB,GAAG,WAAW,GAAG,cAAc,CAAC;AAC7D,MAAM,MAAM,qBAAqB,GAC7B,0BAA0B,GAC1B,sBAAsB,CAAC;AAE3B,eAAO,MAAM,0BAA0B,WAC7B;IACN,kBAAkB,EAAE,eAAe,CACjC,iBAAiB,EACjB,qBAAqB,CACtB,CAAC;CACH;;CAiCF,CAAC;AA6JF,eAAO,MAAM,aAAa,WAChB;IACN,kBAAkB,EAAE,eAAe,CACjC,iBAAiB,EACjB,qBAAqB,CACtB,CAAC;IACF,sBAAsB,CAAC,EACnB,0BAA0B,GAC1B,8BAA8B,GAC9B,SAAS,CAAC;CACf;;CAqFF,CAAC"}
|
|
@@ -24,6 +24,8 @@ import { DataProductViewerState } from '../stores/DataProduct/DataProductViewerS
|
|
|
24
24
|
import { ProductWiki } from './ProductWiki.js';
|
|
25
25
|
import { DataProductDataAccessState } from '../stores/DataProduct/DataProductDataAccessState.js';
|
|
26
26
|
import { TerminalProductViewerState } from '../stores/TerminalProduct/TerminalProductViewerState.js';
|
|
27
|
+
import { getHumanReadableIngestEnvName } from '../utils/LakehouseUtils.js';
|
|
28
|
+
import { LakehouseDataProductOwnersTooltip } from './DataProduct/LakehouseDataProductOwnersTooltip.js';
|
|
27
29
|
export const isDataProductViewerState = (state) => {
|
|
28
30
|
return state instanceof DataProductViewerState;
|
|
29
31
|
};
|
|
@@ -49,7 +51,9 @@ export const TerminalNavigationSections = observer((props) => {
|
|
|
49
51
|
const DataProductEnvironmentLabel = observer((props) => {
|
|
50
52
|
const { dataAccessState } = props;
|
|
51
53
|
const environmentClassification = dataAccessState.entitlementsDataProductDetails.lakehouseEnvironment?.type;
|
|
54
|
+
const environmentName = dataAccessState.lakehouseIngestEnv?.environmentName;
|
|
52
55
|
const origin = dataAccessState.entitlementsDataProductDetails.origin;
|
|
56
|
+
const [isOwnersTooltipOpen, setIsOwnersTooltipOpen] = useState(false);
|
|
53
57
|
return (_jsxs("div", { className: "data-product__viewer__header__type", children: [origin instanceof V1_AdHocDeploymentDataProductOrigin && (_jsxs(Button, { className: clsx('data-product__viewer__header__type__sandbox', {
|
|
54
58
|
'data-product__viewer__header__type__sandbox--dev': environmentClassification ===
|
|
55
59
|
V1_EntitlementsLakehouseEnvironmentType.DEVELOPMENT,
|
|
@@ -62,7 +66,11 @@ const DataProductEnvironmentLabel = observer((props) => {
|
|
|
62
66
|
}, title: "View SDLC Project", className: clsx('data-product__viewer__header__type__version', {
|
|
63
67
|
'data-product__viewer__header__type__version--snapshot': isSnapshotVersion(origin.version),
|
|
64
68
|
'data-product__viewer__header__type__version--release': !isSnapshotVersion(origin.version),
|
|
65
|
-
}), children: ["Version: ", origin.version, _jsx(OpenIcon, {})] }))
|
|
69
|
+
}), children: ["Version: ", origin.version, _jsx(OpenIcon, {})] })), _jsx(LakehouseDataProductOwnersTooltip, { open: isOwnersTooltipOpen, setIsOpen: setIsOwnersTooltipOpen, owners: dataAccessState.dataProductOwners, fetchingOwnersState: dataAccessState.fetchingDataProductOwnersState, applicationStore: dataAccessState.applicationStore, userSearchService: dataAccessState.dataProductViewerState.userSearchService, children: _jsx("div", { children: _jsx(Button, { onClick: () => {
|
|
70
|
+
setIsOwnersTooltipOpen((val) => !val);
|
|
71
|
+
}, title: "Click to view owners", variant: "outlined", loading: dataAccessState.fetchingDataProductOwnersState
|
|
72
|
+
.isInInitialState ||
|
|
73
|
+
dataAccessState.fetchingDataProductOwnersState.isInProgress, children: `Lakehouse${environmentName ? ` - ${getHumanReadableIngestEnvName(environmentName, dataAccessState.applicationStore.pluginManager.getApplicationPlugins())}` : ''}` }) }) })] }));
|
|
66
74
|
});
|
|
67
75
|
const ProductHeader = observer((props) => {
|
|
68
76
|
const { productViewerState, dataAccessState, showFullHeader } = props;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ProductViewer.js","sourceRoot":"","sources":["../../src/components/ProductViewer.tsx"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;GAcG;AAEH,OAAO,EAAE,QAAQ,EAAE,MAAM,iBAAiB,CAAC;AAC3C,OAAO,EAAE,SAAS,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AACpD,OAAO,EAAE,WAAW,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AAChE,OAAO,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AACvC,OAAO,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAC;AAC/D,OAAO,EAGL,mCAAmC,EACnC,uCAAuC,EACvC,kCAAkC,GACnC,MAAM,qBAAqB,CAAC;AAM7B,OAAO,EAAE,sBAAsB,EAAE,MAAM,iDAAiD,CAAC;AACzF,OAAO,EAAE,WAAW,EAAE,MAAM,kBAAkB,CAAC;AAC/C,OAAO,EAAE,0BAA0B,EAAE,MAAM,qDAAqD,CAAC;AACjG,OAAO,EAAE,0BAA0B,EAAE,MAAM,yDAAyD,CAAC;
|
|
1
|
+
{"version":3,"file":"ProductViewer.js","sourceRoot":"","sources":["../../src/components/ProductViewer.tsx"],"names":[],"mappings":"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"}
|
package/lib/index.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/** @license @finos/legend-extension-dsl-data-product v0.0.
|
|
1
|
+
/** @license @finos/legend-extension-dsl-data-product v0.0.52
|
|
2
2
|
* Copyright (c) 2020-present, Goldman Sachs
|
|
3
3
|
*
|
|
4
4
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
@@ -14,4 +14,4 @@
|
|
|
14
14
|
* limitations under the License.
|
|
15
15
|
*/
|
|
16
16
|
|
|
17
|
-
.data-product__viewer{height:100%;width:100%;position:relative;font-family:Roboto,sans-serif;overflow:auto}.data-product__viewer__header{display:flex;justify-content:center;position:absolute;top:0;height:14rem;width:100%;z-index:1;background:rgba(0,0,0,0);transition:all .5s ease}.data-product__viewer__header--floating{background:var(--color-dark-grey-85);box-shadow:var(--color-dark-shade-280) 0 0 .5rem 0;z-index:10}.data-product__viewer__header__content{display:flex;flex-direction:row;width:min(140rem,80vw);min-width:80rem;max-width:140rem;padding:3rem 8rem 2rem;gap:1rem;align-items:center;justify-content:space-between}.data-product__viewer__header__content--expanded{width:80vw}.data-product__viewer__header__type{display:flex;align-items:center}.data-product__viewer__header__type button{display:flex;gap:.5rem}.data-product__viewer__header__type__sandbox{background:var(--color-white);color:var(--color-hclight-blue-60);border:1px solid var(--color-hclight-blue-60);cursor:default}.data-product__viewer__header__type__sandbox--dev{background:var(--tw-color-amber-100);color:var(--tw-color-amber-600);border:none}.data-product__viewer__header__type__sandbox--prod-parallel{background:var(--tw-color-blue-100);color:var(--tw-color-blue-600);border:none}.data-product__viewer__header__type__sandbox--prod{background:var(--tw-color-green-100);color:var(--tw-color-green-600);border:none}.data-product__viewer__header__type__version--snapshot{background:var(--tw-color-blue-100);color:var(--tw-color-blue-600)}.data-product__viewer__header__type__version--snapshot:hover{background:var(--tw-color-blue-200)}.data-product__viewer__header__type__version--release{background:var(--tw-color-green-100);color:var(--tw-color-green-600)}.data-product__viewer__header__type__version--release:hover{background:var(--tw-color-green-200)}.data-product__viewer__header__title{display:flex;align-items:center;justify-content:center;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;word-break:normal;overflow-wrap:anywhere;text-align:left;flex:1;min-width:0;max-width:50vw;font-size:3rem;align-self:start;justify-content:flex-start;height:5rem;font-weight:400;color:var(--color-hclight-blue-60);background:unset !important}.data-product__viewer__header__actions{display:flex;align-items:center;height:3.8rem;background:var(--color-dark-grey-200);border:.1rem solid var(--color-dark-grey-250);border-radius:.2rem;padding-left:.5rem}.data-product__viewer__header__execution-context-selector{width:20rem}.data-product__viewer__header__execution-context-selector__trigger{display:flex;align-items:center;height:100%}.data-product__viewer__header__execution-context-selector__trigger__icon{display:flex;align-items:center;justify-content:center;height:2.8rem;width:2.8rem;border-right:.1rem solid var(--color-dark-grey-280)}.data-product__viewer__header__execution-context-selector__trigger__icon svg{color:var(--color-dark-grey-300)}.data-product__viewer__header__execution-context-selector__trigger__label{white-space:nowrap;text-overflow:ellipsis;overflow:hidden;word-break:normal;overflow-wrap:anywhere;text-align:left;width:15rem;height:100%;line-height:3.8rem;padding:0 1rem;color:var(--color-light-grey-300)}.data-product__viewer__header__execution-context-selector__trigger__dropdown-icon{display:flex;align-items:center;justify-content:center;width:2.2rem;height:100%}.data-product__viewer__header__execution-context-selector__trigger__dropdown-icon svg{color:var(--color-dark-grey-300)}.data-product__viewer__header__execution-context-selector__option{width:17.2rem}.data-product__viewer__header__execution-context-selector__option--active{background:var(--color-dark-grey-250)}.data-product__viewer__body{display:flex;align-items:center;flex-direction:column;height:100%;width:100%;min-width:fit-content;overflow:auto}.data-product__viewer__frame{display:flex;width:100%;min-width:80rem;max-width:140rem;height:100%;padding:4rem;position:relative}.data-product__viewer__frame--expanded{width:80vw}.data-product__viewer__frame--boundless{height:initial}.data-product__viewer__content{display:flex;width:100%;padding:10rem 4rem 1rem;box-shadow:var(--color-dark-shade-280) 0 .1rem .5rem 0}.data-product__viewer__content__terminal__access-section{padding-top:30px}.data-product__viewer__content__terminal__access-section__heading{font-size:20px;font-weight:500}.data-product__viewer__content__terminal__access-section__container{gap:12px;padding-bottom:15px;display:flex;align-items:center;justify-content:flex-start}.data-product__viewer__content__terminal__access-section span{font-size:14px;color:#333;font-weight:bold}.data-product__viewer__content__terminal__access-section__user-edit-icon{width:20px;height:20px;cursor:pointer}.data-product__viewer__content__terminal__access-table{width:100%;overflow:hidden}.data-product__viewer__content__terminal__access-table--cell{padding:8px;border-top:1px solid #e0e0e0;vertical-align:middle;font-size:14px}.data-product__viewer__content__terminal__access-table--cell--entity{font-weight:500;color:var(--color-hclight-blue-50)}.data-product__viewer__content__terminal__access-table--cell--cost{font-weight:300}.data-product__viewer__content__terminal__access-table--cell--status{text-align:center}.data-product__viewer__content__terminal__access-table--row{background-color:#fff;border-bottom:1px solid #e5e7eb}.data-product__viewer__content__terminal__access-table--row:hover{background-color:#f9f9f9}.data-product__viewer__support-info__container{width:fit-content}.data-product__viewer__support-info__section{display:flex;align-items:center;gap:.5rem}.data-product__viewer__support-info__section__icon{display:flex;align-items:center;justify-content:center;width:3.5rem;height:3.5rem;border-radius:3.5rem;background:currentcolor;margin-right:.5rem}.data-product__viewer__support-info__section__icon svg{color:var(--color-white);font-size:2rem}.data-product__viewer__support-info__expertise{display:flex;flex-direction:column;gap:1rem}.data-product__viewer__support-info__link{display:flex;align-items:center;gap:.5rem}.product-header-tabs{position:absolute;right:200px;top:50%;transform:translateY(-50%);flex:0 0 auto;max-width:none;display:flex;justify-content:flex-end;align-items:center;z-index:10;padding-top:10px}.product-header-tabs__container{width:auto;display:flex;gap:1rem;justify-content:flex-end;align-items:center}.product-header-tabs__tab{background:none;border:none;padding:.5rem 0;font-size:1.3rem;font-weight:500;cursor:pointer;position:relative;color:var(--color-dark-grey-400);border-bottom:2px solid rgba(0,0,0,0);flex:1;text-align:center}.product-header-tabs__tab:hover{color:var(--color-hclight-blue-60)}.product-header-tabs__tab--active{color:var(--color-hclight-blue-60);border-bottom:2px solid var(--color-hclight-blue-60)}.product-header-tabs__tab:focus{outline:none}.data-product__viewer__panel{height:100%;width:100%;overflow:auto;padding:2rem 0}.data-product__viewer__panel__header{display:flex;align-items:center;border-bottom:.2rem solid var(--color-blue-100);user-select:none;color:var(--color-blue-100);margin-bottom:2rem}.data-product__viewer__panel__header__label{display:flex;align-items:center;font-size:2.4rem;text-transform:uppercase;font-weight:500}.data-product__viewer__panel__content__placeholder{line-height:2.8rem;color:var(--color-dark-grey-300);user-select:none;font-style:italic}.data-product__viewer__panel__content__placeholder svg{font-size:1rem;color:var(--color-blue-100)}.access_group_gap{margin-bottom:16px}.data-product__viewer__grid{height:30rem}.data-product__viewer__grid--auto-height{height:fit-content}.data-product__viewer__grid--auto-height--non-empty .ag-center-cols-viewport{min-height:unset}.data-product__viewer__grid--empty{display:flex;align-items:center;justify-content:center;padding:1rem 1.5rem;font-weight:500;border-radius:.5rem;background:var(--color-dark-grey-50);color:var(--color-dark-grey-300)}.data-product__viewer__grid__empty-cell{font-size:1.2rem}.data-product__viewer__grid__header-cell{display:flex;align-items:center;width:100%}.data-product__viewer__grid__header-cell__label{white-space:nowrap;text-overflow:ellipsis;overflow:hidden;word-break:normal;overflow-wrap:anywhere;text-align:left}.data-product__viewer__grid__last-column-header{--ag-header-column-separator-display: none}.data-product__viewer__grid.ag-theme-balham-dark{--ag-font-family: "Roboto";--ag-border-color: var(--color-dark-grey-200);--ag-background-color: var(--color-dark-grey-50);--ag-foreground-color: var(--color-light-grey-200);--ag-header-background-color: var(--color-dark-grey-100);--ag-header-foreground-color: var(--color-light-grey-50);--ag-balham-active-color: var(--color-blue-200);--ag-odd-row-background-color: var(--color-dark-grey-50);--ag-even-row-background-color: var(--color-dark-grey-50);--ag-row-hover-color: var(--color-dark-blue-shade-100);--ag-row-border-color: var(--color-dark-grey-200)}.data-product__viewer__grid .ag-header-cell-text{font-weight:700}.data-product__viewer__grid .ag-cell-value{word-break:normal;overflow-wrap:anywhere}.data-product__viewer__grid .ag-center-cols-viewport{background:repeating-linear-gradient(135deg, var(--color-dark-grey-50), var(--color-dark-grey-50) 0.5rem, var(--color-dark-grey-80) 0.5rem, var(--color-dark-grey-80) 1rem)}.data-product__viewer__grid ::-webkit-scrollbar-track-piece{background:rgba(0,0,0,0)}.data-product__viewer__scroller{display:flex;align-items:center;justify-content:center;position:absolute;flex-direction:column;z-index:10;bottom:2rem;right:3rem;width:3.4rem;height:4.8rem;background:var(--color-blue-200);border-radius:.2rem}.data-product__viewer__scroller__btn{display:flex;align-items:center;justify-content:center;height:3.4rem;width:3.4rem}.data-product__viewer__scroller__btn:focus{outline:none}.data-product__viewer__scroller__percentage{display:flex;align-items:center;justify-content:center;height:1.4rem;width:100%;font-size:.8rem;user-select:none;font-family:"Roboto Mono",monospace;background:var(--color-blue-300);color:var(--color-light-grey-50);border-radius:0 0 .2rem .2rem}.data-product__viewer__activity-bar{display:flex;flex-direction:column;width:5rem;position:absolute;left:2rem;top:11rem;z-index:10;overflow-x:hidden;overflow-y:hidden;border-radius:.2rem;background:var(--color-dark-grey-100);max-height:calc(100vh - 13rem)}.data-product__viewer__activity-bar ::-webkit-scrollbar{width:.3rem}.data-product__viewer__activity-bar__menu{height:3.4rem;border-bottom:.1rem solid var(--color-dark-grey-200)}.data-product__viewer__activity-bar__menu-item{display:flex;align-items:center;justify-content:center;height:3.4rem;width:100%;color:var(--color-dark-grey-400)}.data-product__viewer__activity-bar__menu-item svg{font-size:2.4rem}.data-product__viewer__activity-bar__items{overflow-y:auto;overflow-x:hidden;display:flex;flex-direction:column}.data-product__viewer__activity-bar__item{display:flex;align-items:center;justify-content:center;flex-grow:0;flex-shrink:0;height:5rem;width:5rem;color:var(--color-dark-grey-400);cursor:pointer;position:relative}.data-product__viewer__activity-bar__item svg{font-size:2.2rem}.data-product__viewer__activity-bar__item:hover{color:var(--color-light-grey-250);cursor:pointer}.data-product__viewer__activity-bar__item--active{color:var(--color-light-grey-250)}.data-product__viewer__activity-bar__divider{flex-grow:0;flex-shrink:0;border-radius:.1rem;height:.1rem;background:var(--color-dark-grey-300);margin:.5rem}.data-product__viewer__activity-bar__item .data-product__viewer__activity-bar__icon--home{font-size:2.8rem}.data-product__viewer__activity-bar__item .data-product__viewer__activity-bar__icon--launch{font-size:2.8rem}.data-product__viewer__activity-bar__item .data-product__viewer__activity-bar__icon--access{font-size:2.8rem}.data-product__viewer__activity-bar__item .data-product__viewer__activity-bar__icon--dataset{font-size:2.8rem}.data-product__viewer__activity-bar__item .data-product__viewer__activity-bar__icon--availability{font-size:3rem}.data-product__viewer__activity-bar__item .data-product__viewer__activity-bar__icon--readiness{font-size:2.8rem}.data-product__viewer__activity-bar__item .data-product__viewer__activity-bar__icon--cost{font-size:3rem}.data-product__viewer__activity-bar__item .data-product__viewer__activity-bar__icon--governance{font-size:2.8rem}.data-product__viewer__activity-bar__item .data-product__viewer__activity-bar__icon--info{font-size:2.4rem}.data-product__viewer__activity-bar__item .data-product__viewer__activity-bar__icon--support{font-size:2.4rem}.data-product__viewer__activity-bar__item__experimental-badge{display:flex;align-items:center;justify-content:center;position:absolute;top:.6rem;right:.6rem;height:1.6rem;width:1.6rem;border-radius:50%;background:var(--color-mauve-50);border:.1rem solid var(--color-dark-grey-100)}.data-product__viewer__activity-bar__item__experimental-badge svg{font-size:1.2rem;color:var(--color-dark-grey-100)}.data-product__viewer__wiki{display:flex;flex-direction:column;width:100%;min-height:55%}.data-product__viewer__wiki__section{flex-direction:column}.data-product__viewer__wiki__section__header{display:flex;align-items:center;justify-content:space-between;height:3rem;border-bottom:.2rem solid var(--color-blue-100);margin-bottom:2rem;margin-top:4rem;user-select:none;color:var(--color-blue-100)}.data-product__viewer__wiki__section__header__label,.data-product__viewer__wiki__section__header__subtitle{white-space:nowrap;text-overflow:ellipsis;overflow:hidden;word-break:normal;overflow-wrap:anywhere;text-align:left;display:flex;align-items:center;font-size:2.4rem;text-transform:uppercase;font-weight:500}.data-product__viewer__wiki__section__header__subtitle{font-size:1.8rem;color:var(--color-hclight-blue-60)}.data-product__viewer__wiki__section__header__anchor{display:flex;align-items:center;display:none;margin-left:.5rem;cursor:pointer}.data-product__viewer__wiki__section__header__anchor svg{color:var(--color-dark-grey-300)}.data-product__viewer__wiki__section__header__anchor:hover svg{color:var(--color-dark-grey-400)}.data-product__viewer__wiki__section__header:hover .data-product__viewer__wiki__section__header__anchor{display:inline-flex}.data-product__viewer__wiki__section__header__documentation{color:var(--color-blue-100)}.data-product__viewer__wiki__section__content{margin-bottom:3rem}.data-product__viewer__wiki__tags{display:flex;width:100%}.data-product__viewer__wiki__tags__chip{font-size:11px;border-radius:.5rem}.data-product__viewer__wiki__expertise{display:flex;flex-direction:column;gap:1rem;margin-bottom:.5rem}.data-product__viewer__wiki__expert-contact{display:flex}.data-product__viewer__wiki__expert-contact__icon{width:40px;height:40px}.data-product__viewer__wiki__expert-contact__info{display:flex;flex-direction:column;margin-left:1rem;justify-content:center}.data-product__viewer__wiki__expert-contact__info__id{font-weight:bold;color:var(--color-hclight-blue-60);display:flex;gap:.5rem;align-items:center}.data-product__viewer__wiki__expert-contact__info__subtitle{font-size:12px}.data-product__viewer__wiki__placeholder{display:flex;align-items:center;justify-content:center;justify-content:flex-start;width:100%;border-radius:.2rem;color:var(--color-dark-grey-300);user-select:none;height:auto;background:rgba(0,0,0,0);font-style:italic}.data-product__viewer__markdown-text-viewer{color:var(--color-light-grey-200)}.data-product__viewer__terminal__description-div{padding-top:2px}.data-product__viewer__wiki__terminal__section__pricing{height:3.5rem;width:fit-content;min-width:250px;border:1px solid var(--color-hclight-blue-60);color:var(--color-hclight-blue-60);margin-top:25px;padding:12px 24px;font-size:14px;transition:opacity .2s ease;display:flex;align-items:center;justify-content:center;cursor:pointer;margin-left:auto}.data-product__viewer__wiki__terminal__section__pricing:hover{opacity:.8}.data-product__viewer__description{display:flex;align-items:center;justify-content:center;height:100%;width:100%;padding-top:30px}.data-product__viewer__description__content{width:100%}.data-product__viewer__diagram-viewer{height:70rem}.data-product__viewer__diagram-viewer__header{display:flex;align-items:center;justify-content:space-between;height:3.8rem;width:100%}.data-product__viewer__diagram-viewer__header__navigation{display:flex;align-items:center}.data-product__viewer__diagram-viewer__header__navigation__selector{width:25rem}.data-product__viewer__diagram-viewer__header__navigation__selector__icon{width:1.6rem;font-size:1.2rem}.data-product__viewer__diagram-viewer__header__navigation__selector__label{display:flex;align-items:center}.data-product__viewer__diagram-viewer__header__navigation__selector__title{white-space:nowrap;width:calc(100% - 1.6rem);margin-left:1rem}.data-product__viewer__diagram-viewer__header__navigation__pager{display:flex;align-items:center;height:2.8rem;margin-left:.5rem;padding-left:.5rem;border-left:.1rem solid var(--color-dark-grey-280)}.data-product__viewer__diagram-viewer__header__navigation__pager__input{height:2.8rem;width:2.8rem}.data-product__viewer__diagram-viewer__header__navigation__pager__count{display:flex;align-items:center;height:2.8rem;font-family:"Roboto Mono",monospace;margin-left:.5rem;user-select:none}.data-product__viewer__diagram-viewer__header__actions{display:flex;align-items:center}.data-product__viewer__diagram-viewer__header__group{display:flex;align-items:center;height:100%;padding:0 .5rem}.data-product__viewer__diagram-viewer__header__group__separator{height:2.4rem;border:.05rem solid var(--color-dark-grey-280)}.data-product__viewer__diagram-viewer__header__group__action{width:2rem}.data-product__viewer__diagram-viewer__header__dropdown{display:flex;align-items:center;margin-left:.3rem;height:2.8rem;border:.1rem solid var(--color-dark-grey-300)}.data-product__viewer__diagram-viewer__header__dropdown__label{display:flex;align-items:center;justify-content:center;flex-grow:0;flex-shrink:0;height:100%;color:var(--color-dark-grey-500);font-weight:500;font-size:1.2rem}.data-product__viewer__diagram-viewer__header__dropdown__trigger{display:flex;align-items:center;justify-content:center;flex-grow:0;flex-shrink:0;height:100%;cursor:pointer}.data-product__viewer__diagram-viewer__header__dropdown__trigger svg{color:var(--color-dark-grey-500)}.data-product__viewer__diagram-viewer__header__tool{display:flex;align-items:center;justify-content:center;flex-grow:0;flex-shrink:0;height:2.8rem;width:2.8rem;border-radius:.2rem}.data-product__viewer__diagram-viewer__header__tool--active{border-radius:.2rem;background:var(--color-dark-grey-100);border:.1rem solid var(--color-blue-200)}.data-product__viewer__diagram-viewer__header__tool+.data-product__viewer__diagram-viewer__header__tool{margin-left:.3rem}.data-product__viewer__diagram-viewer__header__tool:hover svg{color:var(--color-light-grey-100)}.data-product__viewer__diagram-viewer__header__tool:hover[disabled] svg,.data-product__viewer__diagram-viewer__header__tool[disabled] svg{color:var(--color-dark-grey-400)}.data-product__viewer__diagram-viewer__header__tool svg{color:var(--color-light-grey-300)}.data-product__viewer__diagram-viewer__header__zoomer__dropdown__label{width:5rem}.data-product__viewer__diagram-viewer__header__zoomer__dropdown__trigger{width:2rem}.data-product__viewer__diagram-viewer__header__zoomer__dropdown__menu__item{display:flex;align-items:center;justify-content:center;width:7rem}.data-product__viewer__diagram-viewer__icon--recenter,.data-product__viewer__diagram-viewer__icon--description,.data-product__viewer__diagram-viewer__icon--layout,.data-product__viewer__diagram-viewer__icon--pan,.data-product__viewer__diagram-viewer__icon--zoom-in,.data-product__viewer__diagram-viewer__icon--zoom-out{font-size:1.8rem}.data-product__viewer__diagram-viewer__cursor--crosshair{cursor:crosshair}.data-product__viewer__diagram-viewer__cursor--pointer{cursor:pointer}.data-product__viewer__diagram-viewer__cursor--resize{cursor:nwse-resize}.data-product__viewer__diagram-viewer__cursor--zoom-in{cursor:zoom-in}.data-product__viewer__diagram-viewer__cursor--zoom-out{cursor:zoom-out}.data-product__viewer__diagram-viewer__cursor--grab{cursor:grab}.data-product__viewer__diagram-viewer__cursor--grabbing{cursor:grabbing}.data-product__viewer__diagram-viewer__cursor--not-allowed{cursor:not-allowed}.data-product__viewer__diagram-viewer__canvas{height:100%;width:100%;display:flex;position:relative}.data-product__viewer__diagram-viewer__description{position:absolute;z-index:2;height:10rem;width:100%;padding:2rem 1.5rem 2rem 2rem;background:var(--color-dark-shade-900);user-select:none}.data-product__viewer__diagram-viewer__description ::-webkit-scrollbar-thumb{background:var(--color-dark-grey-400);border:.2rem solid rgba(0,0,0,0);background-clip:content-box;border-radius:.4rem}.data-product__viewer__diagram-viewer__description--expanded{height:100%}.data-product__viewer__diagram-viewer__description__close-btn{position:absolute;top:1rem;right:1rem}.data-product__viewer__diagram-viewer__description__close-btn svg{color:var(--color-dark-grey-400);font-size:1.8rem}.data-product__viewer__diagram-viewer__description__close-btn:hover svg{color:var(--color-light-grey-400)}.data-product__viewer__diagram-viewer__description__expand-btn{position:absolute;bottom:.3rem;right:1.1rem}.data-product__viewer__diagram-viewer__description__expand-btn svg{color:var(--color-dark-grey-400);font-size:1.6rem}.data-product__viewer__diagram-viewer__description__expand-btn:hover svg{color:var(--color-light-grey-400)}.data-product__viewer__diagram-viewer__description__title{white-space:nowrap;text-overflow:ellipsis;overflow:hidden;word-break:normal;overflow-wrap:anywhere;text-align:left;font-size:2.4rem;font-weight:500;color:var(--color-light-grey-50);height:3rem}.data-product__viewer__diagram-viewer__description__content{height:calc(100% - 3rem);overflow:auto}.data-product__viewer__diagram-viewer__description__content .data-product__viewer__markdown-text-viewer{background:rgba(0,0,0,0);color:var(--color-light-grey-200);padding-top:.5rem}.data-product__viewer__diagram-viewer__description__content__placeholder{color:var(--color-dark-grey-400);font-style:italic}.data-product__viewer__diagram-viewer__carousel{display:flex;flex-direction:column;height:calc(100% - 3.8rem);width:100%}.data-product__viewer__diagram-viewer__carousel .diagram-canvas{border-radius:.2rem;border:.1rem solid var(--color-dark-grey-80)}.data-product__viewer__diagram-viewer__carousel__frame{height:100%;width:100%;display:flex;position:relative}.data-product__viewer__diagram-viewer__carousel__frame__display{height:100%;width:100%;display:flex;position:relative}.data-product__viewer__diagram-viewer__carousel__frame__navigator{display:flex;align-items:center;justify-content:center;height:100%;width:5rem;background:rgba(0,0,0,0);position:absolute;top:0}.data-product__viewer__diagram-viewer__carousel__frame__navigator--back{left:0}.data-product__viewer__diagram-viewer__carousel__frame__navigator--back:hover{background-image:linear-gradient(90deg, var(--color-dark-shade-50), transparent)}.data-product__viewer__diagram-viewer__carousel__frame__navigator--next{right:0}.data-product__viewer__diagram-viewer__carousel__frame__navigator--next:hover{background-image:linear-gradient(270deg, var(--color-dark-shade-50), transparent)}.data-product__viewer__diagram-viewer__carousel__frame__navigator svg{color:var(--color-dark-shade-800);font-size:2.6rem}.data-product__viewer__diagram-viewer__carousel__frame__navigator:hover{cursor:pointer}.data-product__viewer__diagram-viewer__carousel__frame__navigator:hover svg{color:var(--color-dark-shade-800)}.data-product__viewer__diagram-viewer__carousel__frame__navigator[disabled]{cursor:not-allowed}.data-product__viewer__diagram-viewer__carousel__frame__navigator[disabled]:hover{background:rgba(0,0,0,0)}.data-product__viewer__diagram-viewer__carousel__frame__navigator[disabled] svg,.data-product__viewer__diagram-viewer__carousel__frame__navigator[disabled]:hover svg{color:var(--color-dark-shade-200)}.data-product__viewer__diagram-viewer__carousel__frame__indicators{display:flex;align-items:center;justify-content:center;height:3rem;width:100%;position:absolute;bottom:0;background:rgba(0,0,0,0);color:var(--color-light-grey-400);padding:0 .5rem;user-select:none;cursor:default}.data-product__viewer__diagram-viewer__carousel__frame__indicators__notch{display:flex;align-items:center;justify-content:center;height:100%;background:var(--color-dark-shade-0);padding:0 3rem;border-radius:1rem 1rem 0 0}.data-product__viewer__diagram-viewer__carousel__frame__indicator{margin:0 .5rem}.data-product__viewer__diagram-viewer__carousel__frame__indicator svg{font-size:1.2rem;color:var(--color-dark-shade-50)}.data-product__viewer__diagram-viewer__carousel__frame__indicator--active svg{color:var(--color-blue-150)}.data-product__viewer__diagram-viewer__carousel__content{height:calc(100% - 5.4rem);width:100%}.data-product__viewer__diagram-viewer__carousel__dropdown{width:100%}.data-product__viewer__diagram-viewer__carousel__dropdown__container{padding:.3rem}.data-product__viewer__models-documentation__header{display:flex;align-items:center;width:100%;justify-content:space-between;height:3.8rem}.data-product__viewer__models-documentation__content{display:flex;flex-direction:row;height:50rem}.data-space__terminal__header__product-name{color:#1e88e5;font-weight:500;font-size:clamp(18px,4vw,27px)}.data-product__viewer__models-documentation__grid{width:100%}.data-product__viewer__models-documentation__grid--shrink{width:calc(100% - 25rem)}.data-product__viewer__models-documentation__grid ::-webkit-scrollbar{width:.6rem;height:.6rem}.data-product__viewer__models-documentation__grid ::-webkit-scrollbar-thumb{border:.2rem solid rgba(0,0,0,0);background-clip:content-box;border-radius:.3rem}.data-product__viewer__models-documentation__grid__cell{display:flex;align-items:center;width:100%;justify-content:space-between}.data-product__viewer__models-documentation__grid__cell__label{display:flex;align-items:center;width:calc(100% - 4rem)}.data-product__viewer__models-documentation__grid__cell__label__icon{display:flex;align-items:center;justify-content:center;flex-grow:0;flex-shrink:0;height:1.8rem;width:1.8rem;border-radius:.2rem;background:var(--color-dark-grey-100);color:var(--color-light-grey-200);font-size:1.2rem;font-family:"Roboto Mono",monospace;font-weight:900;margin-right:.5rem}.data-product__viewer__models-documentation__grid__cell__label__icon--class{background:var(--color-purple-400)}.data-product__viewer__models-documentation__grid__cell__label__icon--enumeration{background:var(--color-pink-300)}.data-product__viewer__models-documentation__grid__cell__label__icon--association{background:var(--color-green-200)}.data-product__viewer__models-documentation__grid__cell__label__icon--property{background:var(--color-blue-180)}.data-product__viewer__models-documentation__grid__cell__label__icon--enum{background:var(--color-orange-150)}.data-product__viewer__models-documentation__grid__cell__label__text{white-space:nowrap;text-overflow:ellipsis;overflow:hidden;word-break:normal;overflow-wrap:anywhere;text-align:left}.data-product__viewer__models-documentation__grid__cell__label__derived-property-badge{display:flex;align-items:center;justify-content:center;font-size:1.2rem;font-weight:600;font-family:"Roboto Mono",monospace;margin-left:.5rem;padding:0 .2rem;height:2rem;border-radius:.2rem;background:var(--color-dark-grey-100);color:var(--color-blue-100)}.data-product__viewer__models-documentation__grid__cell__label__milestoning-badge{display:flex;align-items:center;justify-content:center;flex-grow:0;flex-shrink:0;width:2rem;margin-right:1rem}.data-product__viewer__models-documentation__grid__cell__label__milestoning-badge svg{color:var(--color-blue-150);font-size:1.2rem}.data-product__viewer__models-documentation__grid__cell__actions{display:flex;align-items:center;width:4rem}.data-product__viewer__models-documentation__grid__cell__action{display:flex;align-items:center;justify-content:center;flex-grow:0;flex-shrink:0;color:var(--color-dark-grey-350);width:2rem;height:2rem}.data-product__viewer__models-documentation__grid__cell__action:hover{color:var(--color-light-grey-400)}.data-product__viewer__models-documentation__grid__cell__action__info{font-size:1.2rem}.data-product__viewer__models-documentation__grid__element-row{background:var(--color-yellow-200);color:var(--color-dark-grey-100);--ag-row-hover-color: var(--color-yellow-100)}.data-product__viewer__models-documentation__grid__element-row .data-product__viewer__models-documentation__grid__cell__action{color:var(--color-dark-shade-300)}.data-product__viewer__models-documentation__grid__element-row .data-product__viewer__models-documentation__grid__cell__action:hover{color:var(--color-dark-shade-800)}.data-product__viewer__models-documentation__filter__toggler{display:flex;align-items:center;flex-grow:0;flex-shrink:0;height:2.8rem;border:.1rem solid var(--color-dark-grey-280);color:var(--color-light-grey-200);margin-right:.5rem}.data-product__viewer__models-documentation__filter__toggler:hover{color:var(--color-light-grey-50)}.data-product__viewer__models-documentation__filter__toggler__arrow{display:flex;align-items:center;justify-content:center;width:1.2rem}.data-product__viewer__models-documentation__filter__toggler__arrow svg{font-size:1.2rem}.data-product__viewer__models-documentation__filter__toggler__icon{display:flex;align-items:center;justify-content:center;border-left:.1rem solid var(--color-dark-grey-280);width:2.8rem;height:2.8rem}.data-product__viewer__models-documentation__filter__toggler svg{font-size:1.2rem}.data-product__viewer__models-documentation__filter__panel{display:flex;flex-direction:column;width:25rem;margin-right:.5rem;border-radius:.2rem;background:var(--color-dark-grey-85);border:.1rem solid var(--color-dark-grey-200);color:var(--color-light-grey-50)}.data-product__viewer__models-documentation__filter__group{display:flex;flex-direction:column}.data-product__viewer__models-documentation__filter__group+.data-product__viewer__models-documentation__filter__group{border-top:.1rem solid var(--color-dark-grey-200)}.data-product__viewer__models-documentation__filter__group--by-type{height:13rem}.data-product__viewer__models-documentation__filter__group--by-package{height:calc(100% - 16.2rem)}.data-product__viewer__models-documentation__filter__group__header{display:flex;align-items:center;flex-grow:0;flex-shrink:0;justify-content:space-between;height:3.2rem;padding:0 1rem;user-select:none}.data-product__viewer__models-documentation__filter__group__header__label{white-space:nowrap;text-overflow:ellipsis;overflow:hidden;word-break:normal;overflow-wrap:anywhere;text-align:left;font-weight:500}.data-product__viewer__models-documentation__filter__group__header__actions{display:flex;align-items:center}.data-product__viewer__models-documentation__filter__group__header__reset{font-family:"Roboto Mono",monospace;font-size:1.1rem;color:var(--color-blue-150);margin-left:.5rem}.data-product__viewer__models-documentation__filter__group__header__reset:hover{color:var(--color-blue-100)}.data-product__viewer__models-documentation__filter__group__header__reset[disabled],.data-product__viewer__models-documentation__filter__group__header__reset[disabled]:hover{color:var(--color-dark-grey-350)}.data-product__viewer__models-documentation__filter__group__content{padding:.5rem;padding-top:0;overflow-y:auto}.data-product__viewer__models-documentation__filter__tree{height:100%;width:100%;display:flex;flex-direction:column}.data-product__viewer__models-documentation__filter__tree__node__container{display:flex;width:100%;height:2.2rem}.data-product__viewer__models-documentation__filter__tree__node__container:hover{background:var(--color-dark-blue-shade-100)}.data-product__viewer__models-documentation__filter__tree__node__content{display:flex;align-items:center;height:100%;width:calc(100% - 3.3rem)}.data-product__viewer__models-documentation__filter__tree__node__type-icon{display:flex;align-items:center;justify-content:center;flex-grow:0;flex-shrink:0;height:1.4rem;width:1.4rem;border-radius:.2rem;color:var(--color-light-grey-200);font-size:1rem;font-family:"Roboto Mono",monospace;font-weight:700;user-select:none;margin-left:.5rem}.data-product__viewer__models-documentation__filter__tree__node__type-icon--class{background:var(--color-purple-400)}.data-product__viewer__models-documentation__filter__tree__node__type-icon--enumeration{background:var(--color-pink-300)}.data-product__viewer__models-documentation__filter__tree__node__type-icon--association{background:var(--color-green-200)}.data-product__viewer__models-documentation__filter__tree__node__type-icon--package{color:var(--color-dark-grey-400)}.data-product__viewer__models-documentation__filter__tree__node__checker{display:flex;align-items:center;justify-content:center;flex-grow:0;flex-shrink:0;width:1.4rem;height:100%}.data-product__viewer__models-documentation__filter__tree__node__checker svg{color:var(--color-dark-grey-500);font-size:1.2rem}.data-product__viewer__models-documentation__filter__tree__node__checker:hover svg{color:var(--color-light-grey-300)}.data-product__viewer__models-documentation__filter__tree__node__expand-icon{display:flex;align-items:center;justify-content:center;flex-grow:0;flex-shrink:0;width:1.4rem;height:100%}.data-product__viewer__models-documentation__filter__tree__node__expand-icon svg{color:var(--color-light-grey-400);font-size:1.2rem}.data-product__viewer__models-documentation__filter__tree__node__label{font-size:1.2rem;color:var(--color-light-grey-400);user-select:none;margin-left:.5rem}.data-product__viewer__models-documentation__filter__tree__node__count{display:flex;align-items:center;justify-content:center;font-family:"Roboto Mono",monospace;margin-left:.5rem;height:1.4rem;background:var(--color-dark-grey-200);color:var(--color-dark-grey-500);padding:0 .3rem;border-radius:.2rem;font-size:.8rem;font-weight:700}.data-product__viewer__models-documentation__search{position:relative}.data-product__viewer__models-documentation__search__input{font-size:1.3rem;height:2.8rem;padding-right:5.6rem;padding-left:1rem;width:25rem;background:var(--color-dark-grey-85);border-radius:.2rem;border:.1rem solid var(--color-dark-grey-200)}.data-product__viewer__models-documentation__search__input__search__icon{display:flex;align-items:center;justify-content:center;position:absolute;top:0;right:.3rem;height:2.8rem;width:2.8rem}.data-product__viewer__models-documentation__search__input__search__icon svg{color:var(--color-light-shade-100)}.data-product__viewer__models-documentation__search__input__clear-btn{display:flex;align-items:center;justify-content:center;position:absolute;top:0;right:.3rem;height:2.8rem;width:2.8rem}.data-product__viewer__models-documentation__search__input__clear-btn svg{color:var(--color-dark-grey-400)}.data-product__viewer__models-documentation__search__input__clear-btn:hover svg{color:var(--color-dark-grey-500)}.data-product__viewer__models-documentation__search__input__config__trigger{display:flex;align-items:center;justify-content:center;position:absolute;top:0;right:3.1rem;height:2.8rem;width:1.8rem;cursor:pointer}.data-product__viewer__models-documentation__search__input__config__trigger svg{color:var(--color-dark-grey-400)}.data-product__viewer__models-documentation__search__input__config__trigger--toggled svg,.data-product__viewer__models-documentation__search__input__config__trigger:hover svg{color:var(--color-dark-grey-500)}.data-product__viewer__models-documentation__search__input__config__trigger--active svg,.data-product__viewer__models-documentation__search__input__config__trigger--active:hover svg{color:var(--color-blue-150)}.data-space__divider{border:#e0e0e0;height:1px;margin:2px 0 10px;background-color:#e0e0e0}.data-product__viewer__access-group__item{margin:3rem 0}.data-product__viewer__access-group__item__header{display:flex;align-items:center;justify-content:space-between;height:3rem;margin-bottom:1rem}.data-product__viewer__access-group__item__header-main{display:flex;align-items:center}.data-product__viewer__access-group__item__header__collapsible-content{animation:slideDown .2s ease-out}.data-product__viewer__access-group__item__header__caret{margin-left:.5rem;font-size:2rem;transition:transform .2s ease;transform:rotate(-180deg)}.data-product__viewer__access-group__item__header__caret--collapsed{transform:rotate(0deg)}.data-product__viewer__access-group__item__header__title{white-space:nowrap;text-overflow:ellipsis;overflow:hidden;word-break:normal;overflow-wrap:anywhere;text-align:left;color:var(--color-light-grey-400);font-size:2rem;font-weight:500}.data-product__viewer__access-group__item__header__type{display:flex;align-items:center;height:2rem;padding:0 .5rem;border-radius:.5rem;background:var(--color-dark-grey-500);color:var(--color-white);user-select:none;margin-left:.5rem;font-size:1.2rem;font-weight:700}.data-product__viewer__access-group__item__header__anchor{display:flex;align-items:center;margin-left:.5rem;cursor:pointer;display:none}.data-product__viewer__access-group__item__header__anchor svg{color:var(--color-dark-grey-300)}.data-product__viewer__access-group__item__header__anchor:hover svg{color:var(--color-dark-grey-400)}.data-product__viewer__access-group__item__header__actions{display:flex;align-items:center;gap:1rem}.data-product__viewer__access-group__item__header:hover .data-product__viewer__access-group__item__header__anchor{display:inline-flex}.data-product__viewer__access-group__item__description{margin-bottom:1rem}.data-product__viewer__access-group__item__content{display:flex;flex-direction:column;margin-top:1rem}.data-product__viewer__access-group__item__content__tab__header{display:flex;align-items:center;justify-content:space-between;height:3.8rem;border-bottom:.1rem solid var(--color-dark-grey-280);border-top:.1rem solid var(--color-dark-grey-280)}.data-product__viewer__access-group__item__content__tabs{display:flex;align-items:center;width:calc(100% - 19rem);overflow-x:auto}.data-product__viewer__access-group__item__content__tab{display:flex;align-items:center;padding:0 1rem;color:var(--color-dark-grey-300);user-select:none}.data-product__viewer__access-group__item__content__tab+.data-product__viewer__access-group__item__content__tab{border-left:.1rem solid var(--color-dark-grey-280)}.data-product__viewer__access-group__item__content__tab__label{white-space:nowrap;font-weight:500}.data-product__viewer__access-group__item__content__tab__icon--query{font-size:1.6rem}.data-product__viewer__access-group__item__content__tab__icon+.data-product__viewer__access-group__item__content__tab__label{margin-left:.5rem}.data-product__viewer__access-group__item__content__tab:hover .data-product__viewer__access-group__item__content__tab__label{color:var(--color-dark-grey-400)}.data-product__viewer__access-group__item__content__tab:hover .data-product__viewer__access-group__item__content__tab__icon svg{color:var(--color-dark-grey-400)}.data-product__viewer__access-group__item__content__tab--active:hover .data-product__viewer__access-group__item__content__tab__label,.data-product__viewer__access-group__item__content__tab--active .data-product__viewer__access-group__item__content__tab__label{color:var(--color-blue-200);font-weight:500}.data-product__viewer__access-group__item__content__tab--active:hover .data-product__viewer__access-group__item__content__tab__icon svg,.data-product__viewer__access-group__item__content__tab--active .data-product__viewer__access-group__item__content__tab__icon svg{color:var(--color-blue-200)}.data-product__viewer__access-group__item__content__tab__content{margin-top:1rem;height:fit-content}.data-product__viewer__access-group__item__content__action-tab-group{display:flex;width:19rem;border-left:.1rem solid var(--color-dark-grey-280)}.data-product__viewer__access-group__item__access__tooltip__icon{font-size:1.6rem;margin-left:.5rem}.data-product__viewer__access-group__tds__column-specs{height:100%}.data-product__viewer__access-group__tds__query{display:flex;align-items:center;justify-content:center;height:100%;border:.1rem solid var(--color-dark-grey-200)}.data-product__viewer__access-group__tds__query__actions{display:flex;flex-direction:column}.data-product__viewer__access-group__tds__query__action{display:flex;align-items:center;justify-content:center;height:2.8rem;width:25rem;border-radius:.2rem}.data-product__viewer__access-group__tds__query__action+.data-product__viewer__access-group__tds__query__action{margin-top:.5rem}.data-product__viewer__access-group__tds__placeholder-panel{height:100%;width:100%;border:.1rem solid var(--color-dark-grey-200)}.data-product__viewer__access-group__tds__query-text{display:flex;flex-direction:column;height:100%}.data-product__viewer__access-group__tds__query-text__content{height:calc(100% - 3.8rem);position:relative}.data-product__viewer__access-group__tds__query-text__actions{display:flex;align-items:center;justify-content:flex-end;height:3.8rem}.data-product__viewer__access-group__tds__query-text__action{display:flex;align-items:center;justify-content:center;height:2.8rem;width:2.8rem}.data-product__viewer__access-group__tds__query-text__action svg{color:var(--color-dark-grey-500)}.data-product__viewer__access-group__tds__query-text__action:hover svg{color:var(--color-light-grey-400)}.sql-playground-overlay{display:flex;flex-direction:row;align-items:center;justify-content:center;padding:1rem;height:100%}.sql-playground-modal-header{position:relative}.sql-playground-modal-header-actions{position:absolute;right:1rem;top:50%;transform:translateY(-50%);display:flex;gap:1rem}.sql-playground-modal__action{display:flex;align-items:center;justify-content:center;font-size:large}.sql-editor-modal{padding:0;height:100%;width:100%;overflow:hidden}.sql-editor-modal__root-container{margin-top:0 !important}.sql-editor-modal__header{display:flex;align-items:center;justify-content:space-between;height:3.4rem;padding:2rem 3rem}.sql-editor-modal__container{align-items:center !important}.sql-editor-modal__content{max-width:100vw !important}.sql-editor-modal__content--scrollable{max-width:100vw !important}.sql-editor-modal__paper{padding:0;overflow:hidden;display:flex;flex-direction:column}.sql-editor-modal__paper--windowed{width:80vw;height:80vh;border-radius:1rem}.sql-editor-modal__paper--maximized{width:100vw !important;height:100vw !important;max-width:100vw !important;max-height:100vh !important;border-radius:1rem}.sql-editor-modal .modal__body{height:calc(100% - 8.6rem);padding:0}.sql-editor-modal .modal__body.modal__body--footless{height:calc(100% - 3.6rem)}.data-product__viewer__tab-screen{display:flex;flex-direction:row;align-items:center;justify-content:center;height:30rem}.data-product__viewer__tab-screen .message-text{color:var(--color-light-grey-400)}.data-product__viewer__tab-screen__dropdown{width:20%}.data-product__viewer__tab-screen__btn{background-color:var(--color-blue-100);height:28px;color:var(--color-white);padding:4px 10px;border:2px;margin-left:10px;border-radius:5px;font-size:12px}.data-product__viewer__tab-screen__btn_with_icon{background-color:var(--color-dark-grey-300);height:28px;color:var(--color-white);padding:4px 10px;border:2px;margin-left:10px;border-radius:5px;font-size:12px;display:inline-flex;align-items:center;justify-content:center;gap:.5rem}.data-product__viewer__tab-screen__btn-label{flex:1;text-align:center}.data-product__viewer__tab-screen__icon{display:inline-flex}.data-product__viewer__tabs-bar{border-top:.06rem solid var(--color-light-grey-400);background:var(--color-white);width:100%}.data-product__viewer__tabs{border-bottom:.06rem solid var(--color-light-grey-400);min-height:3rem;background:var(--color-white)}.data-product__viewer__tabs .MuiTabs-indicator{display:none}.data-product__viewer__tab-code{display:flex;flex-direction:column;height:100%;width:100%}.data-product__viewer__tab-code__content{height:calc(100% - 3.8rem);border:.1rem solid var(--color-dark-grey-200);position:relative}.data-product__viewer__tab-code__actions{display:flex;align-items:center;justify-content:flex-end;gap:.5rem;min-height:3.8rem}@keyframes slideDown{from{opacity:0;max-height:0}to{opacity:1;max-height:100%}}.data-product__viewer__tab{min-height:3rem;padding:0 1rem;border-right:1px solid var(--color-light-grey-400);text-transform:none;background:rgba(0,0,0,0);font-size:.8rem;font-weight:600;color:#6c757d;display:flex;align-items:center;gap:.3rem}.data-product__viewer__tab span{font-size:1.2rem;font-weight:600}.data-product__viewer__tab:last-child{border-right:none}.data-product__viewer__tab--selected{color:var(--color-light-blue-400);font-weight:600}.label-container{display:flex;align-items:center;gap:.3rem}.data-product__viewer__tab-icon{font-size:1.2rem;vertical-align:middle;color:var(--color-light-grey-350)}.data-product__viewer__tab-icon--selected{font-size:1.2rem;vertical-align:middle;color:var(--color-light-blue-200)}.data-product__viewer__execution-context__context-icon{color:var(--color-lime-75)}.data-product__viewer__execution-context__entry{display:flex;align-items:center;height:3.4rem;width:100%}.data-product__viewer__execution-context__entry__icon{display:flex;align-items:center;justify-content:center;height:3.4rem;width:3.4rem;border-radius:.2rem 0 0 .2rem;background:var(--color-dark-grey-100)}.data-product__viewer__execution-context__entry__icon svg{font-size:1.6rem;color:var(--color-light-grey-200)}.data-product__viewer__execution-context__entry__content{display:flex;align-items:center;height:3.4rem;width:calc(100% - 3.4rem);border-radius:0 .2rem .2rem 0;border:.1rem solid var(--color-dark-grey-100);color:var(--color-light-grey-400);padding:0 1rem;background:var(--color-dark-grey-100);border-left:.1rem solid var(--color-dark-grey-50);user-select:none}.data-product__viewer__execution-context__entry__content__dropdown{width:100%}.data-product__viewer__execution-context__entry__content__dropdown__container{padding:.3rem}.data-product__viewer__execution-context__entry__content__dropdown__option{display:flex;align-items:center}.data-product__viewer__execution-context__entry__content__dropdown__option__tag{display:flex;align-items:center;background:var(--color-blue-200);height:1.8rem;padding:0 .5rem;margin-left:.5rem;border-radius:.2rem;font-size:1.2rem;color:var(--color-light-grey-100)}.data-product__viewer__execution-context__entry__content .selector-input--dark__control,.data-product__viewer__execution-context__entry__content .selector-input--dark__control:hover{border-color:var(--color-dark-grey-200)}.data-product__viewer__execution-context__entry__content__text{font-family:"Roboto Mono",monospace}.data-product__viewer__execution-context__entry+.data-product__viewer__execution-context__entry{margin-top:.5rem}.data-product__viewer__execution-context__mapping{margin-bottom:2rem}.data-product__viewer__info__project-info__label{white-space:nowrap;text-overflow:ellipsis;overflow:hidden;word-break:normal;overflow-wrap:anywhere;text-align:left;height:100%;width:15rem;min-width:15rem;border-radius:.2rem 0 0 .2rem;padding:0 1rem;line-height:2.8rem;background:var(--color-blue-100);color:var(--color-dark-grey-100);font-weight:500}.data-product__viewer__info__project-info__value{white-space:nowrap;text-overflow:ellipsis;overflow:hidden;word-break:normal;overflow-wrap:anywhere;text-align:left;height:100%;width:calc(100% - 17.8rem);padding:0 1rem;background:var(--color-dark-grey-100);font-weight:500;color:var(--color-blue-50);font-family:"Roboto Mono",monospace}.data-product__viewer__info__project-info__link{display:flex;align-items:center;justify-content:center;height:100%;width:2.8rem;background:var(--color-dark-grey-100);color:var(--color-light-shade-100);border-radius:0 .2rem .2rem 0;border-left:.1rem solid var(--color-dark-shade-250)}.data-product__viewer__info__project-info__link svg{font-size:1.2rem}.data-product__viewer__info__section{cursor:default;margin:.5rem 0 3rem}.data-product__viewer__info__section__title{display:flex;align-items:center;font-weight:500;color:var(--color-dark-grey-500);margin-bottom:1rem;line-height:2rem;cursor:default}.data-product__viewer__info__section__entry{display:flex;align-items:center;height:2.8rem;margin:.5rem 0;width:100%}.data-product__viewer__info__tagged-value__tag{white-space:nowrap;text-overflow:ellipsis;overflow:hidden;word-break:normal;overflow-wrap:anywhere;text-align:left;height:100%;width:15rem;min-width:15rem;border-radius:.2rem 0 0 .2rem;padding:0 1rem;line-height:2.8rem;background:var(--color-purple-400);color:var(--color-light-grey-400);font-weight:500}.data-product__viewer__info__tagged-value__value{white-space:nowrap;text-overflow:ellipsis;overflow:hidden;word-break:normal;overflow-wrap:anywhere;text-align:left;height:100%;width:calc(100% - 15rem);border-radius:0 .2rem .2rem 0;padding:0 1rem;line-height:2.8rem;background:var(--color-dark-grey-100);color:var(--color-light-grey-400)}.data-product__viewer__info__steoreotype{display:flex;align-items:center;height:100%;border-radius:.2rem;padding:0 1rem;line-height:2.8rem;background:var(--color-purple-400);color:var(--color-light-grey-400);font-weight:500}.data-product__viewer__info__section__placeholder{display:flex;align-items:center;justify-content:center;height:4rem;width:100%;color:var(--color-dark-grey-300);font-weight:500;border:.2rem dashed var(--color-dark-grey-200)}.data-product__viewer__support__section+.data-product__viewer__support__section{margin-top:2rem}.data-product__viewer__support__entry{display:flex;align-items:center;height:3.4rem;width:100%}.data-product__viewer__support__entry__icon{display:flex;align-items:center;justify-content:center;height:3.4rem;width:3.4rem;border-radius:.2rem 0 0 .2rem;background:var(--color-dark-grey-100)}.data-product__viewer__support__entry__icon svg{font-size:1.6rem;color:var(--color-light-grey-200)}.data-product__viewer__support__entry__icon--website svg{font-size:2rem}.data-product__viewer__support__entry__icon--support svg,.data-product__viewer__support__entry__icon--faq svg{font-size:1.8rem}.data-product__viewer__support__entry__content{display:flex;align-items:center;height:3.4rem;width:calc(100% - 3.4rem);border-radius:0 .2rem .2rem 0;border:.1rem solid var(--color-dark-grey-100);color:var(--color-light-grey-400);padding:0 1rem;font-family:"Roboto Mono",monospace;background:var(--color-dark-grey-100);border-left:.1rem solid var(--color-dark-grey-50);user-select:none}.data-product__viewer__support__entry+.data-product__viewer__support__entry{margin-top:.5rem}.data-product__viewer__tooltip{border-radius:.2rem !important;background:var(--color-dark-grey-200) !important;opacity:.9 !important;transition:none;max-height:30rem;overflow:auto;margin-top:.5rem !important}.data-product__viewer__tooltip--right{margin:0 .5rem !important}.data-product__viewer__tooltip__content{padding:.5rem}.data-product__viewer__tooltip__item{display:flex;line-height:1.6rem}.data-product__viewer__tooltip__item__label{font-size:1.3rem;user-select:none;cursor:default;color:var(--color-dark-grey-500)}.data-product__viewer__tooltip__item__value{font-size:1.3rem;user-select:none;cursor:default;font-weight:500;margin-left:.5rem;max-width:50rem;white-space:pre-line}.data-product__viewer__more-info__container{width:100%;height:calc(100% - 3.8rem);border:.1rem solid var(--color-dark-grey-200);position:relative}.data-product__viewer__more-info__loading-indicator{height:10rem}.data-product__viewer__more-info__columns-grid{height:300px}.data-product__viewer__more-info__columns-grid--auto-height{height:fit-content}.data-product__viewer__more-info__columns-grid--auto-height--empty .ag-root-wrapper-body{height:10rem}.data-product__viewer__more-info__columns-grid--auto-height--non-empty .ag-center-cols-viewport{min-height:unset}.data-product__viewer__more-info__grammar{height:300px}.data-product__viewer__sample-queries__content{display:flex;flex-direction:column;gap:1rem}.data-product__viewer__sample-query__item{border:.1rem solid var(--color-light-grey-200);border-radius:.2rem;background:var(--color-white);margin-bottom:1rem}.data-product__viewer__sample-query__item__header{display:flex;align-items:center;width:100%;cursor:pointer;padding:1rem;background:rgba(0,0,0,0);border:none;text-align:left;color:inherit;gap:1rem}.data-product__viewer__sample-query__item__header:hover{background:var(--color-light-grey-100)}.data-product__viewer__sample-query__item__header__icon{display:flex;align-items:center;justify-content:center;width:2rem;height:2rem;flex-shrink:0}.data-product__viewer__sample-query__item__header__icon svg{font-size:1.8rem;color:var(--color-dark-grey-400)}.data-product__viewer__sample-query__item__header__content{flex:1;overflow:hidden}.data-product__viewer__sample-query__item__header__title{font-weight:500;font-size:1.4rem;color:var(--color-dark-grey-500)}.data-product__viewer__sample-query__item__header__description{font-size:1.2rem;color:var(--color-dark-grey-400);margin-top:.3rem}.data-product__viewer__sample-query__item__content{padding:0 1rem 1rem 4rem}.data-product__viewer__sample-query__item__content__query{height:20rem;border:.1rem solid var(--color-light-grey-200);border-radius:.2rem;overflow:hidden}.data-product__viewer__sample-query__item__content__info{font-size:1.2rem;color:var(--color-dark-grey-400);padding:1rem;font-family:"Roboto Mono",monospace}.data-product__viewer__access-point__info{display:flex;justify-content:space-between;gap:.5rem}.data-product__viewer__access-point__details{display:block}.data-product__viewer__access-point__tags{display:flex;gap:.5rem;align-items:center}:root{--color-legacylight-light-grey-100: #edf0f1;--color-legacylight-light-grey-200: #dce2e4;--color-legacylight-light-grey-300: #b5bec4;--color-legacylight-light-grey-400: #95a0a8;--color-legacylight-dark-grey-200: #29323a;--color-legacylight-dark-grey-400: #4e5364;--color-legacylight-light-blue-50: #def3ff;--color-legacylight-light-blue-100: #7399c6;--color-legacylight-light-blue-200: #6a8db6;--color-legacylight-light-blue-250: #687b93;--color-legacylight-light-blue-270: #597089;--color-legacylight-light-blue-300: #4d6f9c;--color-legacylight-light-blue-350: #475b72;--color-legacylight-light-blue-400: #1b4c8c;--color-legacylight-light-blue-600: #2d3d51;--color-legacylight-green-100: #5cb65c;--color-legacylight-orange-100: #f68f1e;--color-legacylight-orange-150: #ea8212;--color-hclight-white: #fff;--color-hclight-black: #000;--color-hclight-grey-5: #fbfbfb;--color-hclight-grey-10: #f2f5f7;--color-hclight-grey-15: #e1e7ea;--color-hclight-grey-20: #dce3e8;--color-hclight-grey-30: #c1ccd6;--color-hclight-grey-40: #9fb1bd;--color-hclight-grey-50: #7a909e;--color-hclight-grey-60: #5b7282;--color-hclight-grey-70: #3e5463;--color-hclight-grey-80: #2a3f4d;--color-hclight-grey-90: #1c2b36;--color-hclight-grey-shade-10: #00000014;--color-hclight-grey-shade-30: #00000045;--color-hclight-grey-shade-40: #00000061;--color-hclight-grey-shade-50: #0000008a;--color-hclight-grey-shade-60: #0000009c;--color-hclight-ultramarine-90: #23254d;--color-hclight-aqua-10: #ebf3f7;--color-hclight-aqua-20: #c9e7f5;--color-hclight-aqua-30: #8bd3f7;--color-hclight-aqua-90: #0c2b45;--color-hclight-blue-10: #f0f4fa;--color-hclight-blue-20: #d4e4fa;--color-hclight-blue-30: #adccf7;--color-hclight-blue-50: #3d8df5;--color-hclight-blue-60: #186ade;--color-hclight-blue-70: #0d4ea6;--color-hclight-blue-80: #103a75;--color-hclight-blue-90: #11294d;--color-hclight-blue-shade-10: #3e8df512;--color-hclight-green-40: #43c478;--color-hclight-green-50: #16a163;--color-hclight-green-60: #077d55;--color-hclight-lime-30: #aad971;--color-hclight-lime-40: #78bf39;--color-hclight-lime-50: #52a31d;--color-hclight-yellow-5: #fff9e3;--color-hclight-yellow-10: #faf6cf;--color-hclight-yellow-15: #fff5d0;--color-hclight-yellow-20: #f7e379;--color-hclight-yellow-30: #f5c518;--color-hclight-orange-40: #fc9162;--color-hclight-orange-50: #e86427;--color-hclight-red-50: #fa5343;--color-hclight-red-60: #d91f11;--color-hclight-pink-40: #fa87d4;--color-hclight-pink-50: #ed4cb7;--color-hclight-pink-60: #cc1d92;--color-hclight-purple-50: #ac71f0;--color-hclight-purple-60: #8f49de}.theme__hc-light .data-product__viewer{background:var(--color-hclight-white);color:var(--color-hclight-grey-90)}.theme__hc-light .data-product__viewer__header--floating{background:var(--color-hclight-white)}.theme__hc-light .data-product__viewer__header__title{background:var(--color-hclight-blue-60)}.theme__hc-light .data-product__viewer__header__title__label{color:var(--color-hclight-white)}.theme__hc-light .data-product__viewer__header__title__verified-badge{color:var(--color-hclight-white)}.theme__hc-light .data-product__viewer__header__actions{background:var(--color-hclight-white);border-color:var(--color-hclight-blue-50)}.theme__hc-light .data-product__viewer__header__execution-context-selector__trigger__icon{border-right-color:var(--color-hclight-blue-20)}.theme__hc-light .data-product__viewer__header__execution-context-selector__trigger__icon svg{color:var(--color-hclight-blue-50)}.theme__hc-light .data-product__viewer__header__execution-context-selector__trigger__label{color:var(--color-hclight-blue-50)}.theme__hc-light .data-product__viewer__header__execution-context-selector__trigger__dropdown-icon svg{color:var(--color-hclight-blue-30)}.theme__hc-light .data-product__viewer__header__execution-context-selector__option--active{background:var(--color-hclight-blue-20)}.theme__hc-light .data-product__viewer__header__actions-selector{border-left-color:var(--color-hclight-blue-50)}.theme__hc-light .data-product__viewer__header__actions-selector svg{color:var(--color-hclight-blue-50)}.theme__hc-light .data-product__viewer__header__actions-selector:hover svg{color:var(--color-hclight-blue-60)}.theme__hc-light .data-product__viewer__frame{background:var(--color-hclight-grey-10)}.theme__hc-light .data-product__viewer__content{background:var(--color-hclight-white)}.theme__hc-light .data-product__viewer__grid{--ag-border-color: var(--color-hclight-grey-30);--ag-background-color: var(--color-hclight-white);--ag-foreground-color: var(--color-hclight-grey-90);--ag-header-background-color: var(--color-hclight-grey-10);--ag-header-foreground-color: var(--color-hclight-grey-90);--ag-balham-active-color: transparent;--ag-odd-row-background-color: var(--color-hclight-white);--ag-even-row-background-color: var(--color-hclight-white);--ag-row-hover-color: var(--color-hclight-grey-5);--ag-row-border-color: var(--color-hclight-grey-30)}.theme__hc-light .data-product__viewer__grid--empty{background:var(--color-hclight-white);color:var(--color-hclight-grey-60)}.theme__hc-light .data-product__viewer__grid__empty-cell{color:var(--color-hclight-grey-30)}.theme__hc-light .data-product__viewer__grid .ag-center-cols-viewport{background:repeating-linear-gradient(135deg, var(--color-hclight-white), var(--color-hclight-white) 0.5rem, var(--color-hclight-grey-5) 0.5rem, var(--color-hclight-grey-5) 1rem)}.theme__hc-light .data-product__viewer__grid ::-webkit-scrollbar-thumb{background:var(--color-hclight-grey-15);border:.1rem solid rgba(0,0,0,0);background-clip:content-box;border-radius:.4rem}.theme__hc-light .data-product__viewer__grid ::-webkit-scrollbar-track-piece{background:rgba(0,0,0,0)}.theme__hc-light .data-product__viewer__scroller{background:var(--color-hclight-blue-60)}.theme__hc-light .data-product__viewer__scroller__btn:focus{outline:none}.theme__hc-light .data-product__viewer__scroller__percentage{background:var(--color-hclight-blue-70);color:var(--color-hclight-white)}.theme__hc-light .data-product__viewer__activity-bar{background:var(--color-hclight-grey-20)}.theme__hc-light .data-product__viewer__activity-bar ::-webkit-scrollbar-thumb{background:var(--color-hclight-grey-30)}.theme__hc-light .data-product__viewer__activity-bar ::-webkit-scrollbar-track-piece{background:rgba(0,0,0,0)}.theme__hc-light .data-product__viewer__activity-bar__menu{border-color:var(--color-hclight-grey-30)}.theme__hc-light .data-product__viewer__activity-bar__menu-item{color:var(--color-hclight-aqua-90)}.theme__hc-light .data-product__viewer__activity-bar__item{color:var(--color-hclight-grey-40)}.theme__hc-light .data-product__viewer__activity-bar__item:hover,.theme__hc-light .data-product__viewer__activity-bar__item--active{color:var(--color-hclight-aqua-90)}.theme__hc-light .data-product__viewer__activity-bar__divider{background:var(--color-hclight-grey-30)}.theme__hc-light .data-product__viewer__activity-bar__item__experimental-badge{background:var(--color-hclight-blue-50);border-color:var(--color-hclight-grey-20)}.theme__hc-light .data-product__viewer__activity-bar__item__experimental-badge svg{color:var(--color-hclight-grey-20)}.theme__hc-light .data-product__viewer__panel__header{color:var(--color-hclight-blue-60);border-bottom-color:var(--color-hclight-blue-60)}.theme__hc-light .data-product__viewer__panel__content__placeholder{color:var(--color-hclight-grey-40)}.theme__hc-light .data-product__viewer__panel__content__placeholder svg{color:var(--color-hclight-blue-50)}.theme__hc-light .data-product__viewer__wiki__placeholder{color:var(--color-hclight-grey-40)}.theme__hc-light .data-product__viewer__wiki__section__header{color:var(--color-hclight-blue-60);border-bottom-color:var(--color-hclight-blue-60)}.theme__hc-light .data-product__viewer__wiki__section__header__anchor{color:var(--color-hclight-blue-60);border-bottom-color:var(--color-hclight-blue-60)}.theme__hc-light .data-product__viewer__wiki__section__header__anchor svg{color:var(--color-hclight-grey-30)}.theme__hc-light .data-product__viewer__wiki__section__header__anchor:hover svg{color:var(--color-hclight-grey-60)}.theme__hc-light .data-product__viewer__wiki__section__header__documentation{color:var(--color-hclight-blue-60)}.theme__hc-light .data-product__viewer__markdown-text-viewer.markdown-content{background:var(--color-hclight-white);color:var(--color-hclight-grey-90)}.theme__hc-light .data-product__viewer__markdown-text-viewer.markdown-content a{color:var(--color-hclight-blue-50)}.theme__hc-light .data-product__viewer__markdown-text-viewer.markdown-content pre{background:var(--color-hclight-grey-90)}.theme__hc-light .data-product__viewer__markdown-text-viewer.markdown-content pre code{color:var(--color-hclight-white)}.theme__hc-light .data-product__viewer__diagram-viewer__carousel__frame__indicator--active svg{color:var(--color-hclight-blue-60)}.theme__hc-light .data-product__viewer__diagram-viewer .diagram-canvas{border-color:var(--color-hclight-grey-60)}.theme__hc-light .data-product__viewer__diagram-viewer__header__navigation__pager{border-left-color:var(--color-hclight-grey-20)}.theme__hc-light .data-product__viewer__diagram-viewer__header__navigation__selector__icon{color:var(--color-hclight-grey-70)}.theme__hc-light .data-product__viewer__diagram-viewer__header__group__separator{border-color:var(--color-hclight-grey-20)}.theme__hc-light .data-product__viewer__diagram-viewer__header__dropdown{border-color:var(--color-hclight-grey-20)}.theme__hc-light .data-product__viewer__diagram-viewer__header__dropdown__label{color:var(--color-hclight-grey-90)}.theme__hc-light .data-product__viewer__diagram-viewer__header__dropdown__trigger svg{color:var(--color-hclight-grey-60)}.theme__hc-light .data-product__viewer__diagram-viewer__header__tool:hover svg{color:var(--color-hclight-grey-70)}.theme__hc-light .data-product__viewer__diagram-viewer__header__tool:hover[disabled] svg,.theme__hc-light .data-product__viewer__diagram-viewer__header__tool[disabled] svg{color:var(--color-hclight-grey-20)}.theme__hc-light .data-product__viewer__diagram-viewer__header__tool svg{color:var(--color-hclight-grey-50)}.theme__hc-light .data-product__viewer__diagram-viewer__header__tool--active:hover,.theme__hc-light .data-product__viewer__diagram-viewer__header__tool--active{background:var(--color-hclight-grey-10);border-color:var(--color-hclight-blue-50)}.theme__hc-light .data-product__viewer__diagram-viewer__header__tool--active:hover svg,.theme__hc-light .data-product__viewer__diagram-viewer__header__tool--active svg{color:var(--color-hclight-blue-50)}.theme__hc-light .data-product__viewer__diagram-viewer__description{background:var(--color-hclight-grey-shade-60)}.theme__hc-light .data-product__viewer__diagram-viewer__description__title{color:var(--color-hclight-white)}.theme__hc-light .data-product__viewer__diagram-viewer__description__content .data-space__viewer__markdown-text-viewer{background:rgba(0,0,0,0);color:var(--color-hclight-white)}.theme__hc-light .data-product__viewer__diagram-viewer__description__content__placeholder{color:var(--color-hclight-grey-20)}.theme__hc-light .data-product__viewer__diagram-viewer__description ::-webkit-scrollbar-thumb{background:var(--color-hclight-grey-30);border:.2rem solid rgba(0,0,0,0);background-clip:content-box;border-radius:.4rem}.theme__hc-light .data-product__viewer__diagram-viewer__description ::-webkit-scrollbar-track-piece{background:rgba(0,0,0,0)}.theme__hc-light .data-product__viewer__diagram-viewer__description__close-btn svg{color:var(--color-hclight-grey-30)}.theme__hc-light .data-product__viewer__diagram-viewer__description__close-btn:hover svg{color:var(--color-hclight-grey-20)}.theme__hc-light .data-product__viewer__diagram-viewer__description__expand-btn svg{color:var(--color-hclight-grey-30)}.theme__hc-light .data-product__viewer__diagram-viewer__description__expand-btn:hover svg{color:var(--color-hclight-grey-20)}.theme__hc-light .data-product__viewer__models-documentation__search__input-group__icon svg{color:var(--color-hclight-grey-80)}.theme__hc-light .data-product__viewer__models-documentation__grid__cell__label__icon{color:var(--color-hclight-white)}.theme__hc-light .data-product__viewer__models-documentation__grid__cell__label__icon--class{background:var(--color-hclight-purple-60)}.theme__hc-light .data-product__viewer__models-documentation__grid__cell__label__icon--enumeration{background:var(--color-hclight-pink-50)}.theme__hc-light .data-product__viewer__models-documentation__grid__cell__label__icon--association{background:var(--color-hclight-green-40)}.theme__hc-light .data-product__viewer__models-documentation__grid__cell__label__icon--property{background:var(--color-hclight-blue-50)}.theme__hc-light .data-product__viewer__models-documentation__grid__cell__label__icon--enum{background:var(--color-hclight-orange-40)}.theme__hc-light .data-product__viewer__models-documentation__grid__cell__label__derived-property-badge{background:var(--color-hclight-grey-10);color:var(--color-hclight-blue-50)}.theme__hc-light .data-product__viewer__models-documentation__grid__cell__label__milestoning-badge svg{color:var(--color-hclight-blue-50)}.theme__hc-light .data-product__viewer__models-documentation__grid__cell__action{color:var(--color-hclight-grey-30)}.theme__hc-light .data-product__viewer__models-documentation__grid__cell__action:hover{color:var(--color-hclight-grey-60)}.theme__hc-light .data-product__viewer__models-documentation__grid__element-row{background:var(--color-hclight-yellow-5);color:var(--color-hclight-grey-90);--ag-row-hover-color: var(--color-hclight-yellow-15)}.theme__hc-light .data-product__viewer__models-documentation__filter__toggler{border-color:var(--color-hclight-grey-20);color:var(--color-hclight-grey-50)}.theme__hc-light .data-product__viewer__models-documentation__filter__toggler:hover{color:var(--color-hclight-grey-70)}.theme__hc-light .data-product__viewer__models-documentation__filter__toggler__icon{border-color:var(--color-hclight-grey-30)}.theme__hc-light .data-product__viewer__models-documentation__filter__panel{background:var(--color-hclight-white);border-color:var(--color-hclight-grey-20);color:var(--color-hclight-grey-70)}.theme__hc-light .data-product__viewer__models-documentation__filter__group{border-color:var(--color-hclight-grey-20)}.theme__hc-light .data-product__viewer__models-documentation__filter__group__header__reset{color:var(--color-hclight-blue-50)}.theme__hc-light .data-product__viewer__models-documentation__filter__group__header__reset:hover{color:var(--color-hclight-blue-60)}.theme__hc-light .data-product__viewer__models-documentation__filter__group__header__reset[disabled],.theme__hc-light .data-product__viewer__models-documentation__filter__group__header__reset[disabled]:hover{color:var(--color-hclight-grey-40)}.theme__hc-light .data-product__viewer__models-documentation__filter__tree__node__container:hover{background:var(--color-hclight-blue-shade-10)}.theme__hc-light .data-product__viewer__models-documentation__filter__tree__node__type-icon{color:var(--color-hclight-white)}.theme__hc-light .data-product__viewer__models-documentation__filter__tree__node__type-icon--class{background:var(--color-hclight-purple-60)}.theme__hc-light .data-product__viewer__models-documentation__filter__tree__node__type-icon--enumeration{background:var(--color-hclight-pink-50)}.theme__hc-light .data-product__viewer__models-documentation__filter__tree__node__type-icon--association{background:var(--color-hclight-green-40)}.theme__hc-light .data-product__viewer__models-documentation__filter__tree__node__type-icon--package{color:var(--color-hclight-grey-30)}.theme__hc-light .data-product__viewer__models-documentation__filter__tree__node__checker svg{color:var(--color-hclight-grey-40)}.theme__hc-light .data-product__viewer__models-documentation__filter__tree__node__checker:hover svg{color:var(--color-hclight-grey-50)}.theme__hc-light .data-product__viewer__models-documentation__filter__tree__node__expand-icon svg{color:var(--color-hclight-grey-50)}.theme__hc-light .data-product__viewer__models-documentation__filter__tree__node__label{color:var(--color-hclight-grey-80)}.theme__hc-light .data-product__viewer__models-documentation__filter__tree__node__count{background:var(--color-hclight-grey-15);color:var(--color-hclight-grey-50)}.theme__hc-light .data-product__viewer__models-documentation__search__input{background:var(--color-hclight-white);border-color:var(--color-hclight-grey-20);color:var(--color-hclight-grey-90)}.theme__hc-light .data-product__viewer__models-documentation__search__input:focus{border-color:var(--color-hclight-grey-30)}.theme__hc-light .data-product__viewer__models-documentation__search__input__search__icon svg{color:var(--color-hclight-grey-30)}.theme__hc-light .data-product__viewer__models-documentation__search__input__clear-btn svg{color:var(--color-hclight-grey-50)}.theme__hc-light .data-product__viewer__models-documentation__search__input__clear-btn:hover svg{color:var(--color-hclight-grey-70)}.theme__hc-light .data-product__viewer__models-documentation__search__input__config__trigger svg{color:var(--color-hclight-grey-50)}.theme__hc-light .data-product__viewer__models-documentation__search__input__config__trigger--toggled svg,.theme__hc-light .data-product__viewer__models-documentation__search__input__config__trigger:hover svg{color:var(--color-hclight-grey-70)}.theme__hc-light .data-product__viewer__models-documentation__search__input__config__trigger--active svg,.theme__hc-light .data-product__viewer__models-documentation__search__input__config__trigger--active:hover svg{color:var(--color-hclight-blue-50)}.theme__hc-light .data-product__viewer__execution-context__entry__icon{background:var(--color-hclight-grey-10)}.theme__hc-light .data-product__viewer__execution-context__entry__content{border-color:var(--color-hclight-grey-10);color:var(--color-hclight-grey-70);background:var(--color-hclight-grey-10);border-left-color:var(--color-hclight-grey-30)}.theme__hc-light .data-product__viewer__execution-context__entry__content__dropdown__option__tag{background:var(--color-hclight-blue-70);color:var(--color-hclight-white)}.theme__hc-light .data-product__viewer__execution-context__entry__content .selector-input__control,.theme__hc-light .data-product__viewer__execution-context__entry__content .selector-input__control:hover{border-color:var(--color-hclight-grey-20)}.theme__hc-light .data-product__viewer__info__project-info__label{background:var(--color-hclight-blue-50);color:var(--color-hclight-white)}.theme__hc-light .data-product__viewer__info__project-info__value{background:var(--color-hclight-grey-10);color:var(--color-hclight-grey-70)}.theme__hc-light .data-product__viewer__info__project-info__link{background:var(--color-hclight-grey-10);color:var(--color-hclight-grey-60);border-color:var(--color-hclight-grey-30)}.theme__hc-light .data-product__viewer__info__section__title{color:var(--color-hclight-grey-90)}.theme__hc-light .data-product__viewer__info__tagged-value__tag{background:var(--color-hclight-orange-50);color:var(--color-hclight-white)}.theme__hc-light .data-product__viewer__info__tagged-value__value{background:var(--color-hclight-grey-10);color:var(--color-hclight-grey-70)}.theme__hc-light .data-product__viewer__info__steoreotype{background:var(--color-hclight-orange-50);color:var(--color-hclight-white)}.theme__hc-light .data-product__viewer__info__section__placeholder{color:var(--color-hclight-grey-30);border-color:var(--color-hclight-grey-30)}.theme__hc-light .data-product__viewer__support__entry__icon{background:var(--color-hclight-grey-10)}.theme__hc-light .data-product__viewer__support__entry__icon svg{color:var(--color-hclight-grey-70)}.theme__hc-light .data-product__viewer__support__entry__content{border-color:rgba(0,0,0,0);color:var(--color-hclight-grey-70);background:var(--color-hclight-grey-10);border-left-color:var(--color-hclight-grey-30)}.theme__hc-light .data-product__viewer__access-group__item__header__title{color:var(--color-hclight-aqua-90)}.theme__hc-light .data-product__viewer__access-group__item__header__anchor{color:var(--color-hclight-blue-60)}.theme__hc-light .data-product__viewer__access-group__item__header__anchor svg{color:var(--color-hclight-grey-30)}.theme__hc-light .data-product__viewer__access-group__item__header__anchor:hover svg{color:var(--color-hclight-grey-60)}.theme__hc-light .data-product__viewer__access-group__item__content__tab__header{border-bottom-color:var(--color-hclight-grey-15);border-top-color:var(--color-hclight-grey-15)}.theme__hc-light .data-product__viewer__access-group__item__content__tab{color:var(--color-hclight-grey-60);border-left-color:var(--color-hclight-grey-15)}.theme__hc-light .data-product__viewer__access-group__item__content__tab:hover .theme__hc-light .data-product__viewer__access-group__item__content__tab__label{color:var(--color-hclight-grey-70)}.theme__hc-light .data-product__viewer__access-group__item__content__tab:hover .theme__hc-light .data-product__viewer__access-group__item__content__tab__icon svg{color:var(--color-hclight-grey-70)}.theme__hc-light .data-product__viewer__access-group__item__content__tab--active:hover .theme__hc-light .data-product__viewer__access-group__item__content__tab__label,.theme__hc-light .data-product__viewer__access-group__item__content__tab--active .theme__hc-light .data-product__viewer__access-group__item__content__tab__label{color:var(--color-hclight-blue-60)}.theme__hc-light .data-product__viewer__access-group__item__content__tab--active:hover .theme__hc-light .data-product__viewer__access-group__item__content__tab__icon svg,.theme__hc-light .data-product__viewer__access-group__item__content__tab--active .theme__hc-light .data-product__viewer__access-group__item__content__tab__icon svg{color:var(--color-hclight-blue-60)}.theme__hc-light .data-product__viewer__access-group__item__content__action-tab-group{border-left-color:var(--color-hclight-grey-15)}.theme__hc-light .data-product__viewer__access-group__tds__query{border-color:var(--color-hclight-grey-30)}.theme__hc-light .data-product__viewer__access-group__tds__placeholder-panel{border-color:var(--color-hclight-grey-30)}.theme__hc-light .data-product__viewer__access-group__tds__query-text__action svg{color:var(--color-hclight-grey-60)}.theme__hc-light .data-product__viewer__access-group__tds__query-text__action:hover svg{color:var(--color-hclight-grey-80)}.theme__hc-light .data-product__viewer__access-group__tds__code-action{border-color:var(--color-hclight-grey-30)}.theme__hc-light .data-product__viewer__access-group__tds__code-action__content{border-color:var(--color-hclight-grey-30)}.theme__hc-light .data-product__viewer__access-group__tds__code-action__action svg{color:var(--color-hclight-grey-60)}.theme__hc-light .data-product__viewer__access-group__tds__code-action__action:hover svg{color:var(--color-hclight-grey-80)}/*# sourceMappingURL=index.css.map */
|
|
17
|
+
.lakehouse-data-product-owners-tooltip{padding:1rem;color:var(--marketplace-text-primary);background-color:var(--marketplace-bg-primary)}.lakehouse-data-product-owners-tooltip__wrapper{background-color:var(--marketplace-bg-primary);box-shadow:0 2px 8px rgba(0,0,0,.12)}.data-product__viewer{height:100%;width:100%;position:relative;font-family:Roboto,sans-serif;overflow:auto}.data-product__viewer__header{display:flex;justify-content:center;position:absolute;top:0;height:14rem;width:100%;z-index:1;background:rgba(0,0,0,0);transition:all .5s ease}.data-product__viewer__header--floating{background:var(--color-dark-grey-85);box-shadow:var(--color-dark-shade-280) 0 0 .5rem 0;z-index:10}.data-product__viewer__header__content{display:flex;flex-direction:row;width:min(140rem,80vw);min-width:80rem;max-width:140rem;padding:3rem 8rem 2rem;gap:1rem;align-items:center;justify-content:space-between}.data-product__viewer__header__content--expanded{width:80vw}.data-product__viewer__header__type{display:flex;align-items:center;gap:.5rem}.data-product__viewer__header__type button{display:flex;gap:.5rem}.data-product__viewer__header__type__sandbox{background:var(--color-white);color:var(--color-hclight-blue-60);border:1px solid var(--color-hclight-blue-60);cursor:default}.data-product__viewer__header__type__sandbox--dev{background:var(--tw-color-amber-100);color:var(--tw-color-amber-600);border:none}.data-product__viewer__header__type__sandbox--prod-parallel{background:var(--tw-color-blue-100);color:var(--tw-color-blue-600);border:none}.data-product__viewer__header__type__sandbox--prod{background:var(--tw-color-green-100);color:var(--tw-color-green-600);border:none}.data-product__viewer__header__type__version--snapshot{background:var(--tw-color-blue-100);color:var(--tw-color-blue-600)}.data-product__viewer__header__type__version--snapshot:hover{background:var(--tw-color-blue-200)}.data-product__viewer__header__type__version--release{background:var(--tw-color-green-100);color:var(--tw-color-green-600)}.data-product__viewer__header__type__version--release:hover{background:var(--tw-color-green-200)}.data-product__viewer__header__title{display:flex;align-items:center;justify-content:center;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;word-break:normal;overflow-wrap:anywhere;text-align:left;flex:1;min-width:0;max-width:50vw;font-size:3rem;align-self:start;justify-content:flex-start;height:5rem;font-weight:400;color:var(--color-hclight-blue-60);background:unset !important}.data-product__viewer__header__actions{display:flex;align-items:center;height:3.8rem;background:var(--color-dark-grey-200);border:.1rem solid var(--color-dark-grey-250);border-radius:.2rem;padding-left:.5rem}.data-product__viewer__header__execution-context-selector{width:20rem}.data-product__viewer__header__execution-context-selector__trigger{display:flex;align-items:center;height:100%}.data-product__viewer__header__execution-context-selector__trigger__icon{display:flex;align-items:center;justify-content:center;height:2.8rem;width:2.8rem;border-right:.1rem solid var(--color-dark-grey-280)}.data-product__viewer__header__execution-context-selector__trigger__icon svg{color:var(--color-dark-grey-300)}.data-product__viewer__header__execution-context-selector__trigger__label{white-space:nowrap;text-overflow:ellipsis;overflow:hidden;word-break:normal;overflow-wrap:anywhere;text-align:left;width:15rem;height:100%;line-height:3.8rem;padding:0 1rem;color:var(--color-light-grey-300)}.data-product__viewer__header__execution-context-selector__trigger__dropdown-icon{display:flex;align-items:center;justify-content:center;width:2.2rem;height:100%}.data-product__viewer__header__execution-context-selector__trigger__dropdown-icon svg{color:var(--color-dark-grey-300)}.data-product__viewer__header__execution-context-selector__option{width:17.2rem}.data-product__viewer__header__execution-context-selector__option--active{background:var(--color-dark-grey-250)}.data-product__viewer__body{display:flex;align-items:center;flex-direction:column;height:100%;width:100%;min-width:fit-content;overflow:auto}.data-product__viewer__frame{display:flex;width:100%;min-width:80rem;max-width:140rem;height:100%;padding:4rem;position:relative}.data-product__viewer__frame--expanded{width:80vw}.data-product__viewer__frame--boundless{height:initial}.data-product__viewer__content{display:flex;width:100%;padding:10rem 4rem 1rem;box-shadow:var(--color-dark-shade-280) 0 .1rem .5rem 0}.data-product__viewer__content__terminal__access-section{padding-top:30px}.data-product__viewer__content__terminal__access-section__heading{font-size:20px;font-weight:500}.data-product__viewer__content__terminal__access-section__container{gap:12px;padding-bottom:15px;display:flex;align-items:center;justify-content:flex-start}.data-product__viewer__content__terminal__access-section span{font-size:14px;color:#333;font-weight:bold}.data-product__viewer__content__terminal__access-section__user-edit-icon{width:20px;height:20px;cursor:pointer}.data-product__viewer__content__terminal__access-table{width:100%;overflow:hidden}.data-product__viewer__content__terminal__access-table--cell{padding:8px;border-top:1px solid #e0e0e0;vertical-align:middle;font-size:14px}.data-product__viewer__content__terminal__access-table--cell--entity{font-weight:500;color:var(--color-hclight-blue-50)}.data-product__viewer__content__terminal__access-table--cell--cost{font-weight:300}.data-product__viewer__content__terminal__access-table--cell--status{text-align:center}.data-product__viewer__content__terminal__access-table--row{background-color:#fff;border-bottom:1px solid #e5e7eb}.data-product__viewer__content__terminal__access-table--row:hover{background-color:#f9f9f9}.data-product__viewer__support-info__container{width:fit-content}.data-product__viewer__support-info__section{display:flex;align-items:center;gap:.5rem}.data-product__viewer__support-info__section__icon{display:flex;align-items:center;justify-content:center;width:3.5rem;height:3.5rem;border-radius:3.5rem;background:currentcolor;margin-right:.5rem}.data-product__viewer__support-info__section__icon svg{color:var(--color-white);font-size:2rem}.data-product__viewer__support-info__expertise{display:flex;flex-direction:column;gap:1rem}.data-product__viewer__support-info__link{display:flex;align-items:center;gap:.5rem}.product-header-tabs{position:absolute;right:200px;top:50%;transform:translateY(-50%);flex:0 0 auto;max-width:none;display:flex;justify-content:flex-end;align-items:center;z-index:10;padding-top:10px}.product-header-tabs__container{width:auto;display:flex;gap:1rem;justify-content:flex-end;align-items:center}.product-header-tabs__tab{background:none;border:none;padding:.5rem 0;font-size:1.3rem;font-weight:500;cursor:pointer;position:relative;color:var(--color-dark-grey-400);border-bottom:2px solid rgba(0,0,0,0);flex:1;text-align:center}.product-header-tabs__tab:hover{color:var(--color-hclight-blue-60)}.product-header-tabs__tab--active{color:var(--color-hclight-blue-60);border-bottom:2px solid var(--color-hclight-blue-60)}.product-header-tabs__tab:focus{outline:none}.data-product__viewer__panel{height:100%;width:100%;overflow:auto;padding:2rem 0}.data-product__viewer__panel__header{display:flex;align-items:center;border-bottom:.2rem solid var(--color-blue-100);user-select:none;color:var(--color-blue-100);margin-bottom:2rem}.data-product__viewer__panel__header__label{display:flex;align-items:center;font-size:2.4rem;text-transform:uppercase;font-weight:500}.data-product__viewer__panel__content__placeholder{line-height:2.8rem;color:var(--color-dark-grey-300);user-select:none;font-style:italic}.data-product__viewer__panel__content__placeholder svg{font-size:1rem;color:var(--color-blue-100)}.access_group_gap{margin-bottom:16px}.data-product__viewer__grid{height:30rem}.data-product__viewer__grid--auto-height{height:fit-content}.data-product__viewer__grid--auto-height--non-empty .ag-center-cols-viewport{min-height:unset}.data-product__viewer__grid--empty{display:flex;align-items:center;justify-content:center;padding:1rem 1.5rem;font-weight:500;border-radius:.5rem;background:var(--color-dark-grey-50);color:var(--color-dark-grey-300)}.data-product__viewer__grid__empty-cell{font-size:1.2rem}.data-product__viewer__grid__header-cell{display:flex;align-items:center;width:100%}.data-product__viewer__grid__header-cell__label{white-space:nowrap;text-overflow:ellipsis;overflow:hidden;word-break:normal;overflow-wrap:anywhere;text-align:left}.data-product__viewer__grid__last-column-header{--ag-header-column-separator-display: none}.data-product__viewer__grid.ag-theme-balham-dark{--ag-font-family: "Roboto";--ag-border-color: var(--color-dark-grey-200);--ag-background-color: var(--color-dark-grey-50);--ag-foreground-color: var(--color-light-grey-200);--ag-header-background-color: var(--color-dark-grey-100);--ag-header-foreground-color: var(--color-light-grey-50);--ag-balham-active-color: var(--color-blue-200);--ag-odd-row-background-color: var(--color-dark-grey-50);--ag-even-row-background-color: var(--color-dark-grey-50);--ag-row-hover-color: var(--color-dark-blue-shade-100);--ag-row-border-color: var(--color-dark-grey-200)}.data-product__viewer__grid .ag-header-cell-text{font-weight:700}.data-product__viewer__grid .ag-cell-value{word-break:normal;overflow-wrap:anywhere}.data-product__viewer__grid .ag-center-cols-viewport{background:repeating-linear-gradient(135deg, var(--color-dark-grey-50), var(--color-dark-grey-50) 0.5rem, var(--color-dark-grey-80) 0.5rem, var(--color-dark-grey-80) 1rem)}.data-product__viewer__grid ::-webkit-scrollbar-track-piece{background:rgba(0,0,0,0)}.data-product__viewer__scroller{display:flex;align-items:center;justify-content:center;position:absolute;flex-direction:column;z-index:10;bottom:2rem;right:3rem;width:3.4rem;height:4.8rem;background:var(--color-blue-200);border-radius:.2rem}.data-product__viewer__scroller__btn{display:flex;align-items:center;justify-content:center;height:3.4rem;width:3.4rem}.data-product__viewer__scroller__btn:focus{outline:none}.data-product__viewer__scroller__percentage{display:flex;align-items:center;justify-content:center;height:1.4rem;width:100%;font-size:.8rem;user-select:none;font-family:"Roboto Mono",monospace;background:var(--color-blue-300);color:var(--color-light-grey-50);border-radius:0 0 .2rem .2rem}.data-product__viewer__activity-bar{display:flex;flex-direction:column;width:5rem;position:absolute;left:2rem;top:11rem;z-index:10;overflow-x:hidden;overflow-y:hidden;border-radius:.2rem;background:var(--color-dark-grey-100);max-height:calc(100vh - 13rem)}.data-product__viewer__activity-bar ::-webkit-scrollbar{width:.3rem}.data-product__viewer__activity-bar__menu{height:3.4rem;border-bottom:.1rem solid var(--color-dark-grey-200)}.data-product__viewer__activity-bar__menu-item{display:flex;align-items:center;justify-content:center;height:3.4rem;width:100%;color:var(--color-dark-grey-400)}.data-product__viewer__activity-bar__menu-item svg{font-size:2.4rem}.data-product__viewer__activity-bar__items{overflow-y:auto;overflow-x:hidden;display:flex;flex-direction:column}.data-product__viewer__activity-bar__item{display:flex;align-items:center;justify-content:center;flex-grow:0;flex-shrink:0;height:5rem;width:5rem;color:var(--color-dark-grey-400);cursor:pointer;position:relative}.data-product__viewer__activity-bar__item svg{font-size:2.2rem}.data-product__viewer__activity-bar__item:hover{color:var(--color-light-grey-250);cursor:pointer}.data-product__viewer__activity-bar__item--active{color:var(--color-light-grey-250)}.data-product__viewer__activity-bar__divider{flex-grow:0;flex-shrink:0;border-radius:.1rem;height:.1rem;background:var(--color-dark-grey-300);margin:.5rem}.data-product__viewer__activity-bar__item .data-product__viewer__activity-bar__icon--home{font-size:2.8rem}.data-product__viewer__activity-bar__item .data-product__viewer__activity-bar__icon--launch{font-size:2.8rem}.data-product__viewer__activity-bar__item .data-product__viewer__activity-bar__icon--access{font-size:2.8rem}.data-product__viewer__activity-bar__item .data-product__viewer__activity-bar__icon--dataset{font-size:2.8rem}.data-product__viewer__activity-bar__item .data-product__viewer__activity-bar__icon--availability{font-size:3rem}.data-product__viewer__activity-bar__item .data-product__viewer__activity-bar__icon--readiness{font-size:2.8rem}.data-product__viewer__activity-bar__item .data-product__viewer__activity-bar__icon--cost{font-size:3rem}.data-product__viewer__activity-bar__item .data-product__viewer__activity-bar__icon--governance{font-size:2.8rem}.data-product__viewer__activity-bar__item .data-product__viewer__activity-bar__icon--info{font-size:2.4rem}.data-product__viewer__activity-bar__item .data-product__viewer__activity-bar__icon--support{font-size:2.4rem}.data-product__viewer__activity-bar__item__experimental-badge{display:flex;align-items:center;justify-content:center;position:absolute;top:.6rem;right:.6rem;height:1.6rem;width:1.6rem;border-radius:50%;background:var(--color-mauve-50);border:.1rem solid var(--color-dark-grey-100)}.data-product__viewer__activity-bar__item__experimental-badge svg{font-size:1.2rem;color:var(--color-dark-grey-100)}.data-product__viewer__wiki{display:flex;flex-direction:column;width:100%;min-height:55%}.data-product__viewer__wiki__section{flex-direction:column}.data-product__viewer__wiki__section__header{display:flex;align-items:center;justify-content:space-between;height:3rem;border-bottom:.2rem solid var(--color-blue-100);margin-bottom:2rem;margin-top:4rem;user-select:none;color:var(--color-blue-100)}.data-product__viewer__wiki__section__header__label,.data-product__viewer__wiki__section__header__subtitle{white-space:nowrap;text-overflow:ellipsis;overflow:hidden;word-break:normal;overflow-wrap:anywhere;text-align:left;display:flex;align-items:center;font-size:2.4rem;text-transform:uppercase;font-weight:500}.data-product__viewer__wiki__section__header__subtitle{font-size:1.8rem;color:var(--color-hclight-blue-60)}.data-product__viewer__wiki__section__header__anchor{display:flex;align-items:center;display:none;margin-left:.5rem;cursor:pointer}.data-product__viewer__wiki__section__header__anchor svg{color:var(--color-dark-grey-300)}.data-product__viewer__wiki__section__header__anchor:hover svg{color:var(--color-dark-grey-400)}.data-product__viewer__wiki__section__header:hover .data-product__viewer__wiki__section__header__anchor{display:inline-flex}.data-product__viewer__wiki__section__header__documentation{color:var(--color-blue-100)}.data-product__viewer__wiki__section__content{margin-bottom:3rem}.data-product__viewer__wiki__tags{display:flex;width:100%}.data-product__viewer__wiki__tags__chip{font-size:11px;border-radius:.5rem}.data-product__viewer__wiki__expertise{display:flex;flex-direction:column;gap:1rem;margin-bottom:.5rem}.data-product__viewer__wiki__expert-contact{display:flex}.data-product__viewer__wiki__expert-contact__icon{width:40px;height:40px}.data-product__viewer__wiki__expert-contact__info{display:flex;flex-direction:column;margin-left:1rem;justify-content:center}.data-product__viewer__wiki__expert-contact__info__id{font-weight:bold;color:var(--color-hclight-blue-60);display:flex;gap:.5rem;align-items:center}.data-product__viewer__wiki__expert-contact__info__subtitle{font-size:12px}.data-product__viewer__wiki__placeholder{display:flex;align-items:center;justify-content:center;justify-content:flex-start;width:100%;border-radius:.2rem;color:var(--color-dark-grey-300);user-select:none;height:auto;background:rgba(0,0,0,0);font-style:italic}.data-product__viewer__markdown-text-viewer{color:var(--color-light-grey-200)}.data-product__viewer__terminal__description-div{padding-top:2px}.data-product__viewer__wiki__terminal__section__pricing{height:3.5rem;width:fit-content;min-width:250px;border:1px solid var(--color-hclight-blue-60);color:var(--color-hclight-blue-60);margin-top:25px;padding:12px 24px;font-size:14px;transition:opacity .2s ease;display:flex;align-items:center;justify-content:center;cursor:pointer;margin-left:auto}.data-product__viewer__wiki__terminal__section__pricing:hover{opacity:.8}.data-product__viewer__description{display:flex;align-items:center;justify-content:center;height:100%;width:100%;padding-top:30px}.data-product__viewer__description__content{width:100%}.data-product__viewer__diagram-viewer{height:70rem}.data-product__viewer__diagram-viewer__header{display:flex;align-items:center;justify-content:space-between;height:3.8rem;width:100%}.data-product__viewer__diagram-viewer__header__navigation{display:flex;align-items:center}.data-product__viewer__diagram-viewer__header__navigation__selector{width:25rem}.data-product__viewer__diagram-viewer__header__navigation__selector__icon{width:1.6rem;font-size:1.2rem}.data-product__viewer__diagram-viewer__header__navigation__selector__label{display:flex;align-items:center}.data-product__viewer__diagram-viewer__header__navigation__selector__title{white-space:nowrap;width:calc(100% - 1.6rem);margin-left:1rem}.data-product__viewer__diagram-viewer__header__navigation__pager{display:flex;align-items:center;height:2.8rem;margin-left:.5rem;padding-left:.5rem;border-left:.1rem solid var(--color-dark-grey-280)}.data-product__viewer__diagram-viewer__header__navigation__pager__input{height:2.8rem;width:2.8rem}.data-product__viewer__diagram-viewer__header__navigation__pager__count{display:flex;align-items:center;height:2.8rem;font-family:"Roboto Mono",monospace;margin-left:.5rem;user-select:none}.data-product__viewer__diagram-viewer__header__actions{display:flex;align-items:center}.data-product__viewer__diagram-viewer__header__group{display:flex;align-items:center;height:100%;padding:0 .5rem}.data-product__viewer__diagram-viewer__header__group__separator{height:2.4rem;border:.05rem solid var(--color-dark-grey-280)}.data-product__viewer__diagram-viewer__header__group__action{width:2rem}.data-product__viewer__diagram-viewer__header__dropdown{display:flex;align-items:center;margin-left:.3rem;height:2.8rem;border:.1rem solid var(--color-dark-grey-300)}.data-product__viewer__diagram-viewer__header__dropdown__label{display:flex;align-items:center;justify-content:center;flex-grow:0;flex-shrink:0;height:100%;color:var(--color-dark-grey-500);font-weight:500;font-size:1.2rem}.data-product__viewer__diagram-viewer__header__dropdown__trigger{display:flex;align-items:center;justify-content:center;flex-grow:0;flex-shrink:0;height:100%;cursor:pointer}.data-product__viewer__diagram-viewer__header__dropdown__trigger svg{color:var(--color-dark-grey-500)}.data-product__viewer__diagram-viewer__header__tool{display:flex;align-items:center;justify-content:center;flex-grow:0;flex-shrink:0;height:2.8rem;width:2.8rem;border-radius:.2rem}.data-product__viewer__diagram-viewer__header__tool--active{border-radius:.2rem;background:var(--color-dark-grey-100);border:.1rem solid var(--color-blue-200)}.data-product__viewer__diagram-viewer__header__tool+.data-product__viewer__diagram-viewer__header__tool{margin-left:.3rem}.data-product__viewer__diagram-viewer__header__tool:hover svg{color:var(--color-light-grey-100)}.data-product__viewer__diagram-viewer__header__tool:hover[disabled] svg,.data-product__viewer__diagram-viewer__header__tool[disabled] svg{color:var(--color-dark-grey-400)}.data-product__viewer__diagram-viewer__header__tool svg{color:var(--color-light-grey-300)}.data-product__viewer__diagram-viewer__header__zoomer__dropdown__label{width:5rem}.data-product__viewer__diagram-viewer__header__zoomer__dropdown__trigger{width:2rem}.data-product__viewer__diagram-viewer__header__zoomer__dropdown__menu__item{display:flex;align-items:center;justify-content:center;width:7rem}.data-product__viewer__diagram-viewer__icon--recenter,.data-product__viewer__diagram-viewer__icon--description,.data-product__viewer__diagram-viewer__icon--layout,.data-product__viewer__diagram-viewer__icon--pan,.data-product__viewer__diagram-viewer__icon--zoom-in,.data-product__viewer__diagram-viewer__icon--zoom-out{font-size:1.8rem}.data-product__viewer__diagram-viewer__cursor--crosshair{cursor:crosshair}.data-product__viewer__diagram-viewer__cursor--pointer{cursor:pointer}.data-product__viewer__diagram-viewer__cursor--resize{cursor:nwse-resize}.data-product__viewer__diagram-viewer__cursor--zoom-in{cursor:zoom-in}.data-product__viewer__diagram-viewer__cursor--zoom-out{cursor:zoom-out}.data-product__viewer__diagram-viewer__cursor--grab{cursor:grab}.data-product__viewer__diagram-viewer__cursor--grabbing{cursor:grabbing}.data-product__viewer__diagram-viewer__cursor--not-allowed{cursor:not-allowed}.data-product__viewer__diagram-viewer__canvas{height:100%;width:100%;display:flex;position:relative}.data-product__viewer__diagram-viewer__description{position:absolute;z-index:2;height:10rem;width:100%;padding:2rem 1.5rem 2rem 2rem;background:var(--color-dark-shade-900);user-select:none}.data-product__viewer__diagram-viewer__description ::-webkit-scrollbar-thumb{background:var(--color-dark-grey-400);border:.2rem solid rgba(0,0,0,0);background-clip:content-box;border-radius:.4rem}.data-product__viewer__diagram-viewer__description--expanded{height:100%}.data-product__viewer__diagram-viewer__description__close-btn{position:absolute;top:1rem;right:1rem}.data-product__viewer__diagram-viewer__description__close-btn svg{color:var(--color-dark-grey-400);font-size:1.8rem}.data-product__viewer__diagram-viewer__description__close-btn:hover svg{color:var(--color-light-grey-400)}.data-product__viewer__diagram-viewer__description__expand-btn{position:absolute;bottom:.3rem;right:1.1rem}.data-product__viewer__diagram-viewer__description__expand-btn svg{color:var(--color-dark-grey-400);font-size:1.6rem}.data-product__viewer__diagram-viewer__description__expand-btn:hover svg{color:var(--color-light-grey-400)}.data-product__viewer__diagram-viewer__description__title{white-space:nowrap;text-overflow:ellipsis;overflow:hidden;word-break:normal;overflow-wrap:anywhere;text-align:left;font-size:2.4rem;font-weight:500;color:var(--color-light-grey-50);height:3rem}.data-product__viewer__diagram-viewer__description__content{height:calc(100% - 3rem);overflow:auto}.data-product__viewer__diagram-viewer__description__content .data-product__viewer__markdown-text-viewer{background:rgba(0,0,0,0);color:var(--color-light-grey-200);padding-top:.5rem}.data-product__viewer__diagram-viewer__description__content__placeholder{color:var(--color-dark-grey-400);font-style:italic}.data-product__viewer__diagram-viewer__carousel{display:flex;flex-direction:column;height:calc(100% - 3.8rem);width:100%}.data-product__viewer__diagram-viewer__carousel .diagram-canvas{border-radius:.2rem;border:.1rem solid var(--color-dark-grey-80)}.data-product__viewer__diagram-viewer__carousel__frame{height:100%;width:100%;display:flex;position:relative}.data-product__viewer__diagram-viewer__carousel__frame__display{height:100%;width:100%;display:flex;position:relative}.data-product__viewer__diagram-viewer__carousel__frame__navigator{display:flex;align-items:center;justify-content:center;height:100%;width:5rem;background:rgba(0,0,0,0);position:absolute;top:0}.data-product__viewer__diagram-viewer__carousel__frame__navigator--back{left:0}.data-product__viewer__diagram-viewer__carousel__frame__navigator--back:hover{background-image:linear-gradient(90deg, var(--color-dark-shade-50), transparent)}.data-product__viewer__diagram-viewer__carousel__frame__navigator--next{right:0}.data-product__viewer__diagram-viewer__carousel__frame__navigator--next:hover{background-image:linear-gradient(270deg, var(--color-dark-shade-50), transparent)}.data-product__viewer__diagram-viewer__carousel__frame__navigator svg{color:var(--color-dark-shade-800);font-size:2.6rem}.data-product__viewer__diagram-viewer__carousel__frame__navigator:hover{cursor:pointer}.data-product__viewer__diagram-viewer__carousel__frame__navigator:hover svg{color:var(--color-dark-shade-800)}.data-product__viewer__diagram-viewer__carousel__frame__navigator[disabled]{cursor:not-allowed}.data-product__viewer__diagram-viewer__carousel__frame__navigator[disabled]:hover{background:rgba(0,0,0,0)}.data-product__viewer__diagram-viewer__carousel__frame__navigator[disabled] svg,.data-product__viewer__diagram-viewer__carousel__frame__navigator[disabled]:hover svg{color:var(--color-dark-shade-200)}.data-product__viewer__diagram-viewer__carousel__frame__indicators{display:flex;align-items:center;justify-content:center;height:3rem;width:100%;position:absolute;bottom:0;background:rgba(0,0,0,0);color:var(--color-light-grey-400);padding:0 .5rem;user-select:none;cursor:default}.data-product__viewer__diagram-viewer__carousel__frame__indicators__notch{display:flex;align-items:center;justify-content:center;height:100%;background:var(--color-dark-shade-0);padding:0 3rem;border-radius:1rem 1rem 0 0}.data-product__viewer__diagram-viewer__carousel__frame__indicator{margin:0 .5rem}.data-product__viewer__diagram-viewer__carousel__frame__indicator svg{font-size:1.2rem;color:var(--color-dark-shade-50)}.data-product__viewer__diagram-viewer__carousel__frame__indicator--active svg{color:var(--color-blue-150)}.data-product__viewer__diagram-viewer__carousel__content{height:calc(100% - 5.4rem);width:100%}.data-product__viewer__diagram-viewer__carousel__dropdown{width:100%}.data-product__viewer__diagram-viewer__carousel__dropdown__container{padding:.3rem}.data-product__viewer__models-documentation__header{display:flex;align-items:center;width:100%;justify-content:space-between;height:3.8rem}.data-product__viewer__models-documentation__content{display:flex;flex-direction:row;height:50rem}.data-space__terminal__header__product-name{color:#1e88e5;font-weight:500;font-size:clamp(18px,4vw,27px)}.data-product__viewer__models-documentation__grid{width:100%}.data-product__viewer__models-documentation__grid--shrink{width:calc(100% - 25rem)}.data-product__viewer__models-documentation__grid ::-webkit-scrollbar{width:.6rem;height:.6rem}.data-product__viewer__models-documentation__grid ::-webkit-scrollbar-thumb{border:.2rem solid rgba(0,0,0,0);background-clip:content-box;border-radius:.3rem}.data-product__viewer__models-documentation__grid__cell{display:flex;align-items:center;width:100%;justify-content:space-between}.data-product__viewer__models-documentation__grid__cell__label{display:flex;align-items:center;width:calc(100% - 4rem)}.data-product__viewer__models-documentation__grid__cell__label__icon{display:flex;align-items:center;justify-content:center;flex-grow:0;flex-shrink:0;height:1.8rem;width:1.8rem;border-radius:.2rem;background:var(--color-dark-grey-100);color:var(--color-light-grey-200);font-size:1.2rem;font-family:"Roboto Mono",monospace;font-weight:900;margin-right:.5rem}.data-product__viewer__models-documentation__grid__cell__label__icon--class{background:var(--color-purple-400)}.data-product__viewer__models-documentation__grid__cell__label__icon--enumeration{background:var(--color-pink-300)}.data-product__viewer__models-documentation__grid__cell__label__icon--association{background:var(--color-green-200)}.data-product__viewer__models-documentation__grid__cell__label__icon--property{background:var(--color-blue-180)}.data-product__viewer__models-documentation__grid__cell__label__icon--enum{background:var(--color-orange-150)}.data-product__viewer__models-documentation__grid__cell__label__text{white-space:nowrap;text-overflow:ellipsis;overflow:hidden;word-break:normal;overflow-wrap:anywhere;text-align:left}.data-product__viewer__models-documentation__grid__cell__label__derived-property-badge{display:flex;align-items:center;justify-content:center;font-size:1.2rem;font-weight:600;font-family:"Roboto Mono",monospace;margin-left:.5rem;padding:0 .2rem;height:2rem;border-radius:.2rem;background:var(--color-dark-grey-100);color:var(--color-blue-100)}.data-product__viewer__models-documentation__grid__cell__label__milestoning-badge{display:flex;align-items:center;justify-content:center;flex-grow:0;flex-shrink:0;width:2rem;margin-right:1rem}.data-product__viewer__models-documentation__grid__cell__label__milestoning-badge svg{color:var(--color-blue-150);font-size:1.2rem}.data-product__viewer__models-documentation__grid__cell__actions{display:flex;align-items:center;width:4rem}.data-product__viewer__models-documentation__grid__cell__action{display:flex;align-items:center;justify-content:center;flex-grow:0;flex-shrink:0;color:var(--color-dark-grey-350);width:2rem;height:2rem}.data-product__viewer__models-documentation__grid__cell__action:hover{color:var(--color-light-grey-400)}.data-product__viewer__models-documentation__grid__cell__action__info{font-size:1.2rem}.data-product__viewer__models-documentation__grid__element-row{background:var(--color-yellow-200);color:var(--color-dark-grey-100);--ag-row-hover-color: var(--color-yellow-100)}.data-product__viewer__models-documentation__grid__element-row .data-product__viewer__models-documentation__grid__cell__action{color:var(--color-dark-shade-300)}.data-product__viewer__models-documentation__grid__element-row .data-product__viewer__models-documentation__grid__cell__action:hover{color:var(--color-dark-shade-800)}.data-product__viewer__models-documentation__filter__toggler{display:flex;align-items:center;flex-grow:0;flex-shrink:0;height:2.8rem;border:.1rem solid var(--color-dark-grey-280);color:var(--color-light-grey-200);margin-right:.5rem}.data-product__viewer__models-documentation__filter__toggler:hover{color:var(--color-light-grey-50)}.data-product__viewer__models-documentation__filter__toggler__arrow{display:flex;align-items:center;justify-content:center;width:1.2rem}.data-product__viewer__models-documentation__filter__toggler__arrow svg{font-size:1.2rem}.data-product__viewer__models-documentation__filter__toggler__icon{display:flex;align-items:center;justify-content:center;border-left:.1rem solid var(--color-dark-grey-280);width:2.8rem;height:2.8rem}.data-product__viewer__models-documentation__filter__toggler svg{font-size:1.2rem}.data-product__viewer__models-documentation__filter__panel{display:flex;flex-direction:column;width:25rem;margin-right:.5rem;border-radius:.2rem;background:var(--color-dark-grey-85);border:.1rem solid var(--color-dark-grey-200);color:var(--color-light-grey-50)}.data-product__viewer__models-documentation__filter__group{display:flex;flex-direction:column}.data-product__viewer__models-documentation__filter__group+.data-product__viewer__models-documentation__filter__group{border-top:.1rem solid var(--color-dark-grey-200)}.data-product__viewer__models-documentation__filter__group--by-type{height:13rem}.data-product__viewer__models-documentation__filter__group--by-package{height:calc(100% - 16.2rem)}.data-product__viewer__models-documentation__filter__group__header{display:flex;align-items:center;flex-grow:0;flex-shrink:0;justify-content:space-between;height:3.2rem;padding:0 1rem;user-select:none}.data-product__viewer__models-documentation__filter__group__header__label{white-space:nowrap;text-overflow:ellipsis;overflow:hidden;word-break:normal;overflow-wrap:anywhere;text-align:left;font-weight:500}.data-product__viewer__models-documentation__filter__group__header__actions{display:flex;align-items:center}.data-product__viewer__models-documentation__filter__group__header__reset{font-family:"Roboto Mono",monospace;font-size:1.1rem;color:var(--color-blue-150);margin-left:.5rem}.data-product__viewer__models-documentation__filter__group__header__reset:hover{color:var(--color-blue-100)}.data-product__viewer__models-documentation__filter__group__header__reset[disabled],.data-product__viewer__models-documentation__filter__group__header__reset[disabled]:hover{color:var(--color-dark-grey-350)}.data-product__viewer__models-documentation__filter__group__content{padding:.5rem;padding-top:0;overflow-y:auto}.data-product__viewer__models-documentation__filter__tree{height:100%;width:100%;display:flex;flex-direction:column}.data-product__viewer__models-documentation__filter__tree__node__container{display:flex;width:100%;height:2.2rem}.data-product__viewer__models-documentation__filter__tree__node__container:hover{background:var(--color-dark-blue-shade-100)}.data-product__viewer__models-documentation__filter__tree__node__content{display:flex;align-items:center;height:100%;width:calc(100% - 3.3rem)}.data-product__viewer__models-documentation__filter__tree__node__type-icon{display:flex;align-items:center;justify-content:center;flex-grow:0;flex-shrink:0;height:1.4rem;width:1.4rem;border-radius:.2rem;color:var(--color-light-grey-200);font-size:1rem;font-family:"Roboto Mono",monospace;font-weight:700;user-select:none;margin-left:.5rem}.data-product__viewer__models-documentation__filter__tree__node__type-icon--class{background:var(--color-purple-400)}.data-product__viewer__models-documentation__filter__tree__node__type-icon--enumeration{background:var(--color-pink-300)}.data-product__viewer__models-documentation__filter__tree__node__type-icon--association{background:var(--color-green-200)}.data-product__viewer__models-documentation__filter__tree__node__type-icon--package{color:var(--color-dark-grey-400)}.data-product__viewer__models-documentation__filter__tree__node__checker{display:flex;align-items:center;justify-content:center;flex-grow:0;flex-shrink:0;width:1.4rem;height:100%}.data-product__viewer__models-documentation__filter__tree__node__checker svg{color:var(--color-dark-grey-500);font-size:1.2rem}.data-product__viewer__models-documentation__filter__tree__node__checker:hover svg{color:var(--color-light-grey-300)}.data-product__viewer__models-documentation__filter__tree__node__expand-icon{display:flex;align-items:center;justify-content:center;flex-grow:0;flex-shrink:0;width:1.4rem;height:100%}.data-product__viewer__models-documentation__filter__tree__node__expand-icon svg{color:var(--color-light-grey-400);font-size:1.2rem}.data-product__viewer__models-documentation__filter__tree__node__label{font-size:1.2rem;color:var(--color-light-grey-400);user-select:none;margin-left:.5rem}.data-product__viewer__models-documentation__filter__tree__node__count{display:flex;align-items:center;justify-content:center;font-family:"Roboto Mono",monospace;margin-left:.5rem;height:1.4rem;background:var(--color-dark-grey-200);color:var(--color-dark-grey-500);padding:0 .3rem;border-radius:.2rem;font-size:.8rem;font-weight:700}.data-product__viewer__models-documentation__search{position:relative}.data-product__viewer__models-documentation__search__input{font-size:1.3rem;height:2.8rem;padding-right:5.6rem;padding-left:1rem;width:25rem;background:var(--color-dark-grey-85);border-radius:.2rem;border:.1rem solid var(--color-dark-grey-200)}.data-product__viewer__models-documentation__search__input__search__icon{display:flex;align-items:center;justify-content:center;position:absolute;top:0;right:.3rem;height:2.8rem;width:2.8rem}.data-product__viewer__models-documentation__search__input__search__icon svg{color:var(--color-light-shade-100)}.data-product__viewer__models-documentation__search__input__clear-btn{display:flex;align-items:center;justify-content:center;position:absolute;top:0;right:.3rem;height:2.8rem;width:2.8rem}.data-product__viewer__models-documentation__search__input__clear-btn svg{color:var(--color-dark-grey-400)}.data-product__viewer__models-documentation__search__input__clear-btn:hover svg{color:var(--color-dark-grey-500)}.data-product__viewer__models-documentation__search__input__config__trigger{display:flex;align-items:center;justify-content:center;position:absolute;top:0;right:3.1rem;height:2.8rem;width:1.8rem;cursor:pointer}.data-product__viewer__models-documentation__search__input__config__trigger svg{color:var(--color-dark-grey-400)}.data-product__viewer__models-documentation__search__input__config__trigger--toggled svg,.data-product__viewer__models-documentation__search__input__config__trigger:hover svg{color:var(--color-dark-grey-500)}.data-product__viewer__models-documentation__search__input__config__trigger--active svg,.data-product__viewer__models-documentation__search__input__config__trigger--active:hover svg{color:var(--color-blue-150)}.data-space__divider{border:#e0e0e0;height:1px;margin:2px 0 10px;background-color:#e0e0e0}.data-product__viewer__access-group__item{margin:3rem 0}.data-product__viewer__access-group__item__header{display:flex;align-items:center;justify-content:space-between;height:3rem;margin-bottom:1rem}.data-product__viewer__access-group__item__header-main{display:flex;align-items:center}.data-product__viewer__access-group__item__header__collapsible-content{animation:slideDown .2s ease-out}.data-product__viewer__access-group__item__header__caret{margin-left:.5rem;font-size:2rem;transition:transform .2s ease;transform:rotate(-180deg)}.data-product__viewer__access-group__item__header__caret--collapsed{transform:rotate(0deg)}.data-product__viewer__access-group__item__header__title{white-space:nowrap;text-overflow:ellipsis;overflow:hidden;word-break:normal;overflow-wrap:anywhere;text-align:left;color:var(--color-light-grey-400);font-size:2rem;font-weight:500}.data-product__viewer__access-group__item__header__type{display:flex;align-items:center;height:2rem;padding:0 .5rem;border-radius:.5rem;background:var(--color-dark-grey-500);color:var(--color-white);user-select:none;margin-left:.5rem;font-size:1.2rem;font-weight:700}.data-product__viewer__access-group__item__header__anchor{display:flex;align-items:center;margin-left:.5rem;cursor:pointer;display:none}.data-product__viewer__access-group__item__header__anchor svg{color:var(--color-dark-grey-300)}.data-product__viewer__access-group__item__header__anchor:hover svg{color:var(--color-dark-grey-400)}.data-product__viewer__access-group__item__header__actions{display:flex;align-items:center;gap:1rem}.data-product__viewer__access-group__item__header:hover .data-product__viewer__access-group__item__header__anchor{display:inline-flex}.data-product__viewer__access-group__item__description{margin-bottom:1rem}.data-product__viewer__access-group__item__content{display:flex;flex-direction:column;margin-top:1rem}.data-product__viewer__access-group__item__content__tab__header{display:flex;align-items:center;justify-content:space-between;height:3.8rem;border-bottom:.1rem solid var(--color-dark-grey-280);border-top:.1rem solid var(--color-dark-grey-280)}.data-product__viewer__access-group__item__content__tabs{display:flex;align-items:center;width:calc(100% - 19rem);overflow-x:auto}.data-product__viewer__access-group__item__content__tab{display:flex;align-items:center;padding:0 1rem;color:var(--color-dark-grey-300);user-select:none}.data-product__viewer__access-group__item__content__tab+.data-product__viewer__access-group__item__content__tab{border-left:.1rem solid var(--color-dark-grey-280)}.data-product__viewer__access-group__item__content__tab__label{white-space:nowrap;font-weight:500}.data-product__viewer__access-group__item__content__tab__icon--query{font-size:1.6rem}.data-product__viewer__access-group__item__content__tab__icon+.data-product__viewer__access-group__item__content__tab__label{margin-left:.5rem}.data-product__viewer__access-group__item__content__tab:hover .data-product__viewer__access-group__item__content__tab__label{color:var(--color-dark-grey-400)}.data-product__viewer__access-group__item__content__tab:hover .data-product__viewer__access-group__item__content__tab__icon svg{color:var(--color-dark-grey-400)}.data-product__viewer__access-group__item__content__tab--active:hover .data-product__viewer__access-group__item__content__tab__label,.data-product__viewer__access-group__item__content__tab--active .data-product__viewer__access-group__item__content__tab__label{color:var(--color-blue-200);font-weight:500}.data-product__viewer__access-group__item__content__tab--active:hover .data-product__viewer__access-group__item__content__tab__icon svg,.data-product__viewer__access-group__item__content__tab--active .data-product__viewer__access-group__item__content__tab__icon svg{color:var(--color-blue-200)}.data-product__viewer__access-group__item__content__tab__content{margin-top:1rem;height:fit-content}.data-product__viewer__access-group__item__content__action-tab-group{display:flex;width:19rem;border-left:.1rem solid var(--color-dark-grey-280)}.data-product__viewer__access-group__item__access__tooltip__icon{font-size:1.6rem;margin-left:.5rem}.data-product__viewer__access-group__tds__column-specs{height:100%}.data-product__viewer__access-group__tds__query{display:flex;align-items:center;justify-content:center;height:100%;border:.1rem solid var(--color-dark-grey-200)}.data-product__viewer__access-group__tds__query__actions{display:flex;flex-direction:column}.data-product__viewer__access-group__tds__query__action{display:flex;align-items:center;justify-content:center;height:2.8rem;width:25rem;border-radius:.2rem}.data-product__viewer__access-group__tds__query__action+.data-product__viewer__access-group__tds__query__action{margin-top:.5rem}.data-product__viewer__access-group__tds__placeholder-panel{height:100%;width:100%;border:.1rem solid var(--color-dark-grey-200)}.data-product__viewer__access-group__tds__query-text{display:flex;flex-direction:column;height:100%}.data-product__viewer__access-group__tds__query-text__content{height:calc(100% - 3.8rem);position:relative}.data-product__viewer__access-group__tds__query-text__actions{display:flex;align-items:center;justify-content:flex-end;height:3.8rem}.data-product__viewer__access-group__tds__query-text__action{display:flex;align-items:center;justify-content:center;height:2.8rem;width:2.8rem}.data-product__viewer__access-group__tds__query-text__action svg{color:var(--color-dark-grey-500)}.data-product__viewer__access-group__tds__query-text__action:hover svg{color:var(--color-light-grey-400)}.sql-playground-overlay{display:flex;flex-direction:row;align-items:center;justify-content:center;padding:1rem;height:100%}.sql-playground-modal-header{position:relative}.sql-playground-modal-header-actions{position:absolute;right:1rem;top:50%;transform:translateY(-50%);display:flex;gap:1rem}.sql-playground-modal__action{display:flex;align-items:center;justify-content:center;font-size:large}.sql-editor-modal{padding:0;height:100%;width:100%;overflow:hidden}.sql-editor-modal__root-container{margin-top:0 !important}.sql-editor-modal__header{display:flex;align-items:center;justify-content:space-between;height:3.4rem;padding:2rem 3rem}.sql-editor-modal__container{align-items:center !important}.sql-editor-modal__content{max-width:100vw !important}.sql-editor-modal__content--scrollable{max-width:100vw !important}.sql-editor-modal__paper{padding:0;overflow:hidden;display:flex;flex-direction:column}.sql-editor-modal__paper--windowed{width:80vw;height:80vh;border-radius:1rem}.sql-editor-modal__paper--maximized{width:100vw !important;height:100vw !important;max-width:100vw !important;max-height:100vh !important;border-radius:1rem}.sql-editor-modal .modal__body{height:calc(100% - 8.6rem);padding:0}.sql-editor-modal .modal__body.modal__body--footless{height:calc(100% - 3.6rem)}.data-product__viewer__tab-screen{display:flex;flex-direction:row;align-items:center;justify-content:center;height:30rem}.data-product__viewer__tab-screen .message-text{color:var(--color-light-grey-400)}.data-product__viewer__tab-screen__dropdown{width:20%}.data-product__viewer__tab-screen__btn{background-color:var(--color-blue-100);height:28px;color:var(--color-white);padding:4px 10px;border:2px;margin-left:10px;border-radius:5px;font-size:12px}.data-product__viewer__tab-screen__btn_with_icon{background-color:var(--color-dark-grey-300);height:28px;color:var(--color-white);padding:4px 10px;border:2px;margin-left:10px;border-radius:5px;font-size:12px;display:inline-flex;align-items:center;justify-content:center;gap:.5rem}.data-product__viewer__tab-screen__btn-label{flex:1;text-align:center}.data-product__viewer__tab-screen__icon{display:inline-flex}.data-product__viewer__tabs-bar{border-top:.06rem solid var(--color-light-grey-400);background:var(--color-white);width:100%}.data-product__viewer__tabs{border-bottom:.06rem solid var(--color-light-grey-400);min-height:3rem;background:var(--color-white)}.data-product__viewer__tabs .MuiTabs-indicator{display:none}.data-product__viewer__tab-code{display:flex;flex-direction:column;height:100%;width:100%}.data-product__viewer__tab-code__content{height:calc(100% - 3.8rem);border:.1rem solid var(--color-dark-grey-200);position:relative}.data-product__viewer__tab-code__actions{display:flex;align-items:center;justify-content:flex-end;gap:.5rem;min-height:3.8rem}@keyframes slideDown{from{opacity:0;max-height:0}to{opacity:1;max-height:100%}}.data-product__viewer__tab{min-height:3rem;padding:0 1rem;border-right:1px solid var(--color-light-grey-400);text-transform:none;background:rgba(0,0,0,0);font-size:.8rem;font-weight:600;color:#6c757d;display:flex;align-items:center;gap:.3rem}.data-product__viewer__tab span{font-size:1.2rem;font-weight:600}.data-product__viewer__tab:last-child{border-right:none}.data-product__viewer__tab--selected{color:var(--color-light-blue-400);font-weight:600}.label-container{display:flex;align-items:center;gap:.3rem}.data-product__viewer__tab-icon{font-size:1.2rem;vertical-align:middle;color:var(--color-light-grey-350)}.data-product__viewer__tab-icon--selected{font-size:1.2rem;vertical-align:middle;color:var(--color-light-blue-200)}.data-product__viewer__execution-context__context-icon{color:var(--color-lime-75)}.data-product__viewer__execution-context__entry{display:flex;align-items:center;height:3.4rem;width:100%}.data-product__viewer__execution-context__entry__icon{display:flex;align-items:center;justify-content:center;height:3.4rem;width:3.4rem;border-radius:.2rem 0 0 .2rem;background:var(--color-dark-grey-100)}.data-product__viewer__execution-context__entry__icon svg{font-size:1.6rem;color:var(--color-light-grey-200)}.data-product__viewer__execution-context__entry__content{display:flex;align-items:center;height:3.4rem;width:calc(100% - 3.4rem);border-radius:0 .2rem .2rem 0;border:.1rem solid var(--color-dark-grey-100);color:var(--color-light-grey-400);padding:0 1rem;background:var(--color-dark-grey-100);border-left:.1rem solid var(--color-dark-grey-50);user-select:none}.data-product__viewer__execution-context__entry__content__dropdown{width:100%}.data-product__viewer__execution-context__entry__content__dropdown__container{padding:.3rem}.data-product__viewer__execution-context__entry__content__dropdown__option{display:flex;align-items:center}.data-product__viewer__execution-context__entry__content__dropdown__option__tag{display:flex;align-items:center;background:var(--color-blue-200);height:1.8rem;padding:0 .5rem;margin-left:.5rem;border-radius:.2rem;font-size:1.2rem;color:var(--color-light-grey-100)}.data-product__viewer__execution-context__entry__content .selector-input--dark__control,.data-product__viewer__execution-context__entry__content .selector-input--dark__control:hover{border-color:var(--color-dark-grey-200)}.data-product__viewer__execution-context__entry__content__text{font-family:"Roboto Mono",monospace}.data-product__viewer__execution-context__entry+.data-product__viewer__execution-context__entry{margin-top:.5rem}.data-product__viewer__execution-context__mapping{margin-bottom:2rem}.data-product__viewer__info__project-info__label{white-space:nowrap;text-overflow:ellipsis;overflow:hidden;word-break:normal;overflow-wrap:anywhere;text-align:left;height:100%;width:15rem;min-width:15rem;border-radius:.2rem 0 0 .2rem;padding:0 1rem;line-height:2.8rem;background:var(--color-blue-100);color:var(--color-dark-grey-100);font-weight:500}.data-product__viewer__info__project-info__value{white-space:nowrap;text-overflow:ellipsis;overflow:hidden;word-break:normal;overflow-wrap:anywhere;text-align:left;height:100%;width:calc(100% - 17.8rem);padding:0 1rem;background:var(--color-dark-grey-100);font-weight:500;color:var(--color-blue-50);font-family:"Roboto Mono",monospace}.data-product__viewer__info__project-info__link{display:flex;align-items:center;justify-content:center;height:100%;width:2.8rem;background:var(--color-dark-grey-100);color:var(--color-light-shade-100);border-radius:0 .2rem .2rem 0;border-left:.1rem solid var(--color-dark-shade-250)}.data-product__viewer__info__project-info__link svg{font-size:1.2rem}.data-product__viewer__info__section{cursor:default;margin:.5rem 0 3rem}.data-product__viewer__info__section__title{display:flex;align-items:center;font-weight:500;color:var(--color-dark-grey-500);margin-bottom:1rem;line-height:2rem;cursor:default}.data-product__viewer__info__section__entry{display:flex;align-items:center;height:2.8rem;margin:.5rem 0;width:100%}.data-product__viewer__info__tagged-value__tag{white-space:nowrap;text-overflow:ellipsis;overflow:hidden;word-break:normal;overflow-wrap:anywhere;text-align:left;height:100%;width:15rem;min-width:15rem;border-radius:.2rem 0 0 .2rem;padding:0 1rem;line-height:2.8rem;background:var(--color-purple-400);color:var(--color-light-grey-400);font-weight:500}.data-product__viewer__info__tagged-value__value{white-space:nowrap;text-overflow:ellipsis;overflow:hidden;word-break:normal;overflow-wrap:anywhere;text-align:left;height:100%;width:calc(100% - 15rem);border-radius:0 .2rem .2rem 0;padding:0 1rem;line-height:2.8rem;background:var(--color-dark-grey-100);color:var(--color-light-grey-400)}.data-product__viewer__info__steoreotype{display:flex;align-items:center;height:100%;border-radius:.2rem;padding:0 1rem;line-height:2.8rem;background:var(--color-purple-400);color:var(--color-light-grey-400);font-weight:500}.data-product__viewer__info__section__placeholder{display:flex;align-items:center;justify-content:center;height:4rem;width:100%;color:var(--color-dark-grey-300);font-weight:500;border:.2rem dashed var(--color-dark-grey-200)}.data-product__viewer__support__section+.data-product__viewer__support__section{margin-top:2rem}.data-product__viewer__support__entry{display:flex;align-items:center;height:3.4rem;width:100%}.data-product__viewer__support__entry__icon{display:flex;align-items:center;justify-content:center;height:3.4rem;width:3.4rem;border-radius:.2rem 0 0 .2rem;background:var(--color-dark-grey-100)}.data-product__viewer__support__entry__icon svg{font-size:1.6rem;color:var(--color-light-grey-200)}.data-product__viewer__support__entry__icon--website svg{font-size:2rem}.data-product__viewer__support__entry__icon--support svg,.data-product__viewer__support__entry__icon--faq svg{font-size:1.8rem}.data-product__viewer__support__entry__content{display:flex;align-items:center;height:3.4rem;width:calc(100% - 3.4rem);border-radius:0 .2rem .2rem 0;border:.1rem solid var(--color-dark-grey-100);color:var(--color-light-grey-400);padding:0 1rem;font-family:"Roboto Mono",monospace;background:var(--color-dark-grey-100);border-left:.1rem solid var(--color-dark-grey-50);user-select:none}.data-product__viewer__support__entry+.data-product__viewer__support__entry{margin-top:.5rem}.data-product__viewer__tooltip{border-radius:.2rem !important;background:var(--color-dark-grey-200) !important;opacity:.9 !important;transition:none;max-height:30rem;overflow:auto;margin-top:.5rem !important}.data-product__viewer__tooltip--right{margin:0 .5rem !important}.data-product__viewer__tooltip__content{padding:.5rem}.data-product__viewer__tooltip__item{display:flex;line-height:1.6rem}.data-product__viewer__tooltip__item__label{font-size:1.3rem;user-select:none;cursor:default;color:var(--color-dark-grey-500)}.data-product__viewer__tooltip__item__value{font-size:1.3rem;user-select:none;cursor:default;font-weight:500;margin-left:.5rem;max-width:50rem;white-space:pre-line}.data-product__viewer__more-info__container{width:100%;height:calc(100% - 3.8rem);border:.1rem solid var(--color-dark-grey-200);position:relative}.data-product__viewer__more-info__loading-indicator{height:10rem}.data-product__viewer__more-info__columns-grid{height:300px}.data-product__viewer__more-info__columns-grid--auto-height{height:fit-content}.data-product__viewer__more-info__columns-grid--auto-height--empty .ag-root-wrapper-body{height:10rem}.data-product__viewer__more-info__columns-grid--auto-height--non-empty .ag-center-cols-viewport{min-height:unset}.data-product__viewer__more-info__grammar{height:300px}.data-product__viewer__sample-queries__content{display:flex;flex-direction:column;gap:1rem}.data-product__viewer__sample-query__item{border:.1rem solid var(--color-light-grey-200);border-radius:.2rem;background:var(--color-white);margin-bottom:1rem}.data-product__viewer__sample-query__item__header{display:flex;align-items:center;width:100%;cursor:pointer;padding:1rem;background:rgba(0,0,0,0);border:none;text-align:left;color:inherit;gap:1rem}.data-product__viewer__sample-query__item__header:hover{background:var(--color-light-grey-100)}.data-product__viewer__sample-query__item__header__icon{display:flex;align-items:center;justify-content:center;width:2rem;height:2rem;flex-shrink:0}.data-product__viewer__sample-query__item__header__icon svg{font-size:1.8rem;color:var(--color-dark-grey-400)}.data-product__viewer__sample-query__item__header__content{flex:1;overflow:hidden}.data-product__viewer__sample-query__item__header__title{font-weight:500;font-size:1.4rem;color:var(--color-dark-grey-500)}.data-product__viewer__sample-query__item__header__description{font-size:1.2rem;color:var(--color-dark-grey-400);margin-top:.3rem}.data-product__viewer__sample-query__item__content{padding:0 1rem 1rem 4rem}.data-product__viewer__sample-query__item__content__query{height:20rem;border:.1rem solid var(--color-light-grey-200);border-radius:.2rem;overflow:hidden}.data-product__viewer__sample-query__item__content__info{font-size:1.2rem;color:var(--color-dark-grey-400);padding:1rem;font-family:"Roboto Mono",monospace}.data-product__viewer__access-point__info{display:flex;justify-content:space-between;gap:.5rem}.data-product__viewer__access-point__details{display:block}.data-product__viewer__access-point__tags{display:flex;gap:.5rem;align-items:center}:root{--color-legacylight-light-grey-100: #edf0f1;--color-legacylight-light-grey-200: #dce2e4;--color-legacylight-light-grey-300: #b5bec4;--color-legacylight-light-grey-400: #95a0a8;--color-legacylight-dark-grey-200: #29323a;--color-legacylight-dark-grey-400: #4e5364;--color-legacylight-light-blue-50: #def3ff;--color-legacylight-light-blue-100: #7399c6;--color-legacylight-light-blue-200: #6a8db6;--color-legacylight-light-blue-250: #687b93;--color-legacylight-light-blue-270: #597089;--color-legacylight-light-blue-300: #4d6f9c;--color-legacylight-light-blue-350: #475b72;--color-legacylight-light-blue-400: #1b4c8c;--color-legacylight-light-blue-600: #2d3d51;--color-legacylight-green-100: #5cb65c;--color-legacylight-orange-100: #f68f1e;--color-legacylight-orange-150: #ea8212;--color-hclight-white: #fff;--color-hclight-black: #000;--color-hclight-grey-5: #fbfbfb;--color-hclight-grey-10: #f2f5f7;--color-hclight-grey-15: #e1e7ea;--color-hclight-grey-20: #dce3e8;--color-hclight-grey-30: #c1ccd6;--color-hclight-grey-40: #9fb1bd;--color-hclight-grey-50: #7a909e;--color-hclight-grey-60: #5b7282;--color-hclight-grey-70: #3e5463;--color-hclight-grey-80: #2a3f4d;--color-hclight-grey-90: #1c2b36;--color-hclight-grey-shade-10: #00000014;--color-hclight-grey-shade-30: #00000045;--color-hclight-grey-shade-40: #00000061;--color-hclight-grey-shade-50: #0000008a;--color-hclight-grey-shade-60: #0000009c;--color-hclight-ultramarine-90: #23254d;--color-hclight-aqua-10: #ebf3f7;--color-hclight-aqua-20: #c9e7f5;--color-hclight-aqua-30: #8bd3f7;--color-hclight-aqua-90: #0c2b45;--color-hclight-blue-10: #f0f4fa;--color-hclight-blue-20: #d4e4fa;--color-hclight-blue-30: #adccf7;--color-hclight-blue-50: #3d8df5;--color-hclight-blue-60: #186ade;--color-hclight-blue-70: #0d4ea6;--color-hclight-blue-80: #103a75;--color-hclight-blue-90: #11294d;--color-hclight-blue-shade-10: #3e8df512;--color-hclight-green-40: #43c478;--color-hclight-green-50: #16a163;--color-hclight-green-60: #077d55;--color-hclight-lime-30: #aad971;--color-hclight-lime-40: #78bf39;--color-hclight-lime-50: #52a31d;--color-hclight-yellow-5: #fff9e3;--color-hclight-yellow-10: #faf6cf;--color-hclight-yellow-15: #fff5d0;--color-hclight-yellow-20: #f7e379;--color-hclight-yellow-30: #f5c518;--color-hclight-orange-40: #fc9162;--color-hclight-orange-50: #e86427;--color-hclight-red-50: #fa5343;--color-hclight-red-60: #d91f11;--color-hclight-pink-40: #fa87d4;--color-hclight-pink-50: #ed4cb7;--color-hclight-pink-60: #cc1d92;--color-hclight-purple-50: #ac71f0;--color-hclight-purple-60: #8f49de}.theme__hc-light .data-product__viewer{background:var(--color-hclight-white);color:var(--color-hclight-grey-90)}.theme__hc-light .data-product__viewer__header--floating{background:var(--color-hclight-white)}.theme__hc-light .data-product__viewer__header__title{background:var(--color-hclight-blue-60)}.theme__hc-light .data-product__viewer__header__title__label{color:var(--color-hclight-white)}.theme__hc-light .data-product__viewer__header__title__verified-badge{color:var(--color-hclight-white)}.theme__hc-light .data-product__viewer__header__actions{background:var(--color-hclight-white);border-color:var(--color-hclight-blue-50)}.theme__hc-light .data-product__viewer__header__execution-context-selector__trigger__icon{border-right-color:var(--color-hclight-blue-20)}.theme__hc-light .data-product__viewer__header__execution-context-selector__trigger__icon svg{color:var(--color-hclight-blue-50)}.theme__hc-light .data-product__viewer__header__execution-context-selector__trigger__label{color:var(--color-hclight-blue-50)}.theme__hc-light .data-product__viewer__header__execution-context-selector__trigger__dropdown-icon svg{color:var(--color-hclight-blue-30)}.theme__hc-light .data-product__viewer__header__execution-context-selector__option--active{background:var(--color-hclight-blue-20)}.theme__hc-light .data-product__viewer__header__actions-selector{border-left-color:var(--color-hclight-blue-50)}.theme__hc-light .data-product__viewer__header__actions-selector svg{color:var(--color-hclight-blue-50)}.theme__hc-light .data-product__viewer__header__actions-selector:hover svg{color:var(--color-hclight-blue-60)}.theme__hc-light .data-product__viewer__frame{background:var(--color-hclight-grey-10)}.theme__hc-light .data-product__viewer__content{background:var(--color-hclight-white)}.theme__hc-light .data-product__viewer__grid{--ag-border-color: var(--color-hclight-grey-30);--ag-background-color: var(--color-hclight-white);--ag-foreground-color: var(--color-hclight-grey-90);--ag-header-background-color: var(--color-hclight-grey-10);--ag-header-foreground-color: var(--color-hclight-grey-90);--ag-balham-active-color: transparent;--ag-odd-row-background-color: var(--color-hclight-white);--ag-even-row-background-color: var(--color-hclight-white);--ag-row-hover-color: var(--color-hclight-grey-5);--ag-row-border-color: var(--color-hclight-grey-30)}.theme__hc-light .data-product__viewer__grid--empty{background:var(--color-hclight-white);color:var(--color-hclight-grey-60)}.theme__hc-light .data-product__viewer__grid__empty-cell{color:var(--color-hclight-grey-30)}.theme__hc-light .data-product__viewer__grid .ag-center-cols-viewport{background:repeating-linear-gradient(135deg, var(--color-hclight-white), var(--color-hclight-white) 0.5rem, var(--color-hclight-grey-5) 0.5rem, var(--color-hclight-grey-5) 1rem)}.theme__hc-light .data-product__viewer__grid ::-webkit-scrollbar-thumb{background:var(--color-hclight-grey-15);border:.1rem solid rgba(0,0,0,0);background-clip:content-box;border-radius:.4rem}.theme__hc-light .data-product__viewer__grid ::-webkit-scrollbar-track-piece{background:rgba(0,0,0,0)}.theme__hc-light .data-product__viewer__scroller{background:var(--color-hclight-blue-60)}.theme__hc-light .data-product__viewer__scroller__btn:focus{outline:none}.theme__hc-light .data-product__viewer__scroller__percentage{background:var(--color-hclight-blue-70);color:var(--color-hclight-white)}.theme__hc-light .data-product__viewer__activity-bar{background:var(--color-hclight-grey-20)}.theme__hc-light .data-product__viewer__activity-bar ::-webkit-scrollbar-thumb{background:var(--color-hclight-grey-30)}.theme__hc-light .data-product__viewer__activity-bar ::-webkit-scrollbar-track-piece{background:rgba(0,0,0,0)}.theme__hc-light .data-product__viewer__activity-bar__menu{border-color:var(--color-hclight-grey-30)}.theme__hc-light .data-product__viewer__activity-bar__menu-item{color:var(--color-hclight-aqua-90)}.theme__hc-light .data-product__viewer__activity-bar__item{color:var(--color-hclight-grey-40)}.theme__hc-light .data-product__viewer__activity-bar__item:hover,.theme__hc-light .data-product__viewer__activity-bar__item--active{color:var(--color-hclight-aqua-90)}.theme__hc-light .data-product__viewer__activity-bar__divider{background:var(--color-hclight-grey-30)}.theme__hc-light .data-product__viewer__activity-bar__item__experimental-badge{background:var(--color-hclight-blue-50);border-color:var(--color-hclight-grey-20)}.theme__hc-light .data-product__viewer__activity-bar__item__experimental-badge svg{color:var(--color-hclight-grey-20)}.theme__hc-light .data-product__viewer__panel__header{color:var(--color-hclight-blue-60);border-bottom-color:var(--color-hclight-blue-60)}.theme__hc-light .data-product__viewer__panel__content__placeholder{color:var(--color-hclight-grey-40)}.theme__hc-light .data-product__viewer__panel__content__placeholder svg{color:var(--color-hclight-blue-50)}.theme__hc-light .data-product__viewer__wiki__placeholder{color:var(--color-hclight-grey-40)}.theme__hc-light .data-product__viewer__wiki__section__header{color:var(--color-hclight-blue-60);border-bottom-color:var(--color-hclight-blue-60)}.theme__hc-light .data-product__viewer__wiki__section__header__anchor{color:var(--color-hclight-blue-60);border-bottom-color:var(--color-hclight-blue-60)}.theme__hc-light .data-product__viewer__wiki__section__header__anchor svg{color:var(--color-hclight-grey-30)}.theme__hc-light .data-product__viewer__wiki__section__header__anchor:hover svg{color:var(--color-hclight-grey-60)}.theme__hc-light .data-product__viewer__wiki__section__header__documentation{color:var(--color-hclight-blue-60)}.theme__hc-light .data-product__viewer__markdown-text-viewer.markdown-content{background:var(--color-hclight-white);color:var(--color-hclight-grey-90)}.theme__hc-light .data-product__viewer__markdown-text-viewer.markdown-content a{color:var(--color-hclight-blue-50)}.theme__hc-light .data-product__viewer__markdown-text-viewer.markdown-content pre{background:var(--color-hclight-grey-90)}.theme__hc-light .data-product__viewer__markdown-text-viewer.markdown-content pre code{color:var(--color-hclight-white)}.theme__hc-light .data-product__viewer__diagram-viewer__carousel__frame__indicator--active svg{color:var(--color-hclight-blue-60)}.theme__hc-light .data-product__viewer__diagram-viewer .diagram-canvas{border-color:var(--color-hclight-grey-60)}.theme__hc-light .data-product__viewer__diagram-viewer__header__navigation__pager{border-left-color:var(--color-hclight-grey-20)}.theme__hc-light .data-product__viewer__diagram-viewer__header__navigation__selector__icon{color:var(--color-hclight-grey-70)}.theme__hc-light .data-product__viewer__diagram-viewer__header__group__separator{border-color:var(--color-hclight-grey-20)}.theme__hc-light .data-product__viewer__diagram-viewer__header__dropdown{border-color:var(--color-hclight-grey-20)}.theme__hc-light .data-product__viewer__diagram-viewer__header__dropdown__label{color:var(--color-hclight-grey-90)}.theme__hc-light .data-product__viewer__diagram-viewer__header__dropdown__trigger svg{color:var(--color-hclight-grey-60)}.theme__hc-light .data-product__viewer__diagram-viewer__header__tool:hover svg{color:var(--color-hclight-grey-70)}.theme__hc-light .data-product__viewer__diagram-viewer__header__tool:hover[disabled] svg,.theme__hc-light .data-product__viewer__diagram-viewer__header__tool[disabled] svg{color:var(--color-hclight-grey-20)}.theme__hc-light .data-product__viewer__diagram-viewer__header__tool svg{color:var(--color-hclight-grey-50)}.theme__hc-light .data-product__viewer__diagram-viewer__header__tool--active:hover,.theme__hc-light .data-product__viewer__diagram-viewer__header__tool--active{background:var(--color-hclight-grey-10);border-color:var(--color-hclight-blue-50)}.theme__hc-light .data-product__viewer__diagram-viewer__header__tool--active:hover svg,.theme__hc-light .data-product__viewer__diagram-viewer__header__tool--active svg{color:var(--color-hclight-blue-50)}.theme__hc-light .data-product__viewer__diagram-viewer__description{background:var(--color-hclight-grey-shade-60)}.theme__hc-light .data-product__viewer__diagram-viewer__description__title{color:var(--color-hclight-white)}.theme__hc-light .data-product__viewer__diagram-viewer__description__content .data-space__viewer__markdown-text-viewer{background:rgba(0,0,0,0);color:var(--color-hclight-white)}.theme__hc-light .data-product__viewer__diagram-viewer__description__content__placeholder{color:var(--color-hclight-grey-20)}.theme__hc-light .data-product__viewer__diagram-viewer__description ::-webkit-scrollbar-thumb{background:var(--color-hclight-grey-30);border:.2rem solid rgba(0,0,0,0);background-clip:content-box;border-radius:.4rem}.theme__hc-light .data-product__viewer__diagram-viewer__description ::-webkit-scrollbar-track-piece{background:rgba(0,0,0,0)}.theme__hc-light .data-product__viewer__diagram-viewer__description__close-btn svg{color:var(--color-hclight-grey-30)}.theme__hc-light .data-product__viewer__diagram-viewer__description__close-btn:hover svg{color:var(--color-hclight-grey-20)}.theme__hc-light .data-product__viewer__diagram-viewer__description__expand-btn svg{color:var(--color-hclight-grey-30)}.theme__hc-light .data-product__viewer__diagram-viewer__description__expand-btn:hover svg{color:var(--color-hclight-grey-20)}.theme__hc-light .data-product__viewer__models-documentation__search__input-group__icon svg{color:var(--color-hclight-grey-80)}.theme__hc-light .data-product__viewer__models-documentation__grid__cell__label__icon{color:var(--color-hclight-white)}.theme__hc-light .data-product__viewer__models-documentation__grid__cell__label__icon--class{background:var(--color-hclight-purple-60)}.theme__hc-light .data-product__viewer__models-documentation__grid__cell__label__icon--enumeration{background:var(--color-hclight-pink-50)}.theme__hc-light .data-product__viewer__models-documentation__grid__cell__label__icon--association{background:var(--color-hclight-green-40)}.theme__hc-light .data-product__viewer__models-documentation__grid__cell__label__icon--property{background:var(--color-hclight-blue-50)}.theme__hc-light .data-product__viewer__models-documentation__grid__cell__label__icon--enum{background:var(--color-hclight-orange-40)}.theme__hc-light .data-product__viewer__models-documentation__grid__cell__label__derived-property-badge{background:var(--color-hclight-grey-10);color:var(--color-hclight-blue-50)}.theme__hc-light .data-product__viewer__models-documentation__grid__cell__label__milestoning-badge svg{color:var(--color-hclight-blue-50)}.theme__hc-light .data-product__viewer__models-documentation__grid__cell__action{color:var(--color-hclight-grey-30)}.theme__hc-light .data-product__viewer__models-documentation__grid__cell__action:hover{color:var(--color-hclight-grey-60)}.theme__hc-light .data-product__viewer__models-documentation__grid__element-row{background:var(--color-hclight-yellow-5);color:var(--color-hclight-grey-90);--ag-row-hover-color: var(--color-hclight-yellow-15)}.theme__hc-light .data-product__viewer__models-documentation__filter__toggler{border-color:var(--color-hclight-grey-20);color:var(--color-hclight-grey-50)}.theme__hc-light .data-product__viewer__models-documentation__filter__toggler:hover{color:var(--color-hclight-grey-70)}.theme__hc-light .data-product__viewer__models-documentation__filter__toggler__icon{border-color:var(--color-hclight-grey-30)}.theme__hc-light .data-product__viewer__models-documentation__filter__panel{background:var(--color-hclight-white);border-color:var(--color-hclight-grey-20);color:var(--color-hclight-grey-70)}.theme__hc-light .data-product__viewer__models-documentation__filter__group{border-color:var(--color-hclight-grey-20)}.theme__hc-light .data-product__viewer__models-documentation__filter__group__header__reset{color:var(--color-hclight-blue-50)}.theme__hc-light .data-product__viewer__models-documentation__filter__group__header__reset:hover{color:var(--color-hclight-blue-60)}.theme__hc-light .data-product__viewer__models-documentation__filter__group__header__reset[disabled],.theme__hc-light .data-product__viewer__models-documentation__filter__group__header__reset[disabled]:hover{color:var(--color-hclight-grey-40)}.theme__hc-light .data-product__viewer__models-documentation__filter__tree__node__container:hover{background:var(--color-hclight-blue-shade-10)}.theme__hc-light .data-product__viewer__models-documentation__filter__tree__node__type-icon{color:var(--color-hclight-white)}.theme__hc-light .data-product__viewer__models-documentation__filter__tree__node__type-icon--class{background:var(--color-hclight-purple-60)}.theme__hc-light .data-product__viewer__models-documentation__filter__tree__node__type-icon--enumeration{background:var(--color-hclight-pink-50)}.theme__hc-light .data-product__viewer__models-documentation__filter__tree__node__type-icon--association{background:var(--color-hclight-green-40)}.theme__hc-light .data-product__viewer__models-documentation__filter__tree__node__type-icon--package{color:var(--color-hclight-grey-30)}.theme__hc-light .data-product__viewer__models-documentation__filter__tree__node__checker svg{color:var(--color-hclight-grey-40)}.theme__hc-light .data-product__viewer__models-documentation__filter__tree__node__checker:hover svg{color:var(--color-hclight-grey-50)}.theme__hc-light .data-product__viewer__models-documentation__filter__tree__node__expand-icon svg{color:var(--color-hclight-grey-50)}.theme__hc-light .data-product__viewer__models-documentation__filter__tree__node__label{color:var(--color-hclight-grey-80)}.theme__hc-light .data-product__viewer__models-documentation__filter__tree__node__count{background:var(--color-hclight-grey-15);color:var(--color-hclight-grey-50)}.theme__hc-light .data-product__viewer__models-documentation__search__input{background:var(--color-hclight-white);border-color:var(--color-hclight-grey-20);color:var(--color-hclight-grey-90)}.theme__hc-light .data-product__viewer__models-documentation__search__input:focus{border-color:var(--color-hclight-grey-30)}.theme__hc-light .data-product__viewer__models-documentation__search__input__search__icon svg{color:var(--color-hclight-grey-30)}.theme__hc-light .data-product__viewer__models-documentation__search__input__clear-btn svg{color:var(--color-hclight-grey-50)}.theme__hc-light .data-product__viewer__models-documentation__search__input__clear-btn:hover svg{color:var(--color-hclight-grey-70)}.theme__hc-light .data-product__viewer__models-documentation__search__input__config__trigger svg{color:var(--color-hclight-grey-50)}.theme__hc-light .data-product__viewer__models-documentation__search__input__config__trigger--toggled svg,.theme__hc-light .data-product__viewer__models-documentation__search__input__config__trigger:hover svg{color:var(--color-hclight-grey-70)}.theme__hc-light .data-product__viewer__models-documentation__search__input__config__trigger--active svg,.theme__hc-light .data-product__viewer__models-documentation__search__input__config__trigger--active:hover svg{color:var(--color-hclight-blue-50)}.theme__hc-light .data-product__viewer__execution-context__entry__icon{background:var(--color-hclight-grey-10)}.theme__hc-light .data-product__viewer__execution-context__entry__content{border-color:var(--color-hclight-grey-10);color:var(--color-hclight-grey-70);background:var(--color-hclight-grey-10);border-left-color:var(--color-hclight-grey-30)}.theme__hc-light .data-product__viewer__execution-context__entry__content__dropdown__option__tag{background:var(--color-hclight-blue-70);color:var(--color-hclight-white)}.theme__hc-light .data-product__viewer__execution-context__entry__content .selector-input__control,.theme__hc-light .data-product__viewer__execution-context__entry__content .selector-input__control:hover{border-color:var(--color-hclight-grey-20)}.theme__hc-light .data-product__viewer__info__project-info__label{background:var(--color-hclight-blue-50);color:var(--color-hclight-white)}.theme__hc-light .data-product__viewer__info__project-info__value{background:var(--color-hclight-grey-10);color:var(--color-hclight-grey-70)}.theme__hc-light .data-product__viewer__info__project-info__link{background:var(--color-hclight-grey-10);color:var(--color-hclight-grey-60);border-color:var(--color-hclight-grey-30)}.theme__hc-light .data-product__viewer__info__section__title{color:var(--color-hclight-grey-90)}.theme__hc-light .data-product__viewer__info__tagged-value__tag{background:var(--color-hclight-orange-50);color:var(--color-hclight-white)}.theme__hc-light .data-product__viewer__info__tagged-value__value{background:var(--color-hclight-grey-10);color:var(--color-hclight-grey-70)}.theme__hc-light .data-product__viewer__info__steoreotype{background:var(--color-hclight-orange-50);color:var(--color-hclight-white)}.theme__hc-light .data-product__viewer__info__section__placeholder{color:var(--color-hclight-grey-30);border-color:var(--color-hclight-grey-30)}.theme__hc-light .data-product__viewer__support__entry__icon{background:var(--color-hclight-grey-10)}.theme__hc-light .data-product__viewer__support__entry__icon svg{color:var(--color-hclight-grey-70)}.theme__hc-light .data-product__viewer__support__entry__content{border-color:rgba(0,0,0,0);color:var(--color-hclight-grey-70);background:var(--color-hclight-grey-10);border-left-color:var(--color-hclight-grey-30)}.theme__hc-light .data-product__viewer__access-group__item__header__title{color:var(--color-hclight-aqua-90)}.theme__hc-light .data-product__viewer__access-group__item__header__anchor{color:var(--color-hclight-blue-60)}.theme__hc-light .data-product__viewer__access-group__item__header__anchor svg{color:var(--color-hclight-grey-30)}.theme__hc-light .data-product__viewer__access-group__item__header__anchor:hover svg{color:var(--color-hclight-grey-60)}.theme__hc-light .data-product__viewer__access-group__item__content__tab__header{border-bottom-color:var(--color-hclight-grey-15);border-top-color:var(--color-hclight-grey-15)}.theme__hc-light .data-product__viewer__access-group__item__content__tab{color:var(--color-hclight-grey-60);border-left-color:var(--color-hclight-grey-15)}.theme__hc-light .data-product__viewer__access-group__item__content__tab:hover .theme__hc-light .data-product__viewer__access-group__item__content__tab__label{color:var(--color-hclight-grey-70)}.theme__hc-light .data-product__viewer__access-group__item__content__tab:hover .theme__hc-light .data-product__viewer__access-group__item__content__tab__icon svg{color:var(--color-hclight-grey-70)}.theme__hc-light .data-product__viewer__access-group__item__content__tab--active:hover .theme__hc-light .data-product__viewer__access-group__item__content__tab__label,.theme__hc-light .data-product__viewer__access-group__item__content__tab--active .theme__hc-light .data-product__viewer__access-group__item__content__tab__label{color:var(--color-hclight-blue-60)}.theme__hc-light .data-product__viewer__access-group__item__content__tab--active:hover .theme__hc-light .data-product__viewer__access-group__item__content__tab__icon svg,.theme__hc-light .data-product__viewer__access-group__item__content__tab--active .theme__hc-light .data-product__viewer__access-group__item__content__tab__icon svg{color:var(--color-hclight-blue-60)}.theme__hc-light .data-product__viewer__access-group__item__content__action-tab-group{border-left-color:var(--color-hclight-grey-15)}.theme__hc-light .data-product__viewer__access-group__tds__query{border-color:var(--color-hclight-grey-30)}.theme__hc-light .data-product__viewer__access-group__tds__placeholder-panel{border-color:var(--color-hclight-grey-30)}.theme__hc-light .data-product__viewer__access-group__tds__query-text__action svg{color:var(--color-hclight-grey-60)}.theme__hc-light .data-product__viewer__access-group__tds__query-text__action:hover svg{color:var(--color-hclight-grey-80)}.theme__hc-light .data-product__viewer__access-group__tds__code-action{border-color:var(--color-hclight-grey-30)}.theme__hc-light .data-product__viewer__access-group__tds__code-action__content{border-color:var(--color-hclight-grey-30)}.theme__hc-light .data-product__viewer__access-group__tds__code-action__action svg{color:var(--color-hclight-grey-60)}.theme__hc-light .data-product__viewer__access-group__tds__code-action__action:hover svg{color:var(--color-hclight-grey-80)}/*# sourceMappingURL=index.css.map */
|