@ohif/app 3.8.0-beta.87 → 3.8.0-beta.89
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/dist/{117.bundle.a5e6959bf225da5cf4ed.js → 117.bundle.a18b236cfb25b1daa254.js} +5 -0
- package/dist/{164.bundle.96c0518b435ea19ef8c4.js → 164.bundle.0860b89ac7bde6ee83b0.js} +5 -0
- package/dist/{206.bundle.096c1d86defe1cf7e9ae.js → 206.bundle.13d55d34e230296a4877.js} +2 -2
- package/dist/{295.bundle.5ace95771ced62bdcab8.js → 295.bundle.c935ed0430aa026f7591.js} +0 -1
- package/dist/{321.bundle.7d6d0ead9384fcb67a5c.js → 321.bundle.678bd59ee7034535f7b0.js} +35 -22
- package/dist/{416.bundle.837e0b84baddd2193d67.js → 416.bundle.f0716b63934f985aeaf5.js} +19 -23
- package/dist/{574.bundle.d6f15a036af7ecaf82f9.js → 574.bundle.a17af135ea650e98d81c.js} +1 -1
- package/dist/{633.bundle.ad22fd57eb95ee5f056a.js → 633.bundle.00ea9d46f50f2d5bae4f.js} +3 -1
- package/dist/{7.bundle.ea90a6f6f1d4ab030dfb.js → 7.bundle.1da865aba66a8a4556c7.js} +20 -2
- package/dist/{app.bundle.177823343bc7e2b039a2.js → app.bundle.63284af341ee8095131d.js} +35 -31
- package/dist/app.bundle.css +1 -1
- package/dist/index.html +1 -1
- package/dist/{polySeg.bundle.43bf3490e07982491e2b.js → polySeg.bundle.e5d36c3ecb20902d3366.js} +1 -1
- package/dist/{suv-peak-worker.bundle.1f9b9e6887eebc07c50a.js → suv-peak-worker.bundle.d7f73324bbc3b9d1e0c2.js} +1 -1
- package/dist/sw.js +1 -1
- package/package.json +18 -18
- /package/dist/{188.bundle.bef5c8babdde7064bdbe.js → 188.bundle.b088e4f452f405860b43.js} +0 -0
- /package/dist/{325.bundle.357db826733b5379bd1d.js → 325.bundle.9f0d557f18a8f67db4cc.js} +0 -0
- /package/dist/{41.bundle.2f52dafa60516e97cd03.js → 41.bundle.f7c3a8391f37d953f9e4.js} +0 -0
- /package/dist/{448.bundle.7c47e50e0db23eeace58.js → 448.bundle.6ca163e62b1a53bb733a.js} +0 -0
- /package/dist/{487.bundle.adf730aff4ec37332b88.js → 487.bundle.75b0ef0a24e6eb57273d.js} +0 -0
- /package/dist/{594.bundle.9a7fd38c5fc9823216e5.js → 594.bundle.5508a262c0806532b611.js} +0 -0
- /package/dist/{669.bundle.796543c57c658097fe75.js → 669.bundle.9c2b82292a9b08982d57.js} +0 -0
- /package/dist/{699.bundle.4d75ac5add81a2e4ef3b.js → 699.bundle.3d85bb118e71a52257c8.js} +0 -0
- /package/dist/{724.bundle.275035c2002c8fd78471.js → 724.bundle.c913afb5b32732d37ac7.js} +0 -0
- /package/dist/{783.bundle.b28ae6b134602470e2f1.js → 783.bundle.965f4ae8310199dcf163.js} +0 -0
- /package/dist/{889.bundle.1a646aa901e073328cad.js → 889.bundle.888d3ee599c5f1846c48.js} +0 -0
- /package/dist/{905.bundle.36ce5f219e58ff9ddf9b.js → 905.bundle.8accdcf80922e400d513.js} +0 -0
- /package/dist/{907.bundle.64fa9f550bd239e92346.js → 907.bundle.51455d31da82e241b875.js} +0 -0
- /package/dist/{94.bundle.d6749c52eb6327bd45de.js → 94.bundle.8e7205a15411781e2ada.js} +0 -0
- /package/dist/{961.bundle.6a18125a324bca120651.js → 961.bundle.8c9f3f1b3e35f1a56bad.js} +0 -0
|
@@ -1499,7 +1499,9 @@ class CentralizedWorkerManager {
|
|
|
1499
1499
|
});
|
|
1500
1500
|
}
|
|
1501
1501
|
const workerProperties = this.workerRegistry[workerName];
|
|
1502
|
+
workerProperties.processing = true;
|
|
1502
1503
|
const results = await api[methodName](args, ...finalCallbacks);
|
|
1504
|
+
workerProperties.processing = false;
|
|
1503
1505
|
workerProperties.lastActiveTime[index] = Date.now();
|
|
1504
1506
|
if (workerProperties.autoTerminateOnIdle &&
|
|
1505
1507
|
!workerProperties.idleCheckIntervalId &&
|
|
@@ -1523,6 +1525,9 @@ class CentralizedWorkerManager {
|
|
|
1523
1525
|
}
|
|
1524
1526
|
terminateIdleWorkers(workerName, idleTimeThreshold) {
|
|
1525
1527
|
const workerProperties = this.workerRegistry[workerName];
|
|
1528
|
+
if (workerProperties.processing) {
|
|
1529
|
+
return;
|
|
1530
|
+
}
|
|
1526
1531
|
const now = Date.now();
|
|
1527
1532
|
workerProperties.instances.forEach((_, index) => {
|
|
1528
1533
|
const lastActiveTime = workerProperties.lastActiveTime[index];
|
|
@@ -1486,7 +1486,9 @@ class CentralizedWorkerManager {
|
|
|
1486
1486
|
});
|
|
1487
1487
|
}
|
|
1488
1488
|
const workerProperties = this.workerRegistry[workerName];
|
|
1489
|
+
workerProperties.processing = true;
|
|
1489
1490
|
const results = await api[methodName](args, ...finalCallbacks);
|
|
1491
|
+
workerProperties.processing = false;
|
|
1490
1492
|
workerProperties.lastActiveTime[index] = Date.now();
|
|
1491
1493
|
if (workerProperties.autoTerminateOnIdle &&
|
|
1492
1494
|
!workerProperties.idleCheckIntervalId &&
|
|
@@ -1510,6 +1512,9 @@ class CentralizedWorkerManager {
|
|
|
1510
1512
|
}
|
|
1511
1513
|
terminateIdleWorkers(workerName, idleTimeThreshold) {
|
|
1512
1514
|
const workerProperties = this.workerRegistry[workerName];
|
|
1515
|
+
if (workerProperties.processing) {
|
|
1516
|
+
return;
|
|
1517
|
+
}
|
|
1513
1518
|
const now = Date.now();
|
|
1514
1519
|
workerProperties.instances.forEach((_, index) => {
|
|
1515
1520
|
const lastActiveTime = workerProperties.lastActiveTime[index];
|
|
@@ -2750,8 +2750,8 @@ function ViewerHeader({
|
|
|
2750
2750
|
hotkeyDefinitions,
|
|
2751
2751
|
hotkeyDefaults
|
|
2752
2752
|
} = hotkeysManager;
|
|
2753
|
-
const versionNumber = "3.8.0-beta.
|
|
2754
|
-
const commitHash = "
|
|
2753
|
+
const versionNumber = "3.8.0-beta.89";
|
|
2754
|
+
const commitHash = "52a0c59294a4161fcca0a6708855549034849951";
|
|
2755
2755
|
const menuOptions = [{
|
|
2756
2756
|
title: t('Header:About'),
|
|
2757
2757
|
icon: 'info',
|
|
@@ -10905,6 +10905,8 @@ const RENDERING_ENGINE_ID = 'OHIFCornerstoneRenderingEngine';
|
|
|
10905
10905
|
;// CONCATENATED MODULE: ../../../extensions/cornerstone/src/utils/getCornerstoneBlendMode.ts
|
|
10906
10906
|
|
|
10907
10907
|
const MIP = 'mip';
|
|
10908
|
+
const MINIP = 'minip';
|
|
10909
|
+
const AVG = 'avg';
|
|
10908
10910
|
function getCornerstoneBlendMode(blendMode) {
|
|
10909
10911
|
if (!blendMode) {
|
|
10910
10912
|
return esm.Enums.BlendModes.COMPOSITE;
|
|
@@ -10912,7 +10914,13 @@ function getCornerstoneBlendMode(blendMode) {
|
|
|
10912
10914
|
if (blendMode.toLowerCase() === MIP) {
|
|
10913
10915
|
return esm.Enums.BlendModes.MAXIMUM_INTENSITY_BLEND;
|
|
10914
10916
|
}
|
|
10915
|
-
|
|
10917
|
+
if (blendMode.toLowerCase() === MINIP) {
|
|
10918
|
+
return esm.Enums.BlendModes.MINIMUM_INTENSITY_BLEND;
|
|
10919
|
+
}
|
|
10920
|
+
if (blendMode.toLowerCase() === AVG) {
|
|
10921
|
+
return esm.Enums.BlendModes.AVERAGE_INTENSITY_BLEND;
|
|
10922
|
+
}
|
|
10923
|
+
throw new Error(`Unsupported blend mode: ${blendMode}`);
|
|
10916
10924
|
}
|
|
10917
10925
|
;// CONCATENATED MODULE: ../../../extensions/cornerstone/src/utils/getCornerstoneOrientation.ts
|
|
10918
10926
|
|
|
@@ -12040,32 +12048,37 @@ class CornerstoneViewportService extends src/* PubSubService */.Rc {
|
|
|
12040
12048
|
}
|
|
12041
12049
|
performResize() {
|
|
12042
12050
|
const isImmediate = false;
|
|
12043
|
-
|
|
12051
|
+
try {
|
|
12052
|
+
const viewports = this.getRenderingEngine().getViewports();
|
|
12044
12053
|
|
|
12045
|
-
|
|
12046
|
-
|
|
12047
|
-
|
|
12048
|
-
|
|
12049
|
-
|
|
12050
|
-
|
|
12051
|
-
|
|
12054
|
+
// Store the current position presentations for each viewport.
|
|
12055
|
+
viewports.forEach(({
|
|
12056
|
+
id
|
|
12057
|
+
}) => {
|
|
12058
|
+
const presentation = this.getPositionPresentation(id);
|
|
12059
|
+
this.beforeResizePositionPresentations.set(id, presentation);
|
|
12060
|
+
});
|
|
12052
12061
|
|
|
12053
|
-
|
|
12054
|
-
|
|
12055
|
-
|
|
12056
|
-
|
|
12062
|
+
// Resize the rendering engine and render.
|
|
12063
|
+
const renderingEngine = this.renderingEngine;
|
|
12064
|
+
renderingEngine.resize(isImmediate);
|
|
12065
|
+
renderingEngine.render();
|
|
12057
12066
|
|
|
12058
|
-
|
|
12059
|
-
|
|
12060
|
-
|
|
12061
|
-
|
|
12062
|
-
|
|
12067
|
+
// Reset the camera for viewports that should reset their camera on resize,
|
|
12068
|
+
// which means only those viewports that have a zoom level of 1.
|
|
12069
|
+
this.beforeResizePositionPresentations.forEach((positionPresentation, viewportId) => {
|
|
12070
|
+
this.setPresentations(viewportId, {
|
|
12071
|
+
positionPresentation
|
|
12072
|
+
});
|
|
12063
12073
|
});
|
|
12064
|
-
});
|
|
12065
12074
|
|
|
12066
|
-
|
|
12067
|
-
|
|
12068
|
-
|
|
12075
|
+
// Resize and render the rendering engine again.
|
|
12076
|
+
renderingEngine.resize(isImmediate);
|
|
12077
|
+
renderingEngine.render();
|
|
12078
|
+
} catch (e) {
|
|
12079
|
+
// This can happen if the resize is too close to navigation or shutdown
|
|
12080
|
+
console.warn('Caught resize exception', e);
|
|
12081
|
+
}
|
|
12069
12082
|
}
|
|
12070
12083
|
resetGridResizeTimeout() {
|
|
12071
12084
|
clearTimeout(this.gridResizeTimeOut);
|
|
@@ -23597,29 +23597,29 @@ function _hasNorm16TextureSupport() {
|
|
|
23597
23597
|
}
|
|
23598
23598
|
return false;
|
|
23599
23599
|
}
|
|
23600
|
-
function
|
|
23601
|
-
|
|
23602
|
-
|
|
23603
|
-
}
|
|
23604
|
-
|
|
23605
|
-
|
|
23600
|
+
function isIOS() {
|
|
23601
|
+
if (/iPad|iPhone|iPod/.test(navigator.platform)) {
|
|
23602
|
+
return true;
|
|
23603
|
+
}
|
|
23604
|
+
else {
|
|
23605
|
+
return (navigator.maxTouchPoints &&
|
|
23606
|
+
navigator.maxTouchPoints > 2 &&
|
|
23607
|
+
/MacIntel/.test(navigator.platform));
|
|
23608
|
+
}
|
|
23606
23609
|
}
|
|
23607
23610
|
async function init(configuration = config) {
|
|
23608
23611
|
if (csRenderInitialized) {
|
|
23609
23612
|
return csRenderInitialized;
|
|
23610
23613
|
}
|
|
23611
23614
|
config = deepMerge(defaultConfig, configuration);
|
|
23612
|
-
|
|
23613
|
-
|
|
23614
|
-
if (
|
|
23615
|
-
|
|
23616
|
-
|
|
23617
|
-
|
|
23618
|
-
|
|
23619
|
-
|
|
23620
|
-
else {
|
|
23621
|
-
console.log('norm16 texture not supported, you can turn on the preferSizeOverAccuracy flag to use native data type, but be aware of the inaccuracy of the rendering in high bits');
|
|
23622
|
-
}
|
|
23615
|
+
if (isIOS()) {
|
|
23616
|
+
config.rendering.useNorm16Texture = _hasNorm16TextureSupport();
|
|
23617
|
+
if (!config.rendering.useNorm16Texture) {
|
|
23618
|
+
if (configuration.rendering?.preferSizeOverAccuracy) {
|
|
23619
|
+
config.rendering.preferSizeOverAccuracy = true;
|
|
23620
|
+
}
|
|
23621
|
+
else {
|
|
23622
|
+
console.log('norm16 texture not supported, you can turn on the preferSizeOverAccuracy flag to use native data type, but be aware of the inaccuracy of the rendering in high bits');
|
|
23623
23623
|
}
|
|
23624
23624
|
}
|
|
23625
23625
|
}
|
|
@@ -23658,14 +23658,10 @@ function setPreferSizeOverAccuracy(status) {
|
|
|
23658
23658
|
_updateRenderingPipelinesForAllViewports();
|
|
23659
23659
|
}
|
|
23660
23660
|
function canRenderFloatTextures() {
|
|
23661
|
-
|
|
23662
|
-
if (!isMobile) {
|
|
23661
|
+
if (!isIOS()) {
|
|
23663
23662
|
return true;
|
|
23664
23663
|
}
|
|
23665
|
-
|
|
23666
|
-
return false;
|
|
23667
|
-
}
|
|
23668
|
-
return true;
|
|
23664
|
+
return false;
|
|
23669
23665
|
}
|
|
23670
23666
|
function resetUseCPURendering() {
|
|
23671
23667
|
config.rendering.useCPURendering = !_hasActiveWebGLContext();
|
|
@@ -2225,7 +2225,7 @@ const OHIFCornerstoneViewport = /*#__PURE__*/react.memo(props => {
|
|
|
2225
2225
|
// Since we only have support for dynamic data in volume viewports, we should
|
|
2226
2226
|
// handle this case here and set the viewportType to volume if any of the
|
|
2227
2227
|
// displaySets are dynamic volumes
|
|
2228
|
-
viewportOptions.viewportType = displaySets.some(ds => ds.isDynamicVolume) ? 'volume' : viewportOptions.viewportType;
|
|
2228
|
+
viewportOptions.viewportType = displaySets.some(ds => ds.isDynamicVolume && ds.isReconstructable) ? 'volume' : viewportOptions.viewportType;
|
|
2229
2229
|
const [scrollbarHeight, setScrollbarHeight] = (0,react.useState)('100px');
|
|
2230
2230
|
const [enabledVPElement, setEnabledVPElement] = (0,react.useState)(null);
|
|
2231
2231
|
const elementRef = (0,react.useRef)();
|
|
@@ -587,7 +587,9 @@ function PanelSegmentation({
|
|
|
587
587
|
return toolGroupIds;
|
|
588
588
|
};
|
|
589
589
|
const onSegmentationAdd = async () => {
|
|
590
|
-
commandsManager.runCommand('createEmptySegmentationForViewport'
|
|
590
|
+
commandsManager.runCommand('createEmptySegmentationForViewport', {
|
|
591
|
+
viewportId: viewportGridService.getActiveViewportId()
|
|
592
|
+
});
|
|
591
593
|
};
|
|
592
594
|
const onSegmentationClick = segmentationId => {
|
|
593
595
|
segmentationService.setActiveSegmentationForToolGroup(segmentationId);
|
|
@@ -1114,7 +1114,7 @@ function PanelRoiThresholdSegmentation({
|
|
|
1114
1114
|
});
|
|
1115
1115
|
}
|
|
1116
1116
|
};
|
|
1117
|
-
esm.eventTarget.addEventListenerDebounced(dist_esm.Enums.Events.SEGMENTATION_DATA_MODIFIED, callback,
|
|
1117
|
+
esm.eventTarget.addEventListenerDebounced(dist_esm.Enums.Events.SEGMENTATION_DATA_MODIFIED, callback, 250);
|
|
1118
1118
|
return () => {
|
|
1119
1119
|
esm.eventTarget.removeEventListenerDebounced(dist_esm.Enums.Events.SEGMENTATION_DATA_MODIFIED, callback);
|
|
1120
1120
|
};
|
|
@@ -1822,10 +1822,28 @@ const commandsModule = ({
|
|
|
1822
1822
|
scalarData: referencedVolume.scalarData,
|
|
1823
1823
|
metadata: referencedVolume.metadata
|
|
1824
1824
|
};
|
|
1825
|
+
|
|
1826
|
+
// metadata in annotations has enabledElement which is not serializable
|
|
1827
|
+
// we need to remove it
|
|
1828
|
+
// Todo: we should probably have a sanitization function for this
|
|
1829
|
+
const annotationsToSend = annotations.map(annotation => {
|
|
1830
|
+
return {
|
|
1831
|
+
...annotation,
|
|
1832
|
+
metadata: {
|
|
1833
|
+
...annotation.metadata,
|
|
1834
|
+
enabledElement: {
|
|
1835
|
+
...annotation.metadata.enabledElement,
|
|
1836
|
+
viewport: null,
|
|
1837
|
+
renderingEngine: null,
|
|
1838
|
+
element: null
|
|
1839
|
+
}
|
|
1840
|
+
}
|
|
1841
|
+
};
|
|
1842
|
+
});
|
|
1825
1843
|
const suvPeak = await workerManager.executeTask('suv-peak-worker', 'calculateSuvPeak', {
|
|
1826
1844
|
labelmapProps,
|
|
1827
1845
|
referenceVolumeProps,
|
|
1828
|
-
annotations,
|
|
1846
|
+
annotations: annotationsToSend,
|
|
1829
1847
|
segmentIndex
|
|
1830
1848
|
});
|
|
1831
1849
|
return {
|
|
@@ -1004,8 +1004,8 @@ function WorkList({
|
|
|
1004
1004
|
};
|
|
1005
1005
|
});
|
|
1006
1006
|
const hasStudies = numOfStudies > 0;
|
|
1007
|
-
const versionNumber = "3.8.0-beta.
|
|
1008
|
-
const commitHash = "
|
|
1007
|
+
const versionNumber = "3.8.0-beta.89";
|
|
1008
|
+
const commitHash = "52a0c59294a4161fcca0a6708855549034849951";
|
|
1009
1009
|
const menuOptions = [{
|
|
1010
1010
|
title: t('Header:About'),
|
|
1011
1011
|
icon: 'info',
|
|
@@ -1082,7 +1082,7 @@ function WorkList({
|
|
|
1082
1082
|
component: dataSourceConfigurationComponent
|
|
1083
1083
|
} = customizationService.get('ohif.dataSourceConfigurationComponent') ?? {};
|
|
1084
1084
|
return /*#__PURE__*/react.createElement("div", {
|
|
1085
|
-
className: "flex h-screen flex-col bg-black
|
|
1085
|
+
className: "flex h-screen flex-col bg-black"
|
|
1086
1086
|
}, /*#__PURE__*/react.createElement(ui_src/* Header */.Y9, {
|
|
1087
1087
|
isSticky: true,
|
|
1088
1088
|
menuOptions: menuOptions,
|
|
@@ -1092,7 +1092,7 @@ function WorkList({
|
|
|
1092
1092
|
}), /*#__PURE__*/react.createElement(ui_src/* InvestigationalUseDialog */.j, {
|
|
1093
1093
|
dialogConfiguration: appConfig?.investigationalUseDialog
|
|
1094
1094
|
}), /*#__PURE__*/react.createElement("div", {
|
|
1095
|
-
className: "ohif-scrollbar ohif-scrollbar-stable-gutter flex grow flex-col overflow-y-auto"
|
|
1095
|
+
className: "ohif-scrollbar ohif-scrollbar-stable-gutter flex grow flex-col overflow-y-auto sm:px-5"
|
|
1096
1096
|
}, /*#__PURE__*/react.createElement(ui_src/* StudyListFilter */.y_, {
|
|
1097
1097
|
numOfStudies: pageNumber * resultsPerPage > 100 ? 101 : numOfStudies,
|
|
1098
1098
|
filtersMeta: WorkList_filtersMeta,
|
|
@@ -6615,7 +6615,7 @@ const detectionOptions = {
|
|
|
6615
6615
|
}
|
|
6616
6616
|
});
|
|
6617
6617
|
;// CONCATENATED MODULE: ../../i18n/package.json
|
|
6618
|
-
const package_namespaceObject = /*#__PURE__*/JSON.parse('{"rE":"3.8.0-beta.
|
|
6618
|
+
const package_namespaceObject = /*#__PURE__*/JSON.parse('{"rE":"3.8.0-beta.88"}');
|
|
6619
6619
|
;// CONCATENATED MODULE: ../../i18n/src/utils.js
|
|
6620
6620
|
const languagesMap = {
|
|
6621
6621
|
ar: 'Arabic',
|
|
@@ -19392,8 +19392,10 @@ function ViewportGridProvider({
|
|
|
19392
19392
|
|
|
19393
19393
|
// if it is not part of the hanging protocol layout, we should remove the toolGroupId
|
|
19394
19394
|
// and viewportType from the viewportOptions so that it doesn't
|
|
19395
|
-
// inherit the hanging protocol layout options
|
|
19396
|
-
|
|
19395
|
+
// inherit the hanging protocol layout options, only when
|
|
19396
|
+
// the viewport options is not provided (e.g., when drag and drop)
|
|
19397
|
+
// otherwise, programmatically set options should be preserved
|
|
19398
|
+
if (!updatedViewport.viewportOptions && !state.isHangingProtocolLayout) {
|
|
19397
19399
|
viewportOptions = {
|
|
19398
19400
|
viewportId: viewportOptions.viewportId
|
|
19399
19401
|
};
|
|
@@ -67598,6 +67600,7 @@ class HangingProtocolService extends pubSubServiceInterface/* PubSubService */.R
|
|
|
67598
67600
|
if (this.protocol.id !== protocolId) {
|
|
67599
67601
|
console.warn('setting protocol');
|
|
67600
67602
|
this.protocol = this.getProtocolById(protocolId);
|
|
67603
|
+
this.stageIndex = 0;
|
|
67601
67604
|
}
|
|
67602
67605
|
const protocol = this.protocol;
|
|
67603
67606
|
const stage = protocol.stages[stageIdx];
|
|
@@ -96713,29 +96716,29 @@ function _hasNorm16TextureSupport() {
|
|
|
96713
96716
|
}
|
|
96714
96717
|
return false;
|
|
96715
96718
|
}
|
|
96716
|
-
function
|
|
96717
|
-
|
|
96718
|
-
|
|
96719
|
-
}
|
|
96720
|
-
|
|
96721
|
-
|
|
96719
|
+
function isIOS() {
|
|
96720
|
+
if (/iPad|iPhone|iPod/.test(navigator.platform)) {
|
|
96721
|
+
return true;
|
|
96722
|
+
}
|
|
96723
|
+
else {
|
|
96724
|
+
return (navigator.maxTouchPoints &&
|
|
96725
|
+
navigator.maxTouchPoints > 2 &&
|
|
96726
|
+
/MacIntel/.test(navigator.platform));
|
|
96727
|
+
}
|
|
96722
96728
|
}
|
|
96723
96729
|
async function init(configuration = config) {
|
|
96724
96730
|
if (csRenderInitialized) {
|
|
96725
96731
|
return csRenderInitialized;
|
|
96726
96732
|
}
|
|
96727
96733
|
config = (0,utilities.deepMerge)(defaultConfig, configuration);
|
|
96728
|
-
|
|
96729
|
-
|
|
96730
|
-
if (
|
|
96731
|
-
|
|
96732
|
-
|
|
96733
|
-
|
|
96734
|
-
|
|
96735
|
-
|
|
96736
|
-
else {
|
|
96737
|
-
console.log('norm16 texture not supported, you can turn on the preferSizeOverAccuracy flag to use native data type, but be aware of the inaccuracy of the rendering in high bits');
|
|
96738
|
-
}
|
|
96734
|
+
if (isIOS()) {
|
|
96735
|
+
config.rendering.useNorm16Texture = _hasNorm16TextureSupport();
|
|
96736
|
+
if (!config.rendering.useNorm16Texture) {
|
|
96737
|
+
if (configuration.rendering?.preferSizeOverAccuracy) {
|
|
96738
|
+
config.rendering.preferSizeOverAccuracy = true;
|
|
96739
|
+
}
|
|
96740
|
+
else {
|
|
96741
|
+
console.log('norm16 texture not supported, you can turn on the preferSizeOverAccuracy flag to use native data type, but be aware of the inaccuracy of the rendering in high bits');
|
|
96739
96742
|
}
|
|
96740
96743
|
}
|
|
96741
96744
|
}
|
|
@@ -96774,14 +96777,10 @@ function setPreferSizeOverAccuracy(status) {
|
|
|
96774
96777
|
_updateRenderingPipelinesForAllViewports();
|
|
96775
96778
|
}
|
|
96776
96779
|
function canRenderFloatTextures() {
|
|
96777
|
-
|
|
96778
|
-
if (!isMobile) {
|
|
96780
|
+
if (!isIOS()) {
|
|
96779
96781
|
return true;
|
|
96780
96782
|
}
|
|
96781
|
-
|
|
96782
|
-
return false;
|
|
96783
|
-
}
|
|
96784
|
-
return true;
|
|
96783
|
+
return false;
|
|
96785
96784
|
}
|
|
96786
96785
|
function resetUseCPURendering() {
|
|
96787
96786
|
config.rendering.useCPURendering = !_hasActiveWebGLContext();
|
|
@@ -101766,7 +101765,9 @@ class CentralizedWorkerManager {
|
|
|
101766
101765
|
});
|
|
101767
101766
|
}
|
|
101768
101767
|
const workerProperties = this.workerRegistry[workerName];
|
|
101768
|
+
workerProperties.processing = true;
|
|
101769
101769
|
const results = await api[methodName](args, ...finalCallbacks);
|
|
101770
|
+
workerProperties.processing = false;
|
|
101770
101771
|
workerProperties.lastActiveTime[index] = Date.now();
|
|
101771
101772
|
if (workerProperties.autoTerminateOnIdle &&
|
|
101772
101773
|
!workerProperties.idleCheckIntervalId &&
|
|
@@ -101790,6 +101791,9 @@ class CentralizedWorkerManager {
|
|
|
101790
101791
|
}
|
|
101791
101792
|
terminateIdleWorkers(workerName, idleTimeThreshold) {
|
|
101792
101793
|
const workerProperties = this.workerRegistry[workerName];
|
|
101794
|
+
if (workerProperties.processing) {
|
|
101795
|
+
return;
|
|
101796
|
+
}
|
|
101793
101797
|
const now = Date.now();
|
|
101794
101798
|
workerProperties.instances.forEach((_, index) => {
|
|
101795
101799
|
const lastActiveTime = workerProperties.lastActiveTime[index];
|
|
@@ -257753,7 +257757,7 @@ var selectOrdinal = function selectOrdinal() {
|
|
|
257753
257757
|
/******/ // This function allow to reference async chunks
|
|
257754
257758
|
/******/ __webpack_require__.u = (chunkId) => {
|
|
257755
257759
|
/******/ // return url for filenames based on template
|
|
257756
|
-
/******/ return "" + ({"54":"histogram-worker","525":"dicom-microscopy-viewer","572":"polySeg","584":"suv-peak-worker"}[chunkId] || chunkId) + ".bundle." + {"7":"
|
|
257760
|
+
/******/ return "" + ({"54":"histogram-worker","525":"dicom-microscopy-viewer","572":"polySeg","584":"suv-peak-worker"}[chunkId] || chunkId) + ".bundle." + {"7":"1da865aba66a8a4556c7","41":"f7c3a8391f37d953f9e4","54":"829e14ec12c2b41a4323","94":"8e7205a15411781e2ada","109":"b4fee2a22b622839baf5","121":"47f05840a5b3cdf75543","188":"b088e4f452f405860b43","203":"846a90d1ede185c941b0","206":"13d55d34e230296a4877","236":"fb6c65ae3a5aa0c58727","295":"c935ed0430aa026f7591","297":"194d8985ab974839b5b6","321":"678bd59ee7034535f7b0","325":"9f0d557f18a8f67db4cc","342":"36ee082163b01284eeba","445":"38c6d2af64e41cd7c614","448":"6ca163e62b1a53bb733a","473":"f6804e7ac014a561eff8","481":"a2b01ffe06a262fa9375","483":"9263b25c34b349aae80e","487":"75b0ef0a24e6eb57273d","525":"d3a56dc9f62df5e11019","530":"207b38c15c4c01e4db0e","544":"1b6998bb61d6f8f88da9","572":"e5d36c3ecb20902d3366","574":"a17af135ea650e98d81c","584":"d7f73324bbc3b9d1e0c2","594":"5508a262c0806532b611","633":"00ea9d46f50f2d5bae4f","644":"1e77691d2eeb96a423b0","669":"9c2b82292a9b08982d57","699":"3d85bb118e71a52257c8","722":"05e8759e64d484f4554d","724":"c913afb5b32732d37ac7","726":"c8de818cf1a3ff0cf7d2","783":"965f4ae8310199dcf163","835":"4c0eaa2c1a427ee41817","862":"4be5d148c2b1adf4dbf3","889":"888d3ee599c5f1846c48","905":"8accdcf80922e400d513","907":"51455d31da82e241b875","931":"d270a1fda9a2836c3cc5","939":"9d93b2e47c52338747a2","961":"8c9f3f1b3e35f1a56bad"}[chunkId] + ".js";
|
|
257757
257761
|
/******/ };
|
|
257758
257762
|
/******/ })();
|
|
257759
257763
|
/******/
|
package/dist/app.bundle.css
CHANGED
|
@@ -10,7 +10,7 @@ input[type=range]{-webkit-appearance:none}input[type=range]::-webkit-slider-thum
|
|
|
10
10
|
.customSelect__wrapper .customSelect__control{--tw-border-opacity:1;--tw-bg-opacity:1;--tw-text-opacity:1;--tw-shadow:0 1px 3px 0 #0000001a,0 1px 2px 0 #0000000f;--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px 0 var(--tw-shadow-color);background-color:rgb(0 0 0/var(--tw-bg-opacity));border-color:rgb(58 63 153/var(--tw-border-opacity));border-radius:.25rem;border-width:1px;-webkit-box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);color:rgb(255 255 255/var(--tw-text-opacity));font-size:.75rem;line-height:1.25;min-height:28px;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform;transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,-webkit-box-shadow,-webkit-transform;width:100%}.customSelect__wrapper .customSelect__control:hover{--tw-border-opacity:1;border-color:rgb(160 174 192/var(--tw-border-opacity))}.customSelect__wrapper .customSelect__control--menu-is-open,.customSelect__wrapper .customSelect__control:focus{--tw-border-opacity:1;border-color:rgb(160 174 192/var(--tw-border-opacity));outline:2px solid #0000;outline-offset:2px}.customSelect--is-disabled .customSelect__control--is-disabled{pointer-events:none}.css-1hwfws3{padding:0}.customSelect__wrapper .customSelect__indicator-separator{display:none}.customSelect__wrapper .customSelect__dropdown-indicator{padding:4px}.customSelect__wrapper .customSelect__option{-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#d6d6d6;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;font-size:14px}.customSelect__wrapper .customSelect__option--is-selected{background-color:initial}.customSelect__wrapper .customSelect__single-value{--tw-text-opacity:1;color:rgb(123 178 206/var(--tw-text-opacity));max-width:calc(100% - 20px);overflow:hidden;padding-left:.25rem;text-overflow:ellipsis;white-space:nowrap}.customSelect__wrapper.customSelect--is-disabled{cursor:not-allowed;pointer-events:auto}.customSelect__wrapper .customSelect__value-container--is-multi{display:inline-block;overflow:hidden;padding:.5rem .75rem;text-overflow:ellipsis;white-space:nowrap}.ohif-select .customSelect__menu{background-color:initial!important}.ohif-select .customSelect__menu-list{margin:4px;overflow-x:hidden!important;padding-top:0!important}.ohif-select .customSelect__menu-list::-webkit-scrollbar{border-radius:10px;width:6px}.ohif-select .customSelect__placeholder{--tw-text-opacity:1;color:rgb(123 178 206/var(--tw-text-opacity));padding-left:.375rem}.ohif-select .customSelect__menu-list::-webkit-scrollbar-thumb{background-color:#0944b3;border-radius:10px}.customSelect__option--is-focused{background-color:#0944b391!important}.ohif-select .customSelect__option:hover{background-color:#0944b391}.ohif-select .customSelect__menu{background-color:#151515!important;border:2px solid #0944b3;border-radius:6px}.css-1hwfws3{all:unset!important}
|
|
11
11
|
.LegacyCinePlayer input[type=range]{-webkit-appearance:none;background:#0000;height:20px;width:100%;z-index:5}.LegacyCinePlayer input[type=range]:focus{outline:none}.LegacyCinePlayer input[type=range]::-webkit-slider-runnable-track{animate:.2s;--tw-bg-opacity:1;background-color:rgb(90 204 230/var(--tw-bg-opacity));border:0 solid #000;border-radius:5px;-webkit-box-shadow:0 0 0 #000;box-shadow:0 0 0 #000;cursor:pointer;height:2px;width:100%}.LegacyCinePlayer input[type=range]::-webkit-slider-thumb{-webkit-appearance:none;border:4px solid #000;border-radius:50px;-webkit-box-shadow:0 0 0 #000;box-shadow:0 0 0 #000;cursor:pointer;height:18px;margin-top:-9px;width:17px}.LegacyCinePlayer input[type=range]::-webkit-slider-thumb,.LegacyCinePlayer input[type=range]:focus::-webkit-slider-runnable-track{--tw-bg-opacity:1;background-color:rgb(90 204 230/var(--tw-bg-opacity))}.LegacyCinePlayer input[type=range]::-moz-range-track{animate:.2s;border:0 solid #000;border-radius:5px;height:2px;width:100%}.LegacyCinePlayer input[type=range]::-moz-range-thumb,.LegacyCinePlayer input[type=range]::-moz-range-track{--tw-bg-opacity:1;background-color:rgb(90 204 230/var(--tw-bg-opacity));box-shadow:0 0 0 #000;cursor:pointer}.LegacyCinePlayer input[type=range]::-moz-range-thumb{border:2px solid #000;border-radius:50px;height:12px;width:12px}.LegacyCinePlayer input[type=range]::-ms-track{animate:.2s;background:#0000;border-color:#0000;color:#0000;cursor:pointer;height:2px;width:100%}.LegacyCinePlayer input[type=range]::-ms-fill-lower,.LegacyCinePlayer input[type=range]::-ms-fill-upper{--tw-bg-opacity:1;background-color:rgb(90 204 230/var(--tw-bg-opacity));border:0 solid #000;border-radius:10px;box-shadow:0 0 0 #000}.LegacyCinePlayer input[type=range]::-ms-thumb{border:4px solid #000;border-radius:50px;box-shadow:0 0 0 #000;cursor:pointer;height:18px;margin-top:1px;width:17px}.LegacyCinePlayer input[type=range]::-ms-thumb,.LegacyCinePlayer input[type=range]:focus::-ms-fill-lower{--tw-bg-opacity:1;background-color:rgb(90 204 230/var(--tw-bg-opacity))}.LegacyCinePlayer input[type=range]:focus::-ms-fill-upper{--tw-bg-opacity:1;background-color:rgb(90 204 230/var(--tw-bg-opacity))}
|
|
12
12
|
input[type=text]{-webkit-appearance:none}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}input[type=number]{-moz-appearance:textfield}.input-number:focus{border:none;outline:none}.up-arrowsize svg{height:7px;width:7px}.up-arrowsize svg path{fill:#726f7e}.input-small{height:26px}
|
|
13
|
-
/*! tailwindcss v3.2.4 | MIT License | https://tailwindcss.com*/*,:after,:before{border:0 solid #e2e8f0;-webkit-box-sizing:border-box;box-sizing:border-box}:after,:before{--tw-content:""}html{-webkit-text-size-adjust:100%;-webkit-font-feature-settings:normal;font-feature-settings:normal;font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4}body{line-height:inherit;margin:0}hr{border-top-width:1px;color:inherit;height:0}abbr:where([title]){text-decoration:underline;-webkit-text-decoration:underline dotted currentColor;text-decoration:underline dotted currentColor}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:initial}sub{bottom:-.25em}sup{top:-.5em}table{border-collapse:collapse;border-color:inherit;text-indent:0}button,input,optgroup,select,textarea{color:inherit;font-family:inherit;font-size:100%;font-weight:inherit;line-height:inherit;margin:0;padding:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button;background-color:initial;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:initial}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}textarea{resize:vertical}input::-webkit-input-placeholder, textarea::-webkit-input-placeholder{color:#cbd5e0;opacity:1}input::-moz-placeholder, textarea::-moz-placeholder{color:#cbd5e0;opacity:1}input:-ms-input-placeholder, textarea:-ms-input-placeholder{color:#cbd5e0;opacity:1}input::-ms-input-placeholder, textarea::-ms-input-placeholder{color:#cbd5e0;opacity:1}input::placeholder,textarea::placeholder{color:#cbd5e0;opacity:1}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{height:auto;max-width:100%}[hidden]{display:none}html{font-family:Inter,sans-serif}::-ms-backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:#4299e180;--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }*,::backdrop,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:#4299e180;--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }.container{width:100%}@media (min-width:640px){.container{max-width:640px}}@media (min-width:768px){.container{max-width:768px}}@media (min-width:1024px){.container{max-width:1024px}}@media (min-width:1280px){.container{max-width:1280px}}.pointer-events-none{pointer-events:none}.pointer-events-auto{pointer-events:auto}.visible{visibility:visible}.invisible{visibility:hidden}.collapse{visibility:collapse}.static{position:static}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.\!relative{position:relative!important}.sticky{position:sticky}.inset-y-0{bottom:0;top:0}.inset-x-auto{left:auto;right:auto}.top-\[24px\]{top:24px}.top-0{top:0}.left-0{left:0}.left-1\/2{left:50%}.bottom-3{bottom:.75rem}.top-viewport{top:.5rem}.left-viewport{left:.5rem}.right-viewport-scrollbar{right:1.3rem}.bottom-viewport{bottom:.5rem}.bottom-1{bottom:.25rem}.left-\[50px\]{left:50px}.top-\[100\%\]{top:100%}.bottom-\[100\%\]{bottom:100%}.right-0{right:0}.top-1\/2{top:50%}.left-\[250px\]{left:250px}.bottom-2{bottom:.5rem}.bottom-0{bottom:0}.left-0\.5{left:.125rem}.top-7{top:1.75rem}.right-8{right:2rem}.right-\[8px\]{right:8px}.bottom-auto{bottom:auto}.left-auto{left:auto}.right-auto{right:auto}.top-auto{top:auto}.left-\[3px\]{left:3px}.top-\[-3px\]{top:-3px}.-top-1{top:-.25rem}.left-\[4px\]{left:4px}.top-\[3px\]{top:3px}.top-full{top:100%}.top-\[4px\]{top:4px}.left-\[0px\]{left:0}.right-\[4px\]{right:4px}.bottom-\[4px\]{bottom:4px}.right-\[0px\]{right:0}.bottom-px{bottom:1px}.left-viewport-scrollbar{left:1.3rem}.z-50{z-index:50}.z-10{z-index:10}.z-20{z-index:20}.order-last{-webkit-box-ordinal-group:10000;-ms-flex-order:9999;order:9999}.order-first{-webkit-box-ordinal-group:-9998;-ms-flex-order:-9999;order:-9999}.col-span-2{grid-column:span 2/span 2}.float-right{float:right}.m-auto{margin:auto}.\!m-0{margin:0!important}.m-5{margin:1.25rem}.m-0{margin:0}.mx-2{margin-left:.5rem;margin-right:.5rem}.my-3{margin-bottom:.75rem;margin-top:.75rem}.mx-auto{margin-left:auto;margin-right:auto}.my-1{margin-bottom:.25rem;margin-top:.25rem}.my-0{margin-bottom:0;margin-top:0}.mx-1{margin-left:.25rem;margin-right:.25rem}.mx-1\.5{margin-left:.375rem;margin-right:.375rem}.mx-0\.5{margin-left:.125rem;margin-right:.125rem}.mx-0{margin-left:0;margin-right:0}.mx-4{margin-left:1rem;margin-right:1rem}.mx-8{margin-left:2rem;margin-right:2rem}.my-2{margin-bottom:.5rem;margin-top:.5rem}.mx-3{margin-left:.75rem;margin-right:.75rem}.mr-1{margin-right:.25rem}.ml-1{margin-left:.25rem}.mt-3{margin-top:.75rem}.mt-2{margin-top:.5rem}.mt-6{margin-top:1.5rem}.mb-2{margin-bottom:.5rem}.mr-2{margin-right:.5rem}.mb-1{margin-bottom:.25rem}.mr-2\.5{margin-right:.625rem}.mb-4{margin-bottom:1rem}.mb-6{margin-bottom:1.5rem}.mr-4{margin-right:1rem}.mr-8{margin-right:2rem}.ml-2{margin-left:.5rem}.ml-4{margin-left:1rem}.ml-auto{margin-left:auto}.mt-1{margin-top:.25rem}.mb-10{margin-bottom:2.5rem}.mr-3{margin-right:.75rem}.mb-3{margin-bottom:.75rem}.mb-8{margin-bottom:2rem}.mt-0\.5{margin-top:.125rem}.mt-0{margin-top:0}.ml-\[1ch\]{margin-left:1ch}.mr-auto{margin-right:auto}.mt-5{margin-top:1.25rem}.-mt-2{margin-top:-.5rem}.mt-4{margin-top:1rem}.mt-\[5px\]{margin-top:5px}.mt-12{margin-top:3rem}.mt-\[2px\]{margin-top:2px}.mb-1\.5{margin-bottom:.375rem}.ml-1\.5{margin-left:.375rem}.mb-0{margin-bottom:0}.ml-3{margin-left:.75rem}.mb-\[12px\]{margin-bottom:12px}.mb-\[9px\]{margin-bottom:9px}.mt-\[4px\]{margin-top:4px}.-mt-1{margin-top:-.25rem}.mb-\[8px\]{margin-bottom:8px}.mt-\[8px\]{margin-top:8px}.mb-\[1px\]{margin-bottom:1px}.mr-\[4px\]{margin-right:4px}.mb-5{margin-bottom:1.25rem}.mb-\[2px\]{margin-bottom:2px}.mt-\[1px\]{margin-top:1px}.ml-0\.5{margin-left:.125rem}.ml-0{margin-left:0}.mr-5{margin-right:1.25rem}.mt-8{margin-top:2rem}.ml-6{margin-left:1.5rem}.ml-5{margin-left:1.25rem}.box-border{-webkit-box-sizing:border-box;box-sizing:border-box}.box-content{-webkit-box-sizing:initial;box-sizing:initial}.block{display:block}.inline-block{display:inline-block}.inline{display:inline}.flex{display:-webkit-box;display:-ms-flexbox;display:flex}.inline-flex{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}.table{display:table}.grid{display:grid}.contents{display:contents}.\!contents{display:contents!important}.hidden{display:none}.h-full{height:100%}.h-6{height:1.5rem}.h-\[28px\]{height:28px}.h-\[14px\]{height:14px}.\!h-\[26px\]{height:26px!important}.h-\[26px\]{height:26px}.h-\[24px\]{height:24px}.h-3\.5{height:.875rem}.h-3{height:.75rem}.h-\[calc\(100vh-300px\)\]{height:calc(100vh - 300px)}.h-0\.5{height:.125rem}.h-0{height:0}.h-1{height:.25rem}.h-screen{height:100vh}.h-14{height:3.5rem}.h-8{height:2rem}.h-\[2px\]{height:2px}.h-\[480px\]{height:480px}.h-2{height:.5rem}.\!h-\[20px\]{height:20px!important}.h-\[543px\]{height:543px}.h-\[493px\]{height:493px}.h-\[433px\]{height:433px}.h-\[46px\]{height:46px}.h-\[385px\]{height:385px}.h-\[75px\]{height:75px}.h-\[60px\]{height:60px}.h-\[40px\]{height:40px}.h-auto{height:auto}.h-\[32px\]{height:32px}.h-4{height:1rem}.h-9{height:2.25rem}.h-\[48px\]{height:48px}.h-\[25px\]{height:25px}.h-5{height:1.25rem}.h-10{height:2.5rem}.h-\[3px\]{height:3px}.h-\[35px\]{height:35px}.h-\[86px\]{height:86px}.h-64{height:16rem}.h-12{height:3rem}.h-7{height:1.75rem}.h-\[89px\]{height:89px}.h-\[1px\]{height:1px}.h-\[6px\]{height:6px}.h-\[8px\]{height:8px}.h-\[20px\]{height:20px}.h-16{height:4rem}.h-\[34px\]{height:34px}.h-\[16px\]{height:16px}.h-\[10px\]{height:10px}.h-32{height:8rem}.h-11{height:2.75rem}.max-h-full{max-height:100%}.max-h-\[500px\]{max-height:500px}.max-h-64{max-height:16rem}.max-h-80{max-height:20rem}.max-h-0{max-height:0}.max-h-48{max-height:12rem}.min-h-\[1px\]{min-height:1px}.min-h-0{min-height:0}.min-h-\[480px\]{min-height:480px}.min-h-14{min-height:3.5rem}.min-h-full{min-height:100%}.min-h-\[28px\]{min-height:28px}.w-\[70\%\]{width:70%}.w-full{width:100%}.w-\[58px\]{width:58px}.w-\[14px\]{width:14px}.w-1\/2{width:50%}.\!w-\[115px\]{width:115px!important}.w-\[24px\]{width:24px}.w-3\.5{width:.875rem}.w-3{width:.75rem}.w-4\/24{width:16.66666667%}.w-2\/24{width:8.333333333%}.w-6\/24{width:25%}.w-5\/24{width:20.83333333%}.w-screen{width:100vw}.w-4{width:1rem}.\!w-\[117px\]{width:117px!important}.\!w-\[75px\]{width:75px!important}.w-6{width:1.5rem}.w-24{width:6rem}.w-10{width:2.5rem}.w-0{width:0}.w-\[28px\]{width:28px}.w-\[120px\]{width:120px}.w-\[460px\]{width:460px}.w-\[200px\]{width:200px}.w-\[95px\]{width:95px}.w-1\/24{width:4.166666667%}.w-3\/24{width:12.5%}.w-7\/24{width:29.16666667%}.w-8\/24{width:33.33333333%}.w-9\/24{width:37.5%}.w-10\/24{width:41.66666667%}.w-11\/24{width:45.83333333%}.w-12\/24{width:50%}.w-13\/24{width:54.16666667%}.w-14\/24{width:58.33333333%}.w-15\/24{width:62.5%}.w-16\/24{width:66.66666667%}.w-17\/24{width:70.83333333%}.w-18\/24{width:75%}.w-19\/24{width:79.16666667%}.w-20\/24{width:83.33333333%}.w-21\/24{width:87.5%}.w-22\/24{width:91.66666667%}.w-23\/24{width:95.83333333%}.w-5{width:1.25rem}.w-48{width:12rem}.w-\[40px\]{width:40px}.w-1\/3{width:33.333333%}.w-2\/3{width:66.666667%}.w-4\/5{width:80%}.w-2{width:.5rem}.w-40{width:10rem}.w-auto{width:auto}.w-max-content{width:-webkit-max-content;width:-moz-max-content;width:max-content}.w-8{width:2rem}.w-32{width:8rem}.w-\[45px\]{width:45px}.w-\[206px\]{width:206px}.w-\[90\%\]{width:90%}.w-12{width:3rem}.w-\[10px\]{width:10px}.w-11\/12{width:91.666667%}.w-\[26px\]{width:26px}.w-\[100px\]{width:100px}.w-\[64px\]{width:64px}.w-\[8px\]{width:8px}.w-1\/4{width:25%}.w-80{width:20rem}.w-\[2px\]{width:2px}.w-\[30px\]{width:30px}.w-\[32px\]{width:32px}.w-72{width:18rem}.w-56{width:14rem}.\!w-\[20px\]{width:20px!important}.min-w-\[45px\]{min-width:45px}.min-w-\[1px\]{min-width:1px}.min-w-\[32px\]{min-width:32px}.min-w-16{min-width:4rem}.min-w-md{min-width:6rem}.min-w-48{min-width:12rem}.min-w-full{min-width:100%}.max-w-\[900px\]{max-width:900px}.max-w-xs{max-width:20rem}.max-w-\[40\%\]{max-width:40%}.max-w-4xl{max-width:56rem}.max-w-none{max-width:none}.max-w-44{max-width:11rem}.max-w-64{max-width:16rem}.max-w-24{max-width:6rem}.max-w-40{max-width:10rem}.max-w-48{max-width:12rem}.max-w-full{max-width:100%}.flex-1{-webkit-box-flex:1;-ms-flex:1 1 0%;flex:1 1 0%}.flex-auto{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.flex-static{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.flex-shrink-0{-ms-flex-negative:0;flex-shrink:0}.flex-shrink{-ms-flex-negative:1;flex-shrink:1}.shrink-0{-ms-flex-negative:0;flex-shrink:0}.shrink{-ms-flex-negative:1;flex-shrink:1}.flex-grow,.grow{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.grow-0{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0}.basis-\[200px\]{-ms-flex-preferred-size:200px;flex-basis:200px}.origin-top-right{-webkit-transform-origin:top right;transform-origin:top right}.origin-top-left{-webkit-transform-origin:top left;transform-origin:top left}.origin-top{-webkit-transform-origin:top;transform-origin:top}.-translate-x-1\/2{--tw-translate-x:-50%}.-translate-x-1\/2,.-translate-y-1\/2{-webkit-transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.-translate-y-1\/2{--tw-translate-y:-50%}.rotate-180{--tw-rotate:180deg}.rotate-180,.rotate-90{-webkit-transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.rotate-90{--tw-rotate:90deg}.transform{-webkit-transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.cursor-default{cursor:default}.cursor-pointer{cursor:pointer}.cursor-auto{cursor:auto}.cursor-not-allowed{cursor:not-allowed}.select-none{-webkit-user-select:none; -moz-user-select:none; -ms-user-select:none; user-select:none}.select-text{-webkit-user-select:text; -moz-user-select:text; -ms-user-select:text; user-select:text}.resize{resize:both}.appearance-none{-webkit-appearance:none; -moz-appearance:none; appearance:none}.grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.flex-row{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.\!flex-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-row-reverse{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.flex-col{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.flex-wrap{-ms-flex-wrap:wrap;flex-wrap:wrap}.flex-nowrap{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.place-items-center{place-items:center}.items-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.items-end{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.items-center{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.\!items-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.items-baseline{-webkit-box-align:baseline;-ms-flex-align:baseline;align-items:baseline}.items-stretch{-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch}.justify-start{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.justify-end{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.justify-center{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.justify-between{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.\!justify-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-around{-ms-flex-pack:distribute;justify-content:space-around}.justify-evenly{-webkit-box-pack:space-evenly;-ms-flex-pack:space-evenly;justify-content:space-evenly}.gap-4{gap:1rem}.gap-1{gap:.25rem}.gap-2{gap:.5rem}.gap-2\.5{gap:.625rem}.gap-\[4px\]{gap:4px}.gap-3{gap:.75rem}.gap-\[10px\]{gap:10px}.gap-\[5px\]{gap:5px}.gap-6{gap:1.5rem}.space-x-1>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(.25rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(.25rem*var(--tw-space-x-reverse))}.space-y-4>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(1rem*var(--tw-space-y-reverse));margin-top:calc(1rem*(1 - var(--tw-space-y-reverse)))}.space-x-2>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(.5rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(.5rem*var(--tw-space-x-reverse))}.space-y-2>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.5rem*var(--tw-space-y-reverse));margin-top:calc(.5rem*(1 - var(--tw-space-y-reverse)))}.space-y-3>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.75rem*var(--tw-space-y-reverse));margin-top:calc(.75rem*(1 - var(--tw-space-y-reverse)))}.space-y-5>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(1.25rem*var(--tw-space-y-reverse));margin-top:calc(1.25rem*(1 - var(--tw-space-y-reverse)))}.self-start{-ms-flex-item-align:start;align-self:flex-start}.self-end{-ms-flex-item-align:end;align-self:flex-end}.self-center{-ms-flex-item-align:center;align-self:center}.overflow-auto{overflow:auto}.overflow-hidden{overflow:hidden}.overflow-visible{overflow:visible}.overflow-y-auto{overflow-y:auto}.overflow-x-hidden{overflow-x:hidden}.overflow-y-hidden{overflow-y:hidden}.overflow-y-scroll{overflow-y:scroll}.truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.\!truncate{overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important}.text-ellipsis{text-overflow:ellipsis}.whitespace-normal{white-space:normal}.whitespace-nowrap{white-space:nowrap}.whitespace-pre{white-space:pre}.whitespace-pre-wrap{white-space:pre-wrap}.break-normal{overflow-wrap:normal;word-break:normal}.break-words{overflow-wrap:break-word}.break-all{word-break:break-all}.rounded{border-radius:.25rem}.rounded-\[4px\]{border-radius:4px}.rounded-md{border-radius:.375rem}.rounded-lg{border-radius:.5rem}.rounded-\[5px\]{border-radius:5px}.rounded-full{border-radius:9999px}.rounded-sm{border-radius:.125rem}.rounded-l-xl{border-bottom-left-radius:.75rem;border-top-left-radius:.75rem}.rounded-r{border-bottom-right-radius:.25rem;border-top-right-radius:.25rem}.rounded-l{border-bottom-left-radius:.25rem;border-top-left-radius:.25rem}.rounded-b-\[4px\]{border-bottom-left-radius:4px;border-bottom-right-radius:4px}.rounded-l-\[6px\]{border-bottom-left-radius:6px;border-top-left-radius:6px}.rounded-l-\[4px\]{border-bottom-left-radius:4px;border-top-left-radius:4px}.rounded-t{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.rounded-b{border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem}.rounded-tl-md{border-top-left-radius:.375rem}.rounded-bl-md{border-bottom-left-radius:.375rem}.rounded-tr-md{border-top-right-radius:.375rem}.rounded-br-md{border-bottom-right-radius:.375rem}.\!rounded-tr-md{border-top-right-radius:.375rem!important}.\!rounded-br-md{border-bottom-right-radius:.375rem!important}.rounded-tl{border-top-left-radius:.25rem}.rounded-tr{border-top-right-radius:.25rem}.rounded-bl{border-bottom-left-radius:.25rem}.rounded-br{border-bottom-right-radius:.25rem}.border-2{border-width:2px}.border,.border-\[1px\]{border-width:1px}.border-0{border-width:0}.border-\[2px\]{border-width:2px}.border-l{border-left-width:1px}.border-l-2{border-left-width:2px}.border-b{border-bottom-width:1px}.border-b-2{border-bottom-width:2px}.border-t{border-top-width:1px}.border-r{border-right-width:1px}.border-t-0{border-top-width:0}.border-l-0{border-left-width:0}.border-r-0{border-right-width:0}.border-b-0{border-bottom-width:0}.border-t-2{border-top-width:2px}.border-b-4{border-bottom-width:4px}.border-solid{border-style:solid}.border-dashed{border-style:dashed}.border-primary-main{--tw-border-opacity:1;border-color:rgb(9 68 179/var(--tw-border-opacity))}.border-primary-light{--tw-border-opacity:1;border-color:rgb(90 204 230/var(--tw-border-opacity))}.border-primary-active{--tw-border-opacity:1;border-color:rgb(52 140 253/var(--tw-border-opacity))}.border-secondary-light{--tw-border-opacity:1;border-color:rgb(58 63 153/var(--tw-border-opacity))}.border-transparent{border-color:#0000}.border-black{--tw-border-opacity:1;border-color:rgb(0 0 0/var(--tw-border-opacity))}.border-common-dark{--tw-border-opacity:1;border-color:rgb(114 111 126/var(--tw-border-opacity))}.border-secondary-light\/60{border-color:#3a3f9999}.border-primary-dark{--tw-border-opacity:1;border-color:rgb(9 12 41/var(--tw-border-opacity))}.border-gray-500{--tw-border-opacity:1;border-color:rgb(160 174 192/var(--tw-border-opacity))}.border-secondary-main{--tw-border-opacity:1;border-color:rgb(43 22 107/var(--tw-border-opacity))}.border-white{--tw-border-opacity:1;border-color:rgb(255 255 255/var(--tw-border-opacity))}.border-inputfield-main{--tw-border-opacity:1;border-color:rgb(58 63 153/var(--tw-border-opacity))}.border-secondary-dark{--tw-border-opacity:1;border-color:rgb(4 28 74/var(--tw-border-opacity))}.border-customblue-10{--tw-border-opacity:1;border-color:rgb(10 22 63/var(--tw-border-opacity))}.border-common-bright{--tw-border-opacity:1;border-color:rgb(225 225 225/var(--tw-border-opacity))}.border-b-secondary-light{--tw-border-opacity:1;border-bottom-color:rgb(58 63 153/var(--tw-border-opacity))}.border-b-gray-900{--tw-border-opacity:1;border-bottom-color:rgb(26 32 44/var(--tw-border-opacity))}.bg-primary-light{--tw-bg-opacity:1;background-color:rgb(90 204 230/var(--tw-bg-opacity))}.\!bg-black{--tw-bg-opacity:1!important;background-color:rgb(0 0 0/var(--tw-bg-opacity))!important}.\!bg-primary-light{--tw-bg-opacity:1!important;background-color:rgb(90 204 230/var(--tw-bg-opacity))!important}.bg-black{--tw-bg-opacity:1;background-color:rgb(0 0 0/var(--tw-bg-opacity))}.bg-customgray-100{--tw-bg-opacity:1;background-color:rgb(38 41 67/var(--tw-bg-opacity))}.bg-primary-main{--tw-bg-opacity:1;background-color:rgb(9 68 179/var(--tw-bg-opacity))}.bg-customblue-30{--tw-bg-opacity:1;background-color:rgb(9 40 110/var(--tw-bg-opacity))}.bg-secondary-dark{--tw-bg-opacity:1;background-color:rgb(4 28 74/var(--tw-bg-opacity))}.bg-black\/\[\.4\]{background-color:#0006}.bg-transparent{background-color:initial}.bg-primary-dark{--tw-bg-opacity:1;background-color:rgb(9 12 41/var(--tw-bg-opacity))}.bg-inputfield-main{--tw-bg-opacity:1;background-color:rgb(58 63 153/var(--tw-bg-opacity))}.bg-inputfield-placeholder{--tw-bg-opacity:1;background-color:rgb(57 56 63/var(--tw-bg-opacity))}.bg-customblue-40{--tw-bg-opacity:1;background-color:rgb(14 48 127/var(--tw-bg-opacity))}.bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.bg-primary-active{--tw-bg-opacity:1;background-color:rgb(52 140 253/var(--tw-bg-opacity))}.bg-\[\#04225b\]{--tw-bg-opacity:1;background-color:rgb(4 34 91/var(--tw-bg-opacity))}.bg-secondary-light{--tw-bg-opacity:1;background-color:rgb(58 63 153/var(--tw-bg-opacity))}.bg-secondary-main{--tw-bg-opacity:1;background-color:rgb(43 22 107/var(--tw-bg-opacity))}.\!bg-primary-dark{--tw-bg-opacity:1!important;background-color:rgb(9 12 41/var(--tw-bg-opacity))!important}.bg-overlay{background-color:#000c}.bg-customblue-400{--tw-bg-opacity:1;background-color:rgb(144 160 193/var(--tw-bg-opacity))}.bg-\[\#212456\]{--tw-bg-opacity:1;background-color:rgb(33 36 86/var(--tw-bg-opacity))}.bg-\[\#bed1db\]{--tw-bg-opacity:1;background-color:rgb(190 209 219/var(--tw-bg-opacity))}.bg-\[\#ebe5c4\]{--tw-bg-opacity:1;background-color:rgb(235 229 196/var(--tw-bg-opacity))}.bg-\[\#c6d9bf\]{--tw-bg-opacity:1;background-color:rgb(198 217 191/var(--tw-bg-opacity))}.bg-\[\#dabdbe\]{--tw-bg-opacity:1;background-color:rgb(218 189 190/var(--tw-bg-opacity))}.bg-common-bright{--tw-bg-opacity:1;background-color:rgb(225 225 225/var(--tw-bg-opacity))}.bg-\[\#222d44\]{--tw-bg-opacity:1;background-color:rgb(34 45 68/var(--tw-bg-opacity))}.bg-opacity-50{--tw-bg-opacity:.50}.fill-current{fill:currentColor}.stroke-secondary-light{stroke:#3a3f99}.stroke-1{stroke-width:1}.object-contain{-o-object-fit:contain;object-fit:contain}.p-1{padding:.25rem}.p-2{padding:.5rem}.\!p-0{padding:0!important}.p-4{padding:1rem}.p-3\.5{padding:.875rem}.p-3{padding:.75rem}.p-2\.5{padding:.625rem}.p-5{padding:1.25rem}.\!p-2{padding:.5rem!important}.p-6{padding:1.5rem}.p-0{padding:0}.p-0\.5{padding:.125rem}.px-1\.5{padding-left:.375rem;padding-right:.375rem}.px-1{padding-left:.25rem;padding-right:.25rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-5{padding-left:1.25rem;padding-right:1.25rem}.px-3{padding-left:.75rem;padding-right:.75rem}.py-4{padding-bottom:1rem;padding-top:1rem}.px-2\.5{padding-left:.625rem;padding-right:.625rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.py-1\.5{padding-bottom:.375rem;padding-top:.375rem}.py-1{padding-bottom:.25rem;padding-top:.25rem}.py-2{padding-bottom:.5rem;padding-top:.5rem}.py-8{padding-bottom:2rem;padding-top:2rem}.px-8{padding-left:2rem;padding-right:2rem}.px-\[10px\]{padding-left:10px;padding-right:10px}.px-4{padding-left:1rem;padding-right:1rem}.py-3{padding-bottom:.75rem;padding-top:.75rem}.px-\[20px\]{padding-left:20px;padding-right:20px}.px-9{padding-left:2.25rem;padding-right:2.25rem}.\!py-2{padding-bottom:.5rem!important;padding-top:.5rem!important}.py-2\.5{padding-bottom:.625rem;padding-top:.625rem}.py-\[13px\]{padding-bottom:13px;padding-top:13px}.py-16{padding-bottom:4rem;padding-top:4rem}.py-\[5px\]{padding-bottom:5px;padding-top:5px}.py-\[3px\]{padding-bottom:3px;padding-top:3px}.py-10{padding-bottom:2.5rem;padding-top:2.5rem}.py-5{padding-bottom:1.25rem;padding-top:1.25rem}.py-\[6px\]{padding-bottom:6px;padding-top:6px}.px-\[8px\]{padding-left:8px;padding-right:8px}.pb-5{padding-bottom:1.25rem}.pt-0\.5{padding-top:.125rem}.pt-0{padding-top:0}.pl-1{padding-left:.25rem}.pt-4{padding-top:1rem}.pt-1{padding-top:.25rem}.pt-5{padding-top:1.25rem}.pt-3{padding-top:.75rem}.pb-4{padding-bottom:1rem}.pl-10{padding-left:2.5rem}.pl-\[12px\]{padding-left:12px}.pr-\[12px\]{padding-right:12px}.pt-2{padding-top:.5rem}.pr-3{padding-right:.75rem}.pr-4{padding-right:1rem}.pb-3{padding-bottom:.75rem}.pl-2{padding-left:.5rem}.pr-2{padding-right:.5rem}.pl-8{padding-left:2rem}.pr-5{padding-right:1.25rem}.pb-\[20px\]{padding-bottom:20px}.pt-\[13px\]{padding-top:13px}.pt-\[20px\]{padding-top:20px}.pr-6{padding-right:1.5rem}.pl-0{padding-left:0}.pl-\[2px\]{padding-left:2px}.pl-4{padding-left:1rem}.pr-1{padding-right:.25rem}.pl-\[22px\]{padding-left:22px}.pr-\[22px\]{padding-right:22px}.pt-\[10px\]{padding-top:10px}.pb-\[10px\]{padding-bottom:10px}.\!pl-2{padding-left:.5rem!important}.pl-2\.5{padding-left:.625rem}.pl-\[34px\]{padding-left:34px}.pb-\[5px\]{padding-bottom:5px}.pb-\[9px\]{padding-bottom:9px}.pr-1\.5{padding-right:.375rem}.pt-\[3px\]{padding-top:3px}.pl-\[43px\]{padding-left:43px}.pl-\[45px\]{padding-left:45px}.pt-\[5px\]{padding-top:5px}.pr-\[8px\]{padding-right:8px}.pl-3{padding-left:.75rem}.pr-2\.5{padding-right:.625rem}.pt-1\.5{padding-top:.375rem}.pb-\[2px\]{padding-bottom:2px}.pb-0{padding-bottom:0}.pb-2{padding-bottom:.5rem}.pl-12{padding-left:3rem}.pl-\[4px\]{padding-left:4px}.pl-6{padding-left:1.5rem}.pb-\[0\.5\]{padding-bottom:.5}.pb-1{padding-bottom:.25rem}.pb-2\.5{padding-bottom:.625rem}.pt-48{padding-top:12rem}.pt-6{padding-top:1.5rem}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.text-justify{text-align:justify}.text-end{text-align:end}.align-sub{vertical-align:sub}.font-sans{font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji}.font-mono{font-family:Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}.text-\[14px\]{font-size:14px}.text-sm{font-size:.75rem}.text-\[11px\]{font-size:11px}.text-\[20px\]{font-size:20px}.text-lg{font-size:.9275rem}.text-base{font-size:.8125rem}.text-xs{font-size:.65rem}.text-\[13px\]{font-size:13px}.text-xl{font-size:1.25rem}.text-\[10px\]{font-size:10px}.text-\[16px\]{font-size:16px}.text-\[19px\]{font-size:19px}.text-\[0px\]{font-size:0}.text-\[12px\]{font-size:12px}.text-6xl{font-size:4rem}.text-5xl{font-size:3rem}.text-4xl{font-size:2.25rem}.text-3xl{font-size:1.875rem}.text-2xl{font-size:1.5rem}.font-\[300\],.font-light{font-weight:300}.font-bold{font-weight:700}.font-semibold{font-weight:600}.font-medium{font-weight:500}.font-normal{font-weight:300}.uppercase{text-transform:uppercase}.lowercase{text-transform:lowercase}.capitalize{text-transform:capitalize}.italic{font-style:italic}.leading-\[1\.2\]{line-height:1.2}.leading-6{line-height:1.5rem}.leading-tight{line-height:1.25}.leading-5{line-height:1.25rem}.\!leading-\[1\.2\]{line-height:1.2!important}.leading-\[22px\]{line-height:22px}.leading-none{line-height:1}.leading-10{line-height:2.5rem}.leading-7{line-height:1.75rem}.leading-3{line-height:.75rem}.tracking-widest{letter-spacing:.1em}.\!text-primary-active{--tw-text-opacity:1!important;color:rgb(52 140 253/var(--tw-text-opacity))!important}.\!text-common-bright{--tw-text-opacity:1!important;color:rgb(225 225 225/var(--tw-text-opacity))!important}.\!text-black{--tw-text-opacity:1!important;color:rgb(0 0 0/var(--tw-text-opacity))!important}.text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.text-aqua-pale{--tw-text-opacity:1;color:rgb(123 178 206/var(--tw-text-opacity))}.text-primary-active{--tw-text-opacity:1;color:rgb(52 140 253/var(--tw-text-opacity))}.text-primary-light{--tw-text-opacity:1;color:rgb(90 204 230/var(--tw-text-opacity))}.text-primary-main{--tw-text-opacity:1;color:rgb(9 68 179/var(--tw-text-opacity))}.text-common-light{--tw-text-opacity:1;color:rgb(161 159 173/var(--tw-text-opacity))}.text-blue-400{--tw-text-opacity:1;color:rgb(99 179 237/var(--tw-text-opacity))}.text-black{--tw-text-opacity:1;color:rgb(0 0 0/var(--tw-text-opacity))}.text-secondary-active{--tw-text-opacity:1;color:rgb(31 31 39/var(--tw-text-opacity))}.text-common-dark{--tw-text-opacity:1;color:rgb(114 111 126/var(--tw-text-opacity))}.text-blue-300{--tw-text-opacity:1;color:rgb(144 205 244/var(--tw-text-opacity))}.text-common-bright{--tw-text-opacity:1;color:rgb(225 225 225/var(--tw-text-opacity))}.text-red-600{--tw-text-opacity:1;color:rgb(229 62 62/var(--tw-text-opacity))}.text-secondary-light{--tw-text-opacity:1;color:rgb(58 63 153/var(--tw-text-opacity))}.text-\[\#726f7e\]{--tw-text-opacity:1;color:rgb(114 111 126/var(--tw-text-opacity))}.\!text-primary-light{--tw-text-opacity:1!important;color:rgb(90 204 230/var(--tw-text-opacity))!important}.text-primary-dark{--tw-text-opacity:1;color:rgb(9 12 41/var(--tw-text-opacity))}.text-red-700{--tw-text-opacity:1;color:rgb(197 48 48/var(--tw-text-opacity))}.text-yellow-500{--tw-text-opacity:1;color:rgb(236 201 75/var(--tw-text-opacity))}.text-green-500{--tw-text-opacity:1;color:rgb(72 187 120/var(--tw-text-opacity))}.text-\[\#b3b3b3\]{--tw-text-opacity:1;color:rgb(179 179 179/var(--tw-text-opacity))}.text-\[\#d8d8d8\]{--tw-text-opacity:1;color:rgb(216 216 216/var(--tw-text-opacity))}.text-\[\#3d5871\]{--tw-text-opacity:1;color:rgb(61 88 113/var(--tw-text-opacity))}.text-\[\#0944b3\]{--tw-text-opacity:1;color:rgb(9 68 179/var(--tw-text-opacity))}.text-red-500{--tw-text-opacity:1;color:rgb(245 101 101/var(--tw-text-opacity))}.text-inherit{color:inherit}.text-gray-800{--tw-text-opacity:1;color:rgb(45 55 72/var(--tw-text-opacity))}.text-blue-600{--tw-text-opacity:1;color:rgb(49 130 206/var(--tw-text-opacity))}.text-gray-700{--tw-text-opacity:1;color:rgb(74 85 104/var(--tw-text-opacity))}.underline{text-decoration-line:underline}.overline{text-decoration-line:overline}.placeholder-inputfield-placeholder::-webkit-input-placeholder{--tw-placeholder-opacity:1;color:rgb(57 56 63/var(--tw-placeholder-opacity))}.placeholder-inputfield-placeholder::-moz-placeholder{--tw-placeholder-opacity:1;color:rgb(57 56 63/var(--tw-placeholder-opacity))}.placeholder-inputfield-placeholder:-ms-input-placeholder{--tw-placeholder-opacity:1;color:rgb(57 56 63/var(--tw-placeholder-opacity))}.placeholder-inputfield-placeholder::-ms-input-placeholder{--tw-placeholder-opacity:1;color:rgb(57 56 63/var(--tw-placeholder-opacity))}.placeholder-inputfield-placeholder::placeholder{--tw-placeholder-opacity:1;color:rgb(57 56 63/var(--tw-placeholder-opacity))}.opacity-50{opacity:.5}.opacity-90{opacity:.9}.opacity-0{opacity:0}.opacity-60{opacity:.6}.shadow{--tw-shadow:0 1px 3px 0 #0000001a,0 1px 2px 0 #0000000f;--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px 0 var(--tw-shadow-color)}.shadow,.shadow-lg{-webkit-box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-lg{--tw-shadow:0 10px 15px -3px #0000001a,0 4px 6px -2px #0000000d;--tw-shadow-colored:0 10px 15px -3px var(--tw-shadow-color),0 4px 6px -2px var(--tw-shadow-color)}.shadow-\[0_0_0_200px_transparent\]{--tw-shadow:0 0 0 200px #0000;--tw-shadow-colored:0 0 0 200px var(--tw-shadow-color);-webkit-box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.outline-none{outline:2px solid #0000;outline-offset:2px}.outline{outline-style:solid}.ring{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);-webkit-box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.blur{--tw-blur:blur(8px)}.blur,.drop-shadow-md{-webkit-filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.drop-shadow-md{--tw-drop-shadow:drop-shadow(0 4px 3px #00000012) drop-shadow(0 2px 2px #0000000f)}.drop-shadow-lg{--tw-drop-shadow:drop-shadow(0 10px 8px #0000000a) drop-shadow(0 4px 3px #0000001a)}.drop-shadow-lg,.grayscale{-webkit-filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.grayscale{--tw-grayscale:grayscale(100%)}.invert{--tw-invert:invert(100%);-webkit-filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.\!invert{--tw-invert:invert(100%)!important;-webkit-filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)!important;filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)!important}.filter{-webkit-filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.\!filter{-webkit-filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)!important;filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)!important}.transition{-webkit-transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform;transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,-webkit-box-shadow,-webkit-transform}.transition-all{-webkit-transition-property:all;transition-property:all}.transition-\[max-height\]{-webkit-transition-property:max-height;transition-property:max-height}.transition-height{-webkit-transition-property:height;transition-property:height}.duration-300{-webkit-transition-duration:.3s;transition-duration:.3s}.duration-500{-webkit-transition-duration:.5s;transition-duration:.5s}.duration-1000{-webkit-transition-duration:1s;transition-duration:1s}.duration-150{-webkit-transition-duration:.15s;transition-duration:.15s}.ease-in-out{-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1)}body{background-color:#000}.truncate-2-lines{-webkit-line-clamp:2;-webkit-box-orient:vertical;display:-webkit-box;height:2.1rem;line-height:1.3;overflow:hidden}.ohif-disabled{cursor:not-allowed;opacity:.5;pointer-events:none;-webkit-user-select:none; -moz-user-select:none; -ms-user-select:none; user-select:none}.placeholder\:text-inputfield-placeholder::-webkit-input-placeholder{--tw-text-opacity:1;color:rgb(57 56 63/var(--tw-text-opacity))}.placeholder\:text-inputfield-placeholder::-moz-placeholder{--tw-text-opacity:1;color:rgb(57 56 63/var(--tw-text-opacity))}.placeholder\:text-inputfield-placeholder:-ms-input-placeholder{--tw-text-opacity:1;color:rgb(57 56 63/var(--tw-text-opacity))}.placeholder\:text-inputfield-placeholder::-ms-input-placeholder{--tw-text-opacity:1;color:rgb(57 56 63/var(--tw-text-opacity))}.placeholder\:text-inputfield-placeholder::placeholder{--tw-text-opacity:1;color:rgb(57 56 63/var(--tw-text-opacity))}.first\:rounded-t:first-child{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.first\:rounded-t-md:first-child{border-top-left-radius:.375rem;border-top-right-radius:.375rem}.first\:rounded-t-lg:first-child{border-top-left-radius:.5rem;border-top-right-radius:.5rem}.first\:rounded-t-full:first-child{border-top-left-radius:9999px;border-top-right-radius:9999px}.first\:rounded-l:first-child{border-bottom-left-radius:.25rem;border-top-left-radius:.25rem}.first\:rounded-l-md:first-child{border-bottom-left-radius:.375rem;border-top-left-radius:.375rem}.first\:rounded-l-lg:first-child{border-bottom-left-radius:.5rem;border-top-left-radius:.5rem}.first\:rounded-l-full:first-child{border-bottom-left-radius:9999px;border-top-left-radius:9999px}.first\:rounded-l-sm:first-child{border-bottom-left-radius:.125rem;border-top-left-radius:.125rem}.first\:border-0:first-child{border-width:0}.first\:pl-12:first-child{padding-left:3rem}.last\:mr-0:last-child{margin-right:0}.last\:rounded-b:last-child{border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem}.last\:rounded-b-md:last-child{border-bottom-left-radius:.375rem;border-bottom-right-radius:.375rem}.last\:rounded-b-lg:last-child{border-bottom-left-radius:.5rem;border-bottom-right-radius:.5rem}.last\:rounded-b-full:last-child{border-bottom-left-radius:9999px;border-bottom-right-radius:9999px}.last\:rounded-r:last-child{border-bottom-right-radius:.25rem;border-top-right-radius:.25rem}.last\:rounded-r-md:last-child{border-bottom-right-radius:.375rem;border-top-right-radius:.375rem}.last\:rounded-r-lg:last-child{border-bottom-right-radius:.5rem;border-top-right-radius:.5rem}.last\:rounded-r-full:last-child{border-bottom-right-radius:9999px;border-top-right-radius:9999px}.last\:rounded-r-sm:last-child{border-bottom-right-radius:.125rem;border-top-right-radius:.125rem}.last\:border-b-0:last-child{border-bottom-width:0}.last\:border-r-0:last-child{border-right-width:0}.last\:border-b:last-child{border-bottom-width:1px}.last\:border-r:last-child{border-right-width:1px}.last\:border-l-0:last-child{border-left-width:0}.hover\:cursor-pointer:hover{cursor:pointer}.hover\:rounded:hover{border-radius:.25rem}.hover\:border-primary-light:hover{--tw-border-opacity:1;border-color:rgb(90 204 230/var(--tw-border-opacity))}.hover\:border-black:hover{--tw-border-opacity:1;border-color:rgb(0 0 0/var(--tw-border-opacity))}.hover\:border-primary-dark:hover{--tw-border-opacity:1;border-color:rgb(9 12 41/var(--tw-border-opacity))}.hover\:border-gray-500:hover{--tw-border-opacity:1;border-color:rgb(160 174 192/var(--tw-border-opacity))}.hover\:border-secondary-light:hover{--tw-border-opacity:1;border-color:rgb(58 63 153/var(--tw-border-opacity))}.hover\:border-blue-300:hover{--tw-border-opacity:1;border-color:rgb(144 205 244/var(--tw-border-opacity))}.hover\:\!bg-primary-dark:hover{--tw-bg-opacity:1!important;background-color:rgb(9 12 41/var(--tw-bg-opacity))!important}.hover\:bg-primary-light:hover{--tw-bg-opacity:1;background-color:rgb(90 204 230/var(--tw-bg-opacity))}.hover\:bg-customblue-300:hover{--tw-bg-opacity:1;background-color:rgb(29 32 77/var(--tw-bg-opacity))}.hover\:bg-transparent:hover{background-color:initial}.hover\:bg-primary-dark:hover{--tw-bg-opacity:1;background-color:rgb(9 12 41/var(--tw-bg-opacity))}.hover\:bg-secondary-main:hover{--tw-bg-opacity:1;background-color:rgb(43 22 107/var(--tw-bg-opacity))}.hover\:bg-secondary-dark:hover{--tw-bg-opacity:1;background-color:rgb(4 28 74/var(--tw-bg-opacity))}.hover\:bg-secondary-light\/60:hover{background-color:#3a3f9999}.hover\:bg-customblue-80:hover{--tw-bg-opacity:1;background-color:rgb(20 84 212/var(--tw-bg-opacity))}.hover\:bg-customblue-50:hover{--tw-bg-opacity:1;background-color:rgb(15 58 148/var(--tw-bg-opacity))}.hover\:bg-primary-main:hover{--tw-bg-opacity:1;background-color:rgb(9 68 179/var(--tw-bg-opacity))}.hover\:bg-secondary-light:hover{--tw-bg-opacity:1;background-color:rgb(58 63 153/var(--tw-bg-opacity))}.hover\:bg-white:hover{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.hover\:bg-black:hover{--tw-bg-opacity:1;background-color:rgb(0 0 0/var(--tw-bg-opacity))}.hover\:bg-gray-900:hover{--tw-bg-opacity:1;background-color:rgb(26 32 44/var(--tw-bg-opacity))}.hover\:text-primary-light:hover{--tw-text-opacity:1;color:rgb(90 204 230/var(--tw-text-opacity))}.hover\:\!text-primary-light:hover{--tw-text-opacity:1!important;color:rgb(90 204 230/var(--tw-text-opacity))!important}.hover\:text-black:hover{--tw-text-opacity:1;color:rgb(0 0 0/var(--tw-text-opacity))}.hover\:text-white:hover{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.hover\:text-primary-active:hover{--tw-text-opacity:1;color:rgb(52 140 253/var(--tw-text-opacity))}.hover\:opacity-80:hover{opacity:.8}.hover\:opacity-70:hover{opacity:.7}.hover\:opacity-60:hover{opacity:.6}.focus\:\!rounded-md:focus{border-radius:.375rem!important}.focus\:border-black:focus{--tw-border-opacity:1;border-color:rgb(0 0 0/var(--tw-border-opacity))}.focus\:border-inputfield-focus:focus{--tw-border-opacity:1;border-color:rgb(90 204 230/var(--tw-border-opacity))}.focus\:\!border-primary-light:focus{--tw-border-opacity:1!important;border-color:rgb(90 204 230/var(--tw-border-opacity))!important}.focus\:border-gray-500:focus{--tw-border-opacity:1;border-color:rgb(160 174 192/var(--tw-border-opacity))}.focus\:border-blue-300:focus{--tw-border-opacity:1;border-color:rgb(144 205 244/var(--tw-border-opacity))}.focus\:bg-secondary-dark:focus{--tw-bg-opacity:1;background-color:rgb(4 28 74/var(--tw-bg-opacity))}.focus\:\!bg-primary-light:focus{--tw-bg-opacity:1!important;background-color:rgb(90 204 230/var(--tw-bg-opacity))!important}.focus\:bg-primary-main:focus{--tw-bg-opacity:1;background-color:rgb(9 68 179/var(--tw-bg-opacity))}.focus\:bg-secondary-light:focus{--tw-bg-opacity:1;background-color:rgb(58 63 153/var(--tw-bg-opacity))}.focus\:bg-white:focus{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.focus\:bg-black:focus{--tw-bg-opacity:1;background-color:rgb(0 0 0/var(--tw-bg-opacity))}.focus\:bg-primary-light:focus{--tw-bg-opacity:1;background-color:rgb(90 204 230/var(--tw-bg-opacity))}.focus\:text-black:focus{--tw-text-opacity:1;color:rgb(0 0 0/var(--tw-text-opacity))}.focus\:text-white:focus{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.focus\:\!text-black:focus{--tw-text-opacity:1!important;color:rgb(0 0 0/var(--tw-text-opacity))!important}.focus\:opacity-80:focus{opacity:.8}.focus\:outline-none:focus{outline:2px solid #0000;outline-offset:2px}.active\:border-white:active{--tw-border-opacity:1;border-color:rgb(255 255 255/var(--tw-border-opacity))}.active\:bg-secondary-dark:active{--tw-bg-opacity:1;background-color:rgb(4 28 74/var(--tw-bg-opacity))}.active\:bg-customblue-40:active{--tw-bg-opacity:1;background-color:rgb(14 48 127/var(--tw-bg-opacity))}.active\:bg-customblue-20:active{--tw-bg-opacity:1;background-color:rgb(11 31 84/var(--tw-bg-opacity))}.active\:text-primary-light:active{--tw-text-opacity:1;color:rgb(90 204 230/var(--tw-text-opacity))}.active\:text-aqua-pale:active{--tw-text-opacity:1;color:rgb(123 178 206/var(--tw-text-opacity))}.active\:text-white:active{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.active\:opacity-80:active{opacity:.8}.active\:opacity-100:active{opacity:1}.disabled\:border-inputfield-disabled:disabled{--tw-border-opacity:1;border-color:rgb(43 22 107/var(--tw-border-opacity))}.group:hover .group-hover\:visible{visibility:visible}.group\/row:hover .group-hover\/row\:flex{display:-webkit-box;display:-ms-flexbox;display:flex}.group\/row:hover .group-hover\/row\:hidden{display:none}.group:hover .group-hover\:cursor-pointer{cursor:pointer}.group:hover .group-hover\:border-black{--tw-border-opacity:1;border-color:rgb(0 0 0/var(--tw-border-opacity))}.group\/button:hover .group-hover\/button\:border-primary-dark{--tw-border-opacity:1;border-color:rgb(9 12 41/var(--tw-border-opacity))}.group:hover .group-hover\:border-primary-light\/70{border-color:#5acce6b3}.group:hover .group-hover\:bg-primary-main{--tw-bg-opacity:1;background-color:rgb(9 68 179/var(--tw-bg-opacity))}.group:hover .group-hover\:bg-secondary-main{--tw-bg-opacity:1;background-color:rgb(43 22 107/var(--tw-bg-opacity))}.group:hover .group-hover\:bg-secondary-dark{--tw-bg-opacity:1;background-color:rgb(4 28 74/var(--tw-bg-opacity))}.group:hover .group-hover\:text-primary-light,.group\/button:hover .group-hover\/button\:text-primary-light,.group\/secondary:hover .group-hover\/secondary\:text-primary-light{--tw-text-opacity:1;color:rgb(90 204 230/var(--tw-text-opacity))}@media (min-width:1024px){.lg\:w-10\/12{width:83.333333%}}@media (min-width:1280px){.xl\:w-9\/12{width:75%}}
|
|
13
|
+
/*! tailwindcss v3.2.4 | MIT License | https://tailwindcss.com*/*,:after,:before{border:0 solid #e2e8f0;-webkit-box-sizing:border-box;box-sizing:border-box}:after,:before{--tw-content:""}html{-webkit-text-size-adjust:100%;-webkit-font-feature-settings:normal;font-feature-settings:normal;font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4}body{line-height:inherit;margin:0}hr{border-top-width:1px;color:inherit;height:0}abbr:where([title]){text-decoration:underline;-webkit-text-decoration:underline dotted currentColor;text-decoration:underline dotted currentColor}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:initial}sub{bottom:-.25em}sup{top:-.5em}table{border-collapse:collapse;border-color:inherit;text-indent:0}button,input,optgroup,select,textarea{color:inherit;font-family:inherit;font-size:100%;font-weight:inherit;line-height:inherit;margin:0;padding:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button;background-color:initial;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:initial}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}textarea{resize:vertical}input::-webkit-input-placeholder, textarea::-webkit-input-placeholder{color:#cbd5e0;opacity:1}input::-moz-placeholder, textarea::-moz-placeholder{color:#cbd5e0;opacity:1}input:-ms-input-placeholder, textarea:-ms-input-placeholder{color:#cbd5e0;opacity:1}input::-ms-input-placeholder, textarea::-ms-input-placeholder{color:#cbd5e0;opacity:1}input::placeholder,textarea::placeholder{color:#cbd5e0;opacity:1}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{height:auto;max-width:100%}[hidden]{display:none}html{font-family:Inter,sans-serif}::-ms-backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:#4299e180;--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }*,::backdrop,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:#4299e180;--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }.container{width:100%}@media (min-width:640px){.container{max-width:640px}}@media (min-width:768px){.container{max-width:768px}}@media (min-width:1024px){.container{max-width:1024px}}@media (min-width:1280px){.container{max-width:1280px}}.pointer-events-none{pointer-events:none}.pointer-events-auto{pointer-events:auto}.visible{visibility:visible}.invisible{visibility:hidden}.collapse{visibility:collapse}.static{position:static}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.\!relative{position:relative!important}.sticky{position:sticky}.inset-y-0{bottom:0;top:0}.inset-x-auto{left:auto;right:auto}.top-\[24px\]{top:24px}.top-0{top:0}.left-0{left:0}.left-1\/2{left:50%}.bottom-3{bottom:.75rem}.top-viewport{top:.5rem}.left-viewport{left:.5rem}.right-viewport-scrollbar{right:1.3rem}.bottom-viewport{bottom:.5rem}.bottom-1{bottom:.25rem}.left-\[50px\]{left:50px}.top-\[100\%\]{top:100%}.bottom-\[100\%\]{bottom:100%}.right-0{right:0}.top-1\/2{top:50%}.left-\[250px\]{left:250px}.bottom-2{bottom:.5rem}.bottom-0{bottom:0}.left-0\.5{left:.125rem}.top-7{top:1.75rem}.right-8{right:2rem}.right-\[8px\]{right:8px}.bottom-auto{bottom:auto}.left-auto{left:auto}.right-auto{right:auto}.top-auto{top:auto}.left-\[3px\]{left:3px}.top-\[-3px\]{top:-3px}.-top-1{top:-.25rem}.left-\[4px\]{left:4px}.top-\[3px\]{top:3px}.top-full{top:100%}.top-\[4px\]{top:4px}.left-\[0px\]{left:0}.right-\[4px\]{right:4px}.bottom-\[4px\]{bottom:4px}.right-\[0px\]{right:0}.bottom-px{bottom:1px}.left-viewport-scrollbar{left:1.3rem}.z-50{z-index:50}.z-10{z-index:10}.z-20{z-index:20}.order-last{-webkit-box-ordinal-group:10000;-ms-flex-order:9999;order:9999}.order-first{-webkit-box-ordinal-group:-9998;-ms-flex-order:-9999;order:-9999}.col-span-2{grid-column:span 2/span 2}.float-right{float:right}.m-auto{margin:auto}.\!m-0{margin:0!important}.m-5{margin:1.25rem}.m-0{margin:0}.mx-2{margin-left:.5rem;margin-right:.5rem}.my-3{margin-bottom:.75rem;margin-top:.75rem}.mx-auto{margin-left:auto;margin-right:auto}.my-1{margin-bottom:.25rem;margin-top:.25rem}.my-0{margin-bottom:0;margin-top:0}.mx-1{margin-left:.25rem;margin-right:.25rem}.mx-1\.5{margin-left:.375rem;margin-right:.375rem}.mx-0\.5{margin-left:.125rem;margin-right:.125rem}.mx-0{margin-left:0;margin-right:0}.mx-4{margin-left:1rem;margin-right:1rem}.mx-8{margin-left:2rem;margin-right:2rem}.my-2{margin-bottom:.5rem;margin-top:.5rem}.mx-3{margin-left:.75rem;margin-right:.75rem}.mr-1{margin-right:.25rem}.ml-1{margin-left:.25rem}.mt-3{margin-top:.75rem}.mt-2{margin-top:.5rem}.mt-6{margin-top:1.5rem}.mb-2{margin-bottom:.5rem}.mr-2{margin-right:.5rem}.mb-1{margin-bottom:.25rem}.mr-2\.5{margin-right:.625rem}.mb-4{margin-bottom:1rem}.mb-6{margin-bottom:1.5rem}.mr-4{margin-right:1rem}.mr-8{margin-right:2rem}.ml-2{margin-left:.5rem}.ml-4{margin-left:1rem}.ml-auto{margin-left:auto}.mt-1{margin-top:.25rem}.mb-10{margin-bottom:2.5rem}.mr-3{margin-right:.75rem}.mb-3{margin-bottom:.75rem}.mb-8{margin-bottom:2rem}.mt-0\.5{margin-top:.125rem}.mt-0{margin-top:0}.ml-\[1ch\]{margin-left:1ch}.mr-auto{margin-right:auto}.mt-5{margin-top:1.25rem}.-mt-2{margin-top:-.5rem}.mt-4{margin-top:1rem}.mt-\[5px\]{margin-top:5px}.mt-12{margin-top:3rem}.mt-\[2px\]{margin-top:2px}.mb-1\.5{margin-bottom:.375rem}.ml-1\.5{margin-left:.375rem}.mb-0{margin-bottom:0}.ml-3{margin-left:.75rem}.mb-\[12px\]{margin-bottom:12px}.mb-\[9px\]{margin-bottom:9px}.mt-\[4px\]{margin-top:4px}.-mt-1{margin-top:-.25rem}.mb-\[8px\]{margin-bottom:8px}.mt-\[8px\]{margin-top:8px}.mb-\[1px\]{margin-bottom:1px}.mr-\[4px\]{margin-right:4px}.mb-5{margin-bottom:1.25rem}.mb-\[2px\]{margin-bottom:2px}.mt-\[1px\]{margin-top:1px}.ml-0\.5{margin-left:.125rem}.ml-0{margin-left:0}.mr-5{margin-right:1.25rem}.mt-8{margin-top:2rem}.ml-6{margin-left:1.5rem}.ml-5{margin-left:1.25rem}.box-border{-webkit-box-sizing:border-box;box-sizing:border-box}.box-content{-webkit-box-sizing:initial;box-sizing:initial}.block{display:block}.inline-block{display:inline-block}.inline{display:inline}.flex{display:-webkit-box;display:-ms-flexbox;display:flex}.inline-flex{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}.table{display:table}.grid{display:grid}.contents{display:contents}.\!contents{display:contents!important}.hidden{display:none}.h-full{height:100%}.h-6{height:1.5rem}.h-\[28px\]{height:28px}.h-\[14px\]{height:14px}.\!h-\[26px\]{height:26px!important}.h-\[26px\]{height:26px}.h-\[24px\]{height:24px}.h-3\.5{height:.875rem}.h-3{height:.75rem}.h-\[calc\(100vh-300px\)\]{height:calc(100vh - 300px)}.h-0\.5{height:.125rem}.h-0{height:0}.h-1{height:.25rem}.h-screen{height:100vh}.h-14{height:3.5rem}.h-8{height:2rem}.h-\[2px\]{height:2px}.h-\[480px\]{height:480px}.h-2{height:.5rem}.\!h-\[20px\]{height:20px!important}.h-\[543px\]{height:543px}.h-\[493px\]{height:493px}.h-\[433px\]{height:433px}.h-\[46px\]{height:46px}.h-\[385px\]{height:385px}.h-\[75px\]{height:75px}.h-\[60px\]{height:60px}.h-\[40px\]{height:40px}.h-auto{height:auto}.h-\[32px\]{height:32px}.h-4{height:1rem}.h-9{height:2.25rem}.h-\[48px\]{height:48px}.h-\[25px\]{height:25px}.h-5{height:1.25rem}.h-10{height:2.5rem}.h-\[3px\]{height:3px}.h-\[35px\]{height:35px}.h-\[86px\]{height:86px}.h-64{height:16rem}.h-12{height:3rem}.h-7{height:1.75rem}.h-\[89px\]{height:89px}.h-\[1px\]{height:1px}.h-\[6px\]{height:6px}.h-\[8px\]{height:8px}.h-\[20px\]{height:20px}.h-16{height:4rem}.h-\[34px\]{height:34px}.h-\[16px\]{height:16px}.h-\[10px\]{height:10px}.h-32{height:8rem}.h-11{height:2.75rem}.max-h-full{max-height:100%}.max-h-\[500px\]{max-height:500px}.max-h-64{max-height:16rem}.max-h-80{max-height:20rem}.max-h-0{max-height:0}.max-h-48{max-height:12rem}.min-h-\[1px\]{min-height:1px}.min-h-0{min-height:0}.min-h-\[480px\]{min-height:480px}.min-h-14{min-height:3.5rem}.min-h-full{min-height:100%}.min-h-\[28px\]{min-height:28px}.w-\[70\%\]{width:70%}.w-full{width:100%}.w-\[58px\]{width:58px}.w-\[14px\]{width:14px}.w-1\/2{width:50%}.\!w-\[115px\]{width:115px!important}.w-\[24px\]{width:24px}.w-3\.5{width:.875rem}.w-3{width:.75rem}.w-4\/24{width:16.66666667%}.w-2\/24{width:8.333333333%}.w-6\/24{width:25%}.w-5\/24{width:20.83333333%}.w-screen{width:100vw}.w-4{width:1rem}.\!w-\[117px\]{width:117px!important}.\!w-\[75px\]{width:75px!important}.w-6{width:1.5rem}.w-24{width:6rem}.w-10{width:2.5rem}.w-0{width:0}.w-\[28px\]{width:28px}.w-\[120px\]{width:120px}.w-\[460px\]{width:460px}.w-\[200px\]{width:200px}.w-\[95px\]{width:95px}.w-1\/24{width:4.166666667%}.w-3\/24{width:12.5%}.w-7\/24{width:29.16666667%}.w-8\/24{width:33.33333333%}.w-9\/24{width:37.5%}.w-10\/24{width:41.66666667%}.w-11\/24{width:45.83333333%}.w-12\/24{width:50%}.w-13\/24{width:54.16666667%}.w-14\/24{width:58.33333333%}.w-15\/24{width:62.5%}.w-16\/24{width:66.66666667%}.w-17\/24{width:70.83333333%}.w-18\/24{width:75%}.w-19\/24{width:79.16666667%}.w-20\/24{width:83.33333333%}.w-21\/24{width:87.5%}.w-22\/24{width:91.66666667%}.w-23\/24{width:95.83333333%}.w-5{width:1.25rem}.w-48{width:12rem}.w-\[40px\]{width:40px}.w-1\/3{width:33.333333%}.w-2\/3{width:66.666667%}.w-4\/5{width:80%}.w-2{width:.5rem}.w-40{width:10rem}.w-auto{width:auto}.w-max-content{width:-webkit-max-content;width:-moz-max-content;width:max-content}.w-8{width:2rem}.w-32{width:8rem}.w-\[45px\]{width:45px}.w-\[206px\]{width:206px}.w-\[90\%\]{width:90%}.w-12{width:3rem}.w-\[10px\]{width:10px}.w-11\/12{width:91.666667%}.w-\[26px\]{width:26px}.w-\[100px\]{width:100px}.w-\[64px\]{width:64px}.w-\[8px\]{width:8px}.w-1\/4{width:25%}.w-80{width:20rem}.w-\[2px\]{width:2px}.w-\[30px\]{width:30px}.w-\[32px\]{width:32px}.w-72{width:18rem}.w-56{width:14rem}.\!w-\[20px\]{width:20px!important}.min-w-\[45px\]{min-width:45px}.min-w-\[1px\]{min-width:1px}.min-w-\[32px\]{min-width:32px}.min-w-16{min-width:4rem}.min-w-md{min-width:6rem}.min-w-48{min-width:12rem}.min-w-full{min-width:100%}.max-w-\[900px\]{max-width:900px}.max-w-xs{max-width:20rem}.max-w-\[40\%\]{max-width:40%}.max-w-4xl{max-width:56rem}.max-w-none{max-width:none}.max-w-44{max-width:11rem}.max-w-64{max-width:16rem}.max-w-24{max-width:6rem}.max-w-40{max-width:10rem}.max-w-48{max-width:12rem}.max-w-full{max-width:100%}.flex-1{-webkit-box-flex:1;-ms-flex:1 1 0%;flex:1 1 0%}.flex-auto{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.flex-static{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.flex-shrink-0{-ms-flex-negative:0;flex-shrink:0}.flex-shrink{-ms-flex-negative:1;flex-shrink:1}.shrink-0{-ms-flex-negative:0;flex-shrink:0}.shrink{-ms-flex-negative:1;flex-shrink:1}.flex-grow,.grow{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.grow-0{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0}.basis-\[200px\]{-ms-flex-preferred-size:200px;flex-basis:200px}.origin-top-right{-webkit-transform-origin:top right;transform-origin:top right}.origin-top-left{-webkit-transform-origin:top left;transform-origin:top left}.origin-top{-webkit-transform-origin:top;transform-origin:top}.-translate-x-1\/2{--tw-translate-x:-50%}.-translate-x-1\/2,.-translate-y-1\/2{-webkit-transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.-translate-y-1\/2{--tw-translate-y:-50%}.rotate-180{--tw-rotate:180deg}.rotate-180,.rotate-90{-webkit-transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.rotate-90{--tw-rotate:90deg}.transform{-webkit-transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.cursor-default{cursor:default}.cursor-pointer{cursor:pointer}.cursor-auto{cursor:auto}.cursor-not-allowed{cursor:not-allowed}.select-none{-webkit-user-select:none; -moz-user-select:none; -ms-user-select:none; user-select:none}.select-text{-webkit-user-select:text; -moz-user-select:text; -ms-user-select:text; user-select:text}.resize{resize:both}.appearance-none{-webkit-appearance:none; -moz-appearance:none; appearance:none}.grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.flex-row{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.\!flex-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-row-reverse{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.flex-col{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.flex-wrap{-ms-flex-wrap:wrap;flex-wrap:wrap}.flex-nowrap{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.place-items-center{place-items:center}.items-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.items-end{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.items-center{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.\!items-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.items-baseline{-webkit-box-align:baseline;-ms-flex-align:baseline;align-items:baseline}.items-stretch{-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch}.justify-start{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.justify-end{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.justify-center{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.justify-between{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.\!justify-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-around{-ms-flex-pack:distribute;justify-content:space-around}.justify-evenly{-webkit-box-pack:space-evenly;-ms-flex-pack:space-evenly;justify-content:space-evenly}.gap-4{gap:1rem}.gap-1{gap:.25rem}.gap-2{gap:.5rem}.gap-2\.5{gap:.625rem}.gap-\[4px\]{gap:4px}.gap-3{gap:.75rem}.gap-\[10px\]{gap:10px}.gap-\[5px\]{gap:5px}.gap-6{gap:1.5rem}.space-x-1>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(.25rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(.25rem*var(--tw-space-x-reverse))}.space-y-4>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(1rem*var(--tw-space-y-reverse));margin-top:calc(1rem*(1 - var(--tw-space-y-reverse)))}.space-x-2>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(.5rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(.5rem*var(--tw-space-x-reverse))}.space-y-2>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.5rem*var(--tw-space-y-reverse));margin-top:calc(.5rem*(1 - var(--tw-space-y-reverse)))}.space-y-3>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.75rem*var(--tw-space-y-reverse));margin-top:calc(.75rem*(1 - var(--tw-space-y-reverse)))}.space-y-5>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(1.25rem*var(--tw-space-y-reverse));margin-top:calc(1.25rem*(1 - var(--tw-space-y-reverse)))}.self-start{-ms-flex-item-align:start;align-self:flex-start}.self-end{-ms-flex-item-align:end;align-self:flex-end}.self-center{-ms-flex-item-align:center;align-self:center}.overflow-auto{overflow:auto}.overflow-hidden{overflow:hidden}.overflow-visible{overflow:visible}.overflow-y-auto{overflow-y:auto}.overflow-x-hidden{overflow-x:hidden}.overflow-y-hidden{overflow-y:hidden}.overflow-y-scroll{overflow-y:scroll}.truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.\!truncate{overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important}.text-ellipsis{text-overflow:ellipsis}.whitespace-normal{white-space:normal}.whitespace-nowrap{white-space:nowrap}.whitespace-pre{white-space:pre}.whitespace-pre-wrap{white-space:pre-wrap}.break-normal{overflow-wrap:normal;word-break:normal}.break-words{overflow-wrap:break-word}.break-all{word-break:break-all}.rounded{border-radius:.25rem}.rounded-\[4px\]{border-radius:4px}.rounded-md{border-radius:.375rem}.rounded-lg{border-radius:.5rem}.rounded-\[5px\]{border-radius:5px}.rounded-full{border-radius:9999px}.rounded-sm{border-radius:.125rem}.rounded-l-xl{border-bottom-left-radius:.75rem;border-top-left-radius:.75rem}.rounded-r{border-bottom-right-radius:.25rem;border-top-right-radius:.25rem}.rounded-l{border-bottom-left-radius:.25rem;border-top-left-radius:.25rem}.rounded-b-\[4px\]{border-bottom-left-radius:4px;border-bottom-right-radius:4px}.rounded-l-\[6px\]{border-bottom-left-radius:6px;border-top-left-radius:6px}.rounded-l-\[4px\]{border-bottom-left-radius:4px;border-top-left-radius:4px}.rounded-t{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.rounded-b{border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem}.rounded-tl-md{border-top-left-radius:.375rem}.rounded-bl-md{border-bottom-left-radius:.375rem}.rounded-tr-md{border-top-right-radius:.375rem}.rounded-br-md{border-bottom-right-radius:.375rem}.\!rounded-tr-md{border-top-right-radius:.375rem!important}.\!rounded-br-md{border-bottom-right-radius:.375rem!important}.rounded-tl{border-top-left-radius:.25rem}.rounded-tr{border-top-right-radius:.25rem}.rounded-bl{border-bottom-left-radius:.25rem}.rounded-br{border-bottom-right-radius:.25rem}.border-2{border-width:2px}.border,.border-\[1px\]{border-width:1px}.border-0{border-width:0}.border-\[2px\]{border-width:2px}.border-l{border-left-width:1px}.border-l-2{border-left-width:2px}.border-b{border-bottom-width:1px}.border-b-2{border-bottom-width:2px}.border-t{border-top-width:1px}.border-r{border-right-width:1px}.border-t-0{border-top-width:0}.border-l-0{border-left-width:0}.border-r-0{border-right-width:0}.border-b-0{border-bottom-width:0}.border-t-2{border-top-width:2px}.border-b-4{border-bottom-width:4px}.border-solid{border-style:solid}.border-dashed{border-style:dashed}.border-primary-main{--tw-border-opacity:1;border-color:rgb(9 68 179/var(--tw-border-opacity))}.border-primary-light{--tw-border-opacity:1;border-color:rgb(90 204 230/var(--tw-border-opacity))}.border-primary-active{--tw-border-opacity:1;border-color:rgb(52 140 253/var(--tw-border-opacity))}.border-secondary-light{--tw-border-opacity:1;border-color:rgb(58 63 153/var(--tw-border-opacity))}.border-transparent{border-color:#0000}.border-black{--tw-border-opacity:1;border-color:rgb(0 0 0/var(--tw-border-opacity))}.border-common-dark{--tw-border-opacity:1;border-color:rgb(114 111 126/var(--tw-border-opacity))}.border-secondary-light\/60{border-color:#3a3f9999}.border-primary-dark{--tw-border-opacity:1;border-color:rgb(9 12 41/var(--tw-border-opacity))}.border-gray-500{--tw-border-opacity:1;border-color:rgb(160 174 192/var(--tw-border-opacity))}.border-secondary-main{--tw-border-opacity:1;border-color:rgb(43 22 107/var(--tw-border-opacity))}.border-white{--tw-border-opacity:1;border-color:rgb(255 255 255/var(--tw-border-opacity))}.border-inputfield-main{--tw-border-opacity:1;border-color:rgb(58 63 153/var(--tw-border-opacity))}.border-secondary-dark{--tw-border-opacity:1;border-color:rgb(4 28 74/var(--tw-border-opacity))}.border-customblue-10{--tw-border-opacity:1;border-color:rgb(10 22 63/var(--tw-border-opacity))}.border-common-bright{--tw-border-opacity:1;border-color:rgb(225 225 225/var(--tw-border-opacity))}.border-b-secondary-light{--tw-border-opacity:1;border-bottom-color:rgb(58 63 153/var(--tw-border-opacity))}.border-b-gray-900{--tw-border-opacity:1;border-bottom-color:rgb(26 32 44/var(--tw-border-opacity))}.bg-primary-light{--tw-bg-opacity:1;background-color:rgb(90 204 230/var(--tw-bg-opacity))}.\!bg-black{--tw-bg-opacity:1!important;background-color:rgb(0 0 0/var(--tw-bg-opacity))!important}.\!bg-primary-light{--tw-bg-opacity:1!important;background-color:rgb(90 204 230/var(--tw-bg-opacity))!important}.bg-black{--tw-bg-opacity:1;background-color:rgb(0 0 0/var(--tw-bg-opacity))}.bg-customgray-100{--tw-bg-opacity:1;background-color:rgb(38 41 67/var(--tw-bg-opacity))}.bg-primary-main{--tw-bg-opacity:1;background-color:rgb(9 68 179/var(--tw-bg-opacity))}.bg-customblue-30{--tw-bg-opacity:1;background-color:rgb(9 40 110/var(--tw-bg-opacity))}.bg-secondary-dark{--tw-bg-opacity:1;background-color:rgb(4 28 74/var(--tw-bg-opacity))}.bg-black\/\[\.4\]{background-color:#0006}.bg-transparent{background-color:initial}.bg-primary-dark{--tw-bg-opacity:1;background-color:rgb(9 12 41/var(--tw-bg-opacity))}.bg-inputfield-main{--tw-bg-opacity:1;background-color:rgb(58 63 153/var(--tw-bg-opacity))}.bg-inputfield-placeholder{--tw-bg-opacity:1;background-color:rgb(57 56 63/var(--tw-bg-opacity))}.bg-customblue-40{--tw-bg-opacity:1;background-color:rgb(14 48 127/var(--tw-bg-opacity))}.bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.bg-primary-active{--tw-bg-opacity:1;background-color:rgb(52 140 253/var(--tw-bg-opacity))}.bg-\[\#04225b\]{--tw-bg-opacity:1;background-color:rgb(4 34 91/var(--tw-bg-opacity))}.bg-secondary-light{--tw-bg-opacity:1;background-color:rgb(58 63 153/var(--tw-bg-opacity))}.bg-secondary-main{--tw-bg-opacity:1;background-color:rgb(43 22 107/var(--tw-bg-opacity))}.\!bg-primary-dark{--tw-bg-opacity:1!important;background-color:rgb(9 12 41/var(--tw-bg-opacity))!important}.bg-overlay{background-color:#000c}.bg-customblue-400{--tw-bg-opacity:1;background-color:rgb(144 160 193/var(--tw-bg-opacity))}.bg-\[\#212456\]{--tw-bg-opacity:1;background-color:rgb(33 36 86/var(--tw-bg-opacity))}.bg-\[\#bed1db\]{--tw-bg-opacity:1;background-color:rgb(190 209 219/var(--tw-bg-opacity))}.bg-\[\#ebe5c4\]{--tw-bg-opacity:1;background-color:rgb(235 229 196/var(--tw-bg-opacity))}.bg-\[\#c6d9bf\]{--tw-bg-opacity:1;background-color:rgb(198 217 191/var(--tw-bg-opacity))}.bg-\[\#dabdbe\]{--tw-bg-opacity:1;background-color:rgb(218 189 190/var(--tw-bg-opacity))}.bg-common-bright{--tw-bg-opacity:1;background-color:rgb(225 225 225/var(--tw-bg-opacity))}.bg-\[\#222d44\]{--tw-bg-opacity:1;background-color:rgb(34 45 68/var(--tw-bg-opacity))}.bg-opacity-50{--tw-bg-opacity:.50}.fill-current{fill:currentColor}.stroke-secondary-light{stroke:#3a3f99}.stroke-1{stroke-width:1}.object-contain{-o-object-fit:contain;object-fit:contain}.p-1{padding:.25rem}.p-2{padding:.5rem}.\!p-0{padding:0!important}.p-4{padding:1rem}.p-3\.5{padding:.875rem}.p-3{padding:.75rem}.p-2\.5{padding:.625rem}.p-5{padding:1.25rem}.\!p-2{padding:.5rem!important}.p-6{padding:1.5rem}.p-0{padding:0}.p-0\.5{padding:.125rem}.px-1\.5{padding-left:.375rem;padding-right:.375rem}.px-1{padding-left:.25rem;padding-right:.25rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-5{padding-left:1.25rem;padding-right:1.25rem}.px-3{padding-left:.75rem;padding-right:.75rem}.py-4{padding-bottom:1rem;padding-top:1rem}.px-2\.5{padding-left:.625rem;padding-right:.625rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.py-1\.5{padding-bottom:.375rem;padding-top:.375rem}.py-1{padding-bottom:.25rem;padding-top:.25rem}.py-2{padding-bottom:.5rem;padding-top:.5rem}.py-8{padding-bottom:2rem;padding-top:2rem}.px-8{padding-left:2rem;padding-right:2rem}.px-\[10px\]{padding-left:10px;padding-right:10px}.px-4{padding-left:1rem;padding-right:1rem}.py-3{padding-bottom:.75rem;padding-top:.75rem}.px-\[20px\]{padding-left:20px;padding-right:20px}.px-9{padding-left:2.25rem;padding-right:2.25rem}.\!py-2{padding-bottom:.5rem!important;padding-top:.5rem!important}.py-2\.5{padding-bottom:.625rem;padding-top:.625rem}.py-\[13px\]{padding-bottom:13px;padding-top:13px}.py-16{padding-bottom:4rem;padding-top:4rem}.py-\[5px\]{padding-bottom:5px;padding-top:5px}.py-\[3px\]{padding-bottom:3px;padding-top:3px}.py-10{padding-bottom:2.5rem;padding-top:2.5rem}.py-5{padding-bottom:1.25rem;padding-top:1.25rem}.py-\[6px\]{padding-bottom:6px;padding-top:6px}.px-\[8px\]{padding-left:8px;padding-right:8px}.pb-5{padding-bottom:1.25rem}.pt-0\.5{padding-top:.125rem}.pt-0{padding-top:0}.pl-1{padding-left:.25rem}.pt-4{padding-top:1rem}.pt-1{padding-top:.25rem}.pt-5{padding-top:1.25rem}.pt-3{padding-top:.75rem}.pb-4{padding-bottom:1rem}.pl-10{padding-left:2.5rem}.pl-\[12px\]{padding-left:12px}.pr-\[12px\]{padding-right:12px}.pt-2{padding-top:.5rem}.pr-3{padding-right:.75rem}.pr-4{padding-right:1rem}.pb-3{padding-bottom:.75rem}.pl-2{padding-left:.5rem}.pr-2{padding-right:.5rem}.pl-8{padding-left:2rem}.pr-5{padding-right:1.25rem}.pb-\[20px\]{padding-bottom:20px}.pt-\[13px\]{padding-top:13px}.pt-\[20px\]{padding-top:20px}.pr-6{padding-right:1.5rem}.pl-0{padding-left:0}.pl-\[2px\]{padding-left:2px}.pl-4{padding-left:1rem}.pr-1{padding-right:.25rem}.pl-\[22px\]{padding-left:22px}.pr-\[22px\]{padding-right:22px}.pt-\[10px\]{padding-top:10px}.pb-\[10px\]{padding-bottom:10px}.\!pl-2{padding-left:.5rem!important}.pl-2\.5{padding-left:.625rem}.pl-\[34px\]{padding-left:34px}.pb-\[5px\]{padding-bottom:5px}.pb-\[9px\]{padding-bottom:9px}.pr-1\.5{padding-right:.375rem}.pt-\[3px\]{padding-top:3px}.pl-\[43px\]{padding-left:43px}.pl-\[45px\]{padding-left:45px}.pt-\[5px\]{padding-top:5px}.pr-\[8px\]{padding-right:8px}.pl-3{padding-left:.75rem}.pr-2\.5{padding-right:.625rem}.pt-1\.5{padding-top:.375rem}.pb-\[2px\]{padding-bottom:2px}.pb-0{padding-bottom:0}.pb-2{padding-bottom:.5rem}.pl-12{padding-left:3rem}.pl-\[4px\]{padding-left:4px}.pl-6{padding-left:1.5rem}.pb-\[0\.5\]{padding-bottom:.5}.pb-1{padding-bottom:.25rem}.pb-2\.5{padding-bottom:.625rem}.pt-48{padding-top:12rem}.pt-6{padding-top:1.5rem}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.text-justify{text-align:justify}.text-end{text-align:end}.align-sub{vertical-align:sub}.font-sans{font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji}.font-mono{font-family:Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}.text-\[14px\]{font-size:14px}.text-sm{font-size:.75rem}.text-\[11px\]{font-size:11px}.text-\[20px\]{font-size:20px}.text-lg{font-size:.9275rem}.text-base{font-size:.8125rem}.text-xs{font-size:.65rem}.text-\[13px\]{font-size:13px}.text-xl{font-size:1.25rem}.text-\[10px\]{font-size:10px}.text-\[16px\]{font-size:16px}.text-\[19px\]{font-size:19px}.text-\[0px\]{font-size:0}.text-\[12px\]{font-size:12px}.text-6xl{font-size:4rem}.text-5xl{font-size:3rem}.text-4xl{font-size:2.25rem}.text-3xl{font-size:1.875rem}.text-2xl{font-size:1.5rem}.font-\[300\],.font-light{font-weight:300}.font-bold{font-weight:700}.font-semibold{font-weight:600}.font-medium{font-weight:500}.font-normal{font-weight:300}.uppercase{text-transform:uppercase}.lowercase{text-transform:lowercase}.capitalize{text-transform:capitalize}.italic{font-style:italic}.leading-\[1\.2\]{line-height:1.2}.leading-6{line-height:1.5rem}.leading-tight{line-height:1.25}.leading-5{line-height:1.25rem}.\!leading-\[1\.2\]{line-height:1.2!important}.leading-\[22px\]{line-height:22px}.leading-none{line-height:1}.leading-10{line-height:2.5rem}.leading-7{line-height:1.75rem}.leading-3{line-height:.75rem}.tracking-widest{letter-spacing:.1em}.\!text-primary-active{--tw-text-opacity:1!important;color:rgb(52 140 253/var(--tw-text-opacity))!important}.\!text-common-bright{--tw-text-opacity:1!important;color:rgb(225 225 225/var(--tw-text-opacity))!important}.\!text-black{--tw-text-opacity:1!important;color:rgb(0 0 0/var(--tw-text-opacity))!important}.text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.text-aqua-pale{--tw-text-opacity:1;color:rgb(123 178 206/var(--tw-text-opacity))}.text-primary-active{--tw-text-opacity:1;color:rgb(52 140 253/var(--tw-text-opacity))}.text-primary-light{--tw-text-opacity:1;color:rgb(90 204 230/var(--tw-text-opacity))}.text-primary-main{--tw-text-opacity:1;color:rgb(9 68 179/var(--tw-text-opacity))}.text-common-light{--tw-text-opacity:1;color:rgb(161 159 173/var(--tw-text-opacity))}.text-blue-400{--tw-text-opacity:1;color:rgb(99 179 237/var(--tw-text-opacity))}.text-black{--tw-text-opacity:1;color:rgb(0 0 0/var(--tw-text-opacity))}.text-secondary-active{--tw-text-opacity:1;color:rgb(31 31 39/var(--tw-text-opacity))}.text-common-dark{--tw-text-opacity:1;color:rgb(114 111 126/var(--tw-text-opacity))}.text-blue-300{--tw-text-opacity:1;color:rgb(144 205 244/var(--tw-text-opacity))}.text-common-bright{--tw-text-opacity:1;color:rgb(225 225 225/var(--tw-text-opacity))}.text-red-600{--tw-text-opacity:1;color:rgb(229 62 62/var(--tw-text-opacity))}.text-secondary-light{--tw-text-opacity:1;color:rgb(58 63 153/var(--tw-text-opacity))}.text-\[\#726f7e\]{--tw-text-opacity:1;color:rgb(114 111 126/var(--tw-text-opacity))}.\!text-primary-light{--tw-text-opacity:1!important;color:rgb(90 204 230/var(--tw-text-opacity))!important}.text-primary-dark{--tw-text-opacity:1;color:rgb(9 12 41/var(--tw-text-opacity))}.text-red-700{--tw-text-opacity:1;color:rgb(197 48 48/var(--tw-text-opacity))}.text-yellow-500{--tw-text-opacity:1;color:rgb(236 201 75/var(--tw-text-opacity))}.text-green-500{--tw-text-opacity:1;color:rgb(72 187 120/var(--tw-text-opacity))}.text-\[\#b3b3b3\]{--tw-text-opacity:1;color:rgb(179 179 179/var(--tw-text-opacity))}.text-\[\#d8d8d8\]{--tw-text-opacity:1;color:rgb(216 216 216/var(--tw-text-opacity))}.text-\[\#3d5871\]{--tw-text-opacity:1;color:rgb(61 88 113/var(--tw-text-opacity))}.text-\[\#0944b3\]{--tw-text-opacity:1;color:rgb(9 68 179/var(--tw-text-opacity))}.text-red-500{--tw-text-opacity:1;color:rgb(245 101 101/var(--tw-text-opacity))}.text-inherit{color:inherit}.text-gray-800{--tw-text-opacity:1;color:rgb(45 55 72/var(--tw-text-opacity))}.text-blue-600{--tw-text-opacity:1;color:rgb(49 130 206/var(--tw-text-opacity))}.text-gray-700{--tw-text-opacity:1;color:rgb(74 85 104/var(--tw-text-opacity))}.underline{text-decoration-line:underline}.overline{text-decoration-line:overline}.placeholder-inputfield-placeholder::-webkit-input-placeholder{--tw-placeholder-opacity:1;color:rgb(57 56 63/var(--tw-placeholder-opacity))}.placeholder-inputfield-placeholder::-moz-placeholder{--tw-placeholder-opacity:1;color:rgb(57 56 63/var(--tw-placeholder-opacity))}.placeholder-inputfield-placeholder:-ms-input-placeholder{--tw-placeholder-opacity:1;color:rgb(57 56 63/var(--tw-placeholder-opacity))}.placeholder-inputfield-placeholder::-ms-input-placeholder{--tw-placeholder-opacity:1;color:rgb(57 56 63/var(--tw-placeholder-opacity))}.placeholder-inputfield-placeholder::placeholder{--tw-placeholder-opacity:1;color:rgb(57 56 63/var(--tw-placeholder-opacity))}.opacity-50{opacity:.5}.opacity-90{opacity:.9}.opacity-0{opacity:0}.opacity-60{opacity:.6}.shadow{--tw-shadow:0 1px 3px 0 #0000001a,0 1px 2px 0 #0000000f;--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px 0 var(--tw-shadow-color)}.shadow,.shadow-lg{-webkit-box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-lg{--tw-shadow:0 10px 15px -3px #0000001a,0 4px 6px -2px #0000000d;--tw-shadow-colored:0 10px 15px -3px var(--tw-shadow-color),0 4px 6px -2px var(--tw-shadow-color)}.shadow-\[0_0_0_200px_transparent\]{--tw-shadow:0 0 0 200px #0000;--tw-shadow-colored:0 0 0 200px var(--tw-shadow-color);-webkit-box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.outline-none{outline:2px solid #0000;outline-offset:2px}.outline{outline-style:solid}.ring{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);-webkit-box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.blur{--tw-blur:blur(8px)}.blur,.drop-shadow-md{-webkit-filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.drop-shadow-md{--tw-drop-shadow:drop-shadow(0 4px 3px #00000012) drop-shadow(0 2px 2px #0000000f)}.drop-shadow-lg{--tw-drop-shadow:drop-shadow(0 10px 8px #0000000a) drop-shadow(0 4px 3px #0000001a)}.drop-shadow-lg,.grayscale{-webkit-filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.grayscale{--tw-grayscale:grayscale(100%)}.invert{--tw-invert:invert(100%);-webkit-filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.\!invert{--tw-invert:invert(100%)!important;-webkit-filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)!important;filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)!important}.filter{-webkit-filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.\!filter{-webkit-filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)!important;filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)!important}.transition{-webkit-transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform;transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,-webkit-box-shadow,-webkit-transform}.transition-all{-webkit-transition-property:all;transition-property:all}.transition-\[max-height\]{-webkit-transition-property:max-height;transition-property:max-height}.transition-height{-webkit-transition-property:height;transition-property:height}.duration-300{-webkit-transition-duration:.3s;transition-duration:.3s}.duration-500{-webkit-transition-duration:.5s;transition-duration:.5s}.duration-1000{-webkit-transition-duration:1s;transition-duration:1s}.duration-150{-webkit-transition-duration:.15s;transition-duration:.15s}.ease-in-out{-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1)}body{background-color:#000}.truncate-2-lines{-webkit-line-clamp:2;-webkit-box-orient:vertical;display:-webkit-box;height:2.1rem;line-height:1.3;overflow:hidden}.ohif-disabled{cursor:not-allowed;opacity:.5;pointer-events:none;-webkit-user-select:none; -moz-user-select:none; -ms-user-select:none; user-select:none}.placeholder\:text-inputfield-placeholder::-webkit-input-placeholder{--tw-text-opacity:1;color:rgb(57 56 63/var(--tw-text-opacity))}.placeholder\:text-inputfield-placeholder::-moz-placeholder{--tw-text-opacity:1;color:rgb(57 56 63/var(--tw-text-opacity))}.placeholder\:text-inputfield-placeholder:-ms-input-placeholder{--tw-text-opacity:1;color:rgb(57 56 63/var(--tw-text-opacity))}.placeholder\:text-inputfield-placeholder::-ms-input-placeholder{--tw-text-opacity:1;color:rgb(57 56 63/var(--tw-text-opacity))}.placeholder\:text-inputfield-placeholder::placeholder{--tw-text-opacity:1;color:rgb(57 56 63/var(--tw-text-opacity))}.first\:rounded-t:first-child{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.first\:rounded-t-md:first-child{border-top-left-radius:.375rem;border-top-right-radius:.375rem}.first\:rounded-t-lg:first-child{border-top-left-radius:.5rem;border-top-right-radius:.5rem}.first\:rounded-t-full:first-child{border-top-left-radius:9999px;border-top-right-radius:9999px}.first\:rounded-l:first-child{border-bottom-left-radius:.25rem;border-top-left-radius:.25rem}.first\:rounded-l-md:first-child{border-bottom-left-radius:.375rem;border-top-left-radius:.375rem}.first\:rounded-l-lg:first-child{border-bottom-left-radius:.5rem;border-top-left-radius:.5rem}.first\:rounded-l-full:first-child{border-bottom-left-radius:9999px;border-top-left-radius:9999px}.first\:rounded-l-sm:first-child{border-bottom-left-radius:.125rem;border-top-left-radius:.125rem}.first\:border-0:first-child{border-width:0}.first\:pl-12:first-child{padding-left:3rem}.last\:mr-0:last-child{margin-right:0}.last\:rounded-b:last-child{border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem}.last\:rounded-b-md:last-child{border-bottom-left-radius:.375rem;border-bottom-right-radius:.375rem}.last\:rounded-b-lg:last-child{border-bottom-left-radius:.5rem;border-bottom-right-radius:.5rem}.last\:rounded-b-full:last-child{border-bottom-left-radius:9999px;border-bottom-right-radius:9999px}.last\:rounded-r:last-child{border-bottom-right-radius:.25rem;border-top-right-radius:.25rem}.last\:rounded-r-md:last-child{border-bottom-right-radius:.375rem;border-top-right-radius:.375rem}.last\:rounded-r-lg:last-child{border-bottom-right-radius:.5rem;border-top-right-radius:.5rem}.last\:rounded-r-full:last-child{border-bottom-right-radius:9999px;border-top-right-radius:9999px}.last\:rounded-r-sm:last-child{border-bottom-right-radius:.125rem;border-top-right-radius:.125rem}.last\:border-b-0:last-child{border-bottom-width:0}.last\:border-r-0:last-child{border-right-width:0}.last\:border-b:last-child{border-bottom-width:1px}.last\:border-r:last-child{border-right-width:1px}.last\:border-l-0:last-child{border-left-width:0}.hover\:cursor-pointer:hover{cursor:pointer}.hover\:rounded:hover{border-radius:.25rem}.hover\:border-primary-light:hover{--tw-border-opacity:1;border-color:rgb(90 204 230/var(--tw-border-opacity))}.hover\:border-black:hover{--tw-border-opacity:1;border-color:rgb(0 0 0/var(--tw-border-opacity))}.hover\:border-primary-dark:hover{--tw-border-opacity:1;border-color:rgb(9 12 41/var(--tw-border-opacity))}.hover\:border-gray-500:hover{--tw-border-opacity:1;border-color:rgb(160 174 192/var(--tw-border-opacity))}.hover\:border-secondary-light:hover{--tw-border-opacity:1;border-color:rgb(58 63 153/var(--tw-border-opacity))}.hover\:border-blue-300:hover{--tw-border-opacity:1;border-color:rgb(144 205 244/var(--tw-border-opacity))}.hover\:\!bg-primary-dark:hover{--tw-bg-opacity:1!important;background-color:rgb(9 12 41/var(--tw-bg-opacity))!important}.hover\:bg-primary-light:hover{--tw-bg-opacity:1;background-color:rgb(90 204 230/var(--tw-bg-opacity))}.hover\:bg-customblue-300:hover{--tw-bg-opacity:1;background-color:rgb(29 32 77/var(--tw-bg-opacity))}.hover\:bg-transparent:hover{background-color:initial}.hover\:bg-primary-dark:hover{--tw-bg-opacity:1;background-color:rgb(9 12 41/var(--tw-bg-opacity))}.hover\:bg-secondary-main:hover{--tw-bg-opacity:1;background-color:rgb(43 22 107/var(--tw-bg-opacity))}.hover\:bg-secondary-dark:hover{--tw-bg-opacity:1;background-color:rgb(4 28 74/var(--tw-bg-opacity))}.hover\:bg-secondary-light\/60:hover{background-color:#3a3f9999}.hover\:bg-customblue-80:hover{--tw-bg-opacity:1;background-color:rgb(20 84 212/var(--tw-bg-opacity))}.hover\:bg-customblue-50:hover{--tw-bg-opacity:1;background-color:rgb(15 58 148/var(--tw-bg-opacity))}.hover\:bg-primary-main:hover{--tw-bg-opacity:1;background-color:rgb(9 68 179/var(--tw-bg-opacity))}.hover\:bg-secondary-light:hover{--tw-bg-opacity:1;background-color:rgb(58 63 153/var(--tw-bg-opacity))}.hover\:bg-white:hover{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.hover\:bg-black:hover{--tw-bg-opacity:1;background-color:rgb(0 0 0/var(--tw-bg-opacity))}.hover\:bg-gray-900:hover{--tw-bg-opacity:1;background-color:rgb(26 32 44/var(--tw-bg-opacity))}.hover\:text-primary-light:hover{--tw-text-opacity:1;color:rgb(90 204 230/var(--tw-text-opacity))}.hover\:\!text-primary-light:hover{--tw-text-opacity:1!important;color:rgb(90 204 230/var(--tw-text-opacity))!important}.hover\:text-black:hover{--tw-text-opacity:1;color:rgb(0 0 0/var(--tw-text-opacity))}.hover\:text-white:hover{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.hover\:text-primary-active:hover{--tw-text-opacity:1;color:rgb(52 140 253/var(--tw-text-opacity))}.hover\:opacity-80:hover{opacity:.8}.hover\:opacity-70:hover{opacity:.7}.hover\:opacity-60:hover{opacity:.6}.focus\:\!rounded-md:focus{border-radius:.375rem!important}.focus\:border-black:focus{--tw-border-opacity:1;border-color:rgb(0 0 0/var(--tw-border-opacity))}.focus\:border-inputfield-focus:focus{--tw-border-opacity:1;border-color:rgb(90 204 230/var(--tw-border-opacity))}.focus\:\!border-primary-light:focus{--tw-border-opacity:1!important;border-color:rgb(90 204 230/var(--tw-border-opacity))!important}.focus\:border-gray-500:focus{--tw-border-opacity:1;border-color:rgb(160 174 192/var(--tw-border-opacity))}.focus\:border-blue-300:focus{--tw-border-opacity:1;border-color:rgb(144 205 244/var(--tw-border-opacity))}.focus\:bg-secondary-dark:focus{--tw-bg-opacity:1;background-color:rgb(4 28 74/var(--tw-bg-opacity))}.focus\:\!bg-primary-light:focus{--tw-bg-opacity:1!important;background-color:rgb(90 204 230/var(--tw-bg-opacity))!important}.focus\:bg-primary-main:focus{--tw-bg-opacity:1;background-color:rgb(9 68 179/var(--tw-bg-opacity))}.focus\:bg-secondary-light:focus{--tw-bg-opacity:1;background-color:rgb(58 63 153/var(--tw-bg-opacity))}.focus\:bg-white:focus{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.focus\:bg-black:focus{--tw-bg-opacity:1;background-color:rgb(0 0 0/var(--tw-bg-opacity))}.focus\:bg-primary-light:focus{--tw-bg-opacity:1;background-color:rgb(90 204 230/var(--tw-bg-opacity))}.focus\:text-black:focus{--tw-text-opacity:1;color:rgb(0 0 0/var(--tw-text-opacity))}.focus\:text-white:focus{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.focus\:\!text-black:focus{--tw-text-opacity:1!important;color:rgb(0 0 0/var(--tw-text-opacity))!important}.focus\:opacity-80:focus{opacity:.8}.focus\:outline-none:focus{outline:2px solid #0000;outline-offset:2px}.active\:border-white:active{--tw-border-opacity:1;border-color:rgb(255 255 255/var(--tw-border-opacity))}.active\:bg-secondary-dark:active{--tw-bg-opacity:1;background-color:rgb(4 28 74/var(--tw-bg-opacity))}.active\:bg-customblue-40:active{--tw-bg-opacity:1;background-color:rgb(14 48 127/var(--tw-bg-opacity))}.active\:bg-customblue-20:active{--tw-bg-opacity:1;background-color:rgb(11 31 84/var(--tw-bg-opacity))}.active\:text-primary-light:active{--tw-text-opacity:1;color:rgb(90 204 230/var(--tw-text-opacity))}.active\:text-aqua-pale:active{--tw-text-opacity:1;color:rgb(123 178 206/var(--tw-text-opacity))}.active\:text-white:active{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.active\:opacity-80:active{opacity:.8}.active\:opacity-100:active{opacity:1}.disabled\:border-inputfield-disabled:disabled{--tw-border-opacity:1;border-color:rgb(43 22 107/var(--tw-border-opacity))}.group:hover .group-hover\:visible{visibility:visible}.group\/row:hover .group-hover\/row\:flex{display:-webkit-box;display:-ms-flexbox;display:flex}.group\/row:hover .group-hover\/row\:hidden{display:none}.group:hover .group-hover\:cursor-pointer{cursor:pointer}.group:hover .group-hover\:border-black{--tw-border-opacity:1;border-color:rgb(0 0 0/var(--tw-border-opacity))}.group\/button:hover .group-hover\/button\:border-primary-dark{--tw-border-opacity:1;border-color:rgb(9 12 41/var(--tw-border-opacity))}.group:hover .group-hover\:border-primary-light\/70{border-color:#5acce6b3}.group:hover .group-hover\:bg-primary-main{--tw-bg-opacity:1;background-color:rgb(9 68 179/var(--tw-bg-opacity))}.group:hover .group-hover\:bg-secondary-main{--tw-bg-opacity:1;background-color:rgb(43 22 107/var(--tw-bg-opacity))}.group:hover .group-hover\:bg-secondary-dark{--tw-bg-opacity:1;background-color:rgb(4 28 74/var(--tw-bg-opacity))}.group:hover .group-hover\:text-primary-light,.group\/button:hover .group-hover\/button\:text-primary-light,.group\/secondary:hover .group-hover\/secondary\:text-primary-light{--tw-text-opacity:1;color:rgb(90 204 230/var(--tw-text-opacity))}@media (min-width:640px){.sm\:px-5{padding-left:1.25rem;padding-right:1.25rem}}@media (min-width:1024px){.lg\:w-10\/12{width:83.333333%}}@media (min-width:1280px){.xl\:w-9\/12{width:75%}}
|
|
14
14
|
.ohif-scrollbar{overflow-y:auto;scrollbar-color:#173239 #0000}.ohif-scrollbar-stable-gutter{scrollbar-gutter:stable}.study-min-height{min-height:450px}.ohif-scrollbar:hover{overflow-y:auto}.ohif-scrollbar::-webkit-scrollbar{scrollbar-width:thin}.ohif-scrollbar::-webkit-scrollbar-track{border-radius:.25rem}.ohif-scrollbar::-webkit-scrollbar-thumb{--tw-bg-opacity:1;background-color:rgb(4 28 74/var(--tw-bg-opacity));background-color:#041c4a;border-radius:.25rem}.ohif-scrollbar::-webkit-scrollbar-thumb:window-inactive{--tw-bg-opacity:1;background-color:rgb(4 28 74/var(--tw-bg-opacity));background-color:#041c4a}.invisible-scrollbar{scrollbar-width:none}.invisible-scrollbar::-webkit-scrollbar,.invisible-scrollbar::-webkit-scrollbar-track{display:none}.invisible-scrollbar::-webkit-scrollbar-thumb{display:none}.invisible-scrollbar::-webkit-scrollbar-thumb:window-inactive{display:none}
|
|
15
15
|
.ExpandableToolbarButton:hover .ExpandableToolbarButton__arrow:after{border-color:#5acce6 #0000;border-style:solid;border-width:10px 10px 0;bottom:-10px;content:"";position:absolute}.ExpandableToolbarButton .ExpandableToolbarButton__content{display:none}.ExpandableToolbarButton:hover .ExpandableToolbarButton__content{display:block}
|
|
16
16
|
.LineChart svg{border:1px solid #383f42;color:#ddd}.LineChart svg .background{stroke:none;fill:#151c20}.LineChart svg .axis.label{fill:#ddd;font-size:12px}.LineChart svg .axis .tick line{stroke:#ddd}.LineChart svg .axis .tick text{fill:#ddd}.LineChart svg .axis.grid .domain{stroke:none}.LineChart svg .axis.grid .tick line{stroke:#383f42}.LineChart svg .line{stroke-width:1px;fill:none}.LineChart svg .legend .legend-background{fill:none;stroke:#383f42}
|
package/dist/index.html
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
<!doctype html><html lang="en"><head><meta charset="UTF-8"/><meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"/><meta name="theme-color" content="#000000"/><meta name="mobile-web-app-capable" content="yes"/><meta name="application-name" content="OHIF Viewer"/><meta name="apple-mobile-web-app-capable" content="yes"/><meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"/><meta name="apple-mobile-web-app-title" content="@ohif/app"/><meta name="msapplication-TileColor" content="#fff"/><meta name="msapplication-TileImage" content="/assets/mstile-144x144.png"/><meta name="msapplication-config" content="/assets/browserconfig.xml"/><script>console.time('scriptToView');
|
|
2
|
-
window.PUBLIC_URL = '/';</script><link rel="manifest" href="/manifest.json"/><link rel="shortcut icon" href="/assets/favicon.ico"/><link rel="icon" type="image/png" sizes="16x16" href="/assets/favicon-16x16.png"/><link rel="icon" type="image/png" sizes="32x32" href="/assets/favicon-32x32.png"/><link rel="apple-touch-icon" sizes="57x57" href="/assets/apple-touch-icon-57x57.png"/><link rel="apple-touch-icon" sizes="60x60" href="/assets/apple-touch-icon-60x60.png"/><link rel="apple-touch-icon" sizes="72x72" href="/assets/apple-touch-icon-72x72.png"/><link rel="apple-touch-icon" sizes="76x76" href="/assets/apple-touch-icon-76x76.png"/><link rel="apple-touch-icon" sizes="114x114" href="/assets/apple-touch-icon-114x114.png"/><link rel="apple-touch-icon" sizes="120x120" href="/assets/apple-touch-icon-120x120.png"/><link rel="apple-touch-icon" sizes="144x144" href="/assets/apple-touch-icon-144x144.png"/><link rel="apple-touch-icon" sizes="152x152" href="/assets/apple-touch-icon-152x152.png"/><link rel="apple-touch-icon" sizes="167x167" href="/assets/apple-touch-icon-167x167.png"/><link rel="apple-touch-icon" sizes="180x180" href="/assets/apple-touch-icon-180x180.png"/><link rel="apple-touch-icon" sizes="1024x1024" href="/assets/apple-touch-icon-1024x1024.png"/><link rel="apple-touch-startup-image" media="(device-width: 320px) and (device-height: 480px) and (-webkit-device-pixel-ratio: 1)" href="/assets/apple-touch-startup-image-320x460.png"/><link rel="apple-touch-startup-image" media="(device-width: 320px) and (device-height: 480px) and (-webkit-device-pixel-ratio: 2)" href="/assets/apple-touch-startup-image-640x920.png"/><link rel="apple-touch-startup-image" media="(device-width: 320px) and (device-height: 568px) and (-webkit-device-pixel-ratio: 2)" href="/assets/apple-touch-startup-image-640x1096.png"/><link rel="apple-touch-startup-image" media="(device-width: 375px) and (device-height: 667px) and (-webkit-device-pixel-ratio: 2)" href="/assets/apple-touch-startup-image-750x1294.png"/><link rel="apple-touch-startup-image" media="(device-width: 414px) and (device-height: 736px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3)" href="/assets/apple-touch-startup-image-1182x2208.png"/><link rel="apple-touch-startup-image" media="(device-width: 414px) and (device-height: 736px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3)" href="/assets/apple-touch-startup-image-1242x2148.png"/><link rel="apple-touch-startup-image" media="(device-width: 768px) and (device-height: 1024px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 1)" href="/assets/apple-touch-startup-image-748x1024.png"/><link rel="apple-touch-startup-image" media="(device-width: 768px) and (device-height: 1024px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 1)" href="/assets/apple-touch-startup-image-768x1004.png"/><link rel="apple-touch-startup-image" media="(device-width: 768px) and (device-height: 1024px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2)" href="/assets/apple-touch-startup-image-1496x2048.png"/><link rel="apple-touch-startup-image" media="(device-width: 768px) and (device-height: 1024px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2)" href="/assets/apple-touch-startup-image-1536x2008.png"/><link rel="icon" type="image/png" sizes="228x228" href="/assets/coast-228x228.png"/><link rel="yandex-tableau-widget" href="/assets/yandex-browser-manifest.json"/><script rel="preload" as="script" src="/app-config.js"></script><script rel="preload" as="script" type="module" src="/init-service-worker.js"></script><title>OHIF Viewer</title><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin/><link href="https://fonts.googleapis.com/css?family=Inter:100,300,400,500,700&display=swap" rel="stylesheet" rel="preload" as="style"/><script defer="defer" src="/app.bundle.
|
|
2
|
+
window.PUBLIC_URL = '/';</script><link rel="manifest" href="/manifest.json"/><link rel="shortcut icon" href="/assets/favicon.ico"/><link rel="icon" type="image/png" sizes="16x16" href="/assets/favicon-16x16.png"/><link rel="icon" type="image/png" sizes="32x32" href="/assets/favicon-32x32.png"/><link rel="apple-touch-icon" sizes="57x57" href="/assets/apple-touch-icon-57x57.png"/><link rel="apple-touch-icon" sizes="60x60" href="/assets/apple-touch-icon-60x60.png"/><link rel="apple-touch-icon" sizes="72x72" href="/assets/apple-touch-icon-72x72.png"/><link rel="apple-touch-icon" sizes="76x76" href="/assets/apple-touch-icon-76x76.png"/><link rel="apple-touch-icon" sizes="114x114" href="/assets/apple-touch-icon-114x114.png"/><link rel="apple-touch-icon" sizes="120x120" href="/assets/apple-touch-icon-120x120.png"/><link rel="apple-touch-icon" sizes="144x144" href="/assets/apple-touch-icon-144x144.png"/><link rel="apple-touch-icon" sizes="152x152" href="/assets/apple-touch-icon-152x152.png"/><link rel="apple-touch-icon" sizes="167x167" href="/assets/apple-touch-icon-167x167.png"/><link rel="apple-touch-icon" sizes="180x180" href="/assets/apple-touch-icon-180x180.png"/><link rel="apple-touch-icon" sizes="1024x1024" href="/assets/apple-touch-icon-1024x1024.png"/><link rel="apple-touch-startup-image" media="(device-width: 320px) and (device-height: 480px) and (-webkit-device-pixel-ratio: 1)" href="/assets/apple-touch-startup-image-320x460.png"/><link rel="apple-touch-startup-image" media="(device-width: 320px) and (device-height: 480px) and (-webkit-device-pixel-ratio: 2)" href="/assets/apple-touch-startup-image-640x920.png"/><link rel="apple-touch-startup-image" media="(device-width: 320px) and (device-height: 568px) and (-webkit-device-pixel-ratio: 2)" href="/assets/apple-touch-startup-image-640x1096.png"/><link rel="apple-touch-startup-image" media="(device-width: 375px) and (device-height: 667px) and (-webkit-device-pixel-ratio: 2)" href="/assets/apple-touch-startup-image-750x1294.png"/><link rel="apple-touch-startup-image" media="(device-width: 414px) and (device-height: 736px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3)" href="/assets/apple-touch-startup-image-1182x2208.png"/><link rel="apple-touch-startup-image" media="(device-width: 414px) and (device-height: 736px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3)" href="/assets/apple-touch-startup-image-1242x2148.png"/><link rel="apple-touch-startup-image" media="(device-width: 768px) and (device-height: 1024px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 1)" href="/assets/apple-touch-startup-image-748x1024.png"/><link rel="apple-touch-startup-image" media="(device-width: 768px) and (device-height: 1024px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 1)" href="/assets/apple-touch-startup-image-768x1004.png"/><link rel="apple-touch-startup-image" media="(device-width: 768px) and (device-height: 1024px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2)" href="/assets/apple-touch-startup-image-1496x2048.png"/><link rel="apple-touch-startup-image" media="(device-width: 768px) and (device-height: 1024px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2)" href="/assets/apple-touch-startup-image-1536x2008.png"/><link rel="icon" type="image/png" sizes="228x228" href="/assets/coast-228x228.png"/><link rel="yandex-tableau-widget" href="/assets/yandex-browser-manifest.json"/><script rel="preload" as="script" src="/app-config.js"></script><script rel="preload" as="script" type="module" src="/init-service-worker.js"></script><title>OHIF Viewer</title><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin/><link href="https://fonts.googleapis.com/css?family=Inter:100,300,400,500,700&display=swap" rel="stylesheet" rel="preload" as="style"/><script defer="defer" src="/app.bundle.63284af341ee8095131d.js"></script><link href="/app.bundle.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="react-portal"></div><div id="root"></div></body></html>
|
package/dist/{polySeg.bundle.43bf3490e07982491e2b.js → polySeg.bundle.e5d36c3ecb20902d3366.js}
RENAMED
|
@@ -136,7 +136,7 @@
|
|
|
136
136
|
/******/ // This function allow to reference async chunks and sibling chunks for the entrypoint
|
|
137
137
|
/******/ __webpack_require__.u = (chunkId) => {
|
|
138
138
|
/******/ // return url for filenames based on template
|
|
139
|
-
/******/ return "" + (chunkId === 572 ? "polySeg" : chunkId) + ".bundle." + {"164":"
|
|
139
|
+
/******/ return "" + (chunkId === 572 ? "polySeg" : chunkId) + ".bundle." + {"164":"0860b89ac7bde6ee83b0","203":"846a90d1ede185c941b0","416":"f0716b63934f985aeaf5","483":"9263b25c34b349aae80e","572":"e5d36c3ecb20902d3366","702":"963481fbf871984b646f"}[chunkId] + ".js";
|
|
140
140
|
/******/ };
|
|
141
141
|
/******/ })();
|
|
142
142
|
/******/
|
|
@@ -290,7 +290,7 @@ const obj = {
|
|
|
290
290
|
/******/ // This function allow to reference async chunks and sibling chunks for the entrypoint
|
|
291
291
|
/******/ __webpack_require__.u = (chunkId) => {
|
|
292
292
|
/******/ // return url for filenames based on template
|
|
293
|
-
/******/ return "" + (chunkId === 572 ? "polySeg" : chunkId) + ".bundle." + {"117":"
|
|
293
|
+
/******/ return "" + (chunkId === 572 ? "polySeg" : chunkId) + ".bundle." + {"117":"a18b236cfb25b1daa254","203":"846a90d1ede185c941b0","416":"f0716b63934f985aeaf5","473":"f6804e7ac014a561eff8","572":"e5d36c3ecb20902d3366","702":"963481fbf871984b646f"}[chunkId] + ".js";
|
|
294
294
|
/******/ };
|
|
295
295
|
/******/ })();
|
|
296
296
|
/******/
|
package/dist/sw.js
CHANGED
|
@@ -51,7 +51,7 @@ self.addEventListener('message', event => {
|
|
|
51
51
|
}
|
|
52
52
|
}
|
|
53
53
|
});
|
|
54
|
-
workbox.precaching.precacheAndRoute([{'revision':null,'url':'/109.bundle.b4fee2a22b622839baf5.js'},{'revision':null,'url':'/117.bundle.a5e6959bf225da5cf4ed.js'},{'revision':null,'url':'/121.bundle.47f05840a5b3cdf75543.js'},{'revision':null,'url':'/141.bundle.556b4c1e4cab770417ac.js'},{'revision':null,'url':'/164.bundle.96c0518b435ea19ef8c4.js'},{'revision':null,'url':'/17dd54813d5acc10bf8f.wasm'},{'revision':null,'url':'/188.bundle.bef5c8babdde7064bdbe.js'},{'revision':null,'url':'/203.bundle.846a90d1ede185c941b0.js'},{'revision':null,'url':'/206.bundle.096c1d86defe1cf7e9ae.js'},{'revision':'d32549aa3716d55d525e59e31e2f6591','url':'/20fc4c659b85ccd2a9c0.wasm'},{'revision':null,'url':'/236.bundle.fb6c65ae3a5aa0c58727.js'},{'revision':null,'url':'/295.bundle.5ace95771ced62bdcab8.js'},{'revision':null,'url':'/297.bundle.194d8985ab974839b5b6.js'},{'revision':null,'url':'/321.bundle.7d6d0ead9384fcb67a5c.js'},{'revision':'185e5e0a10fa6ab2fc7b3c38e63d550b','url':'/321.css'},{'revision':null,'url':'/325.bundle.357db826733b5379bd1d.js'},{'revision':'51b8ed55f5b8d448837222f03bdd6de8','url':'/325.css'},{'revision':null,'url':'/342.bundle.36ee082163b01284eeba.js'},{'revision':'c4ea120c6da08aa75348edfa3e57ece9','url':'/36785fbd89b0e17f6099.wasm'},{'revision':null,'url':'/41.bundle.2f52dafa60516e97cd03.js'},{'revision':null,'url':'/416.bundle.837e0b84baddd2193d67.js'},{'revision':null,'url':'/445.bundle.38c6d2af64e41cd7c614.js'},{'revision':null,'url':'/448.bundle.7c47e50e0db23eeace58.js'},{'revision':null,'url':'/473.bundle.f6804e7ac014a561eff8.js'},{'revision':'51b8ed55f5b8d448837222f03bdd6de8','url':'/481.css'},{'revision':null,'url':'/483.bundle.9263b25c34b349aae80e.js'},{'revision':null,'url':'/487.bundle.adf730aff4ec37332b88.js'},{'revision':'c377e1f5fe4a207d270c3f7a8dd3e3ca','url':'/5004fdc02f329ce53b69.wasm'},{'revision':null,'url':'/530.bundle.207b38c15c4c01e4db0e.js'},{'revision':null,'url':'/544.bundle.1b6998bb61d6f8f88da9.js'},{'revision':'0afb25509c7f072fbd7eda42c6895dbf','url':'/544.css'},{'revision':null,'url':'/574.bundle.d6f15a036af7ecaf82f9.js'},{'revision':'a04a2f233dc569826f5f6e21b65bc87b','url':'/574.css'},{'revision':null,'url':'/594.bundle.9a7fd38c5fc9823216e5.js'},{'revision':'62b4ae8445d191d5aab5503ce475724d','url':'/610.min.worker.js'},{'revision':'3c2206525c18cd87dd28082949a4e43e','url':'/610.min.worker.js.map'},{'revision':'5800265b6831396572fb5d32c6bd8eef','url':'/62ab5d58a2bea7b5a1dc.wasm'},{'revision':null,'url':'/633.bundle.ad22fd57eb95ee5f056a.js'},{'revision':'aa1d1f3e32367e42fe90399144d94577','url':'/633.css'},{'revision':null,'url':'/644.bundle.1e77691d2eeb96a423b0.js'},{'revision':'ce10eced3ce34e663d86569b27f5bffb','url':'/65916ef3def695744bda.wasm'},{'revision':null,'url':'/669.bundle.796543c57c658097fe75.js'},{'revision':null,'url':'/699.bundle.4d75ac5add81a2e4ef3b.js'},{'revision':null,'url':'/7.bundle.ea90a6f6f1d4ab030dfb.js'},{'revision':null,'url':'/702.bundle.963481fbf871984b646f.js'},{'revision':null,'url':'/722.bundle.05e8759e64d484f4554d.js'},{'revision':null,'url':'/724.bundle.275035c2002c8fd78471.js'},{'revision':null,'url':'/726.bundle.c8de818cf1a3ff0cf7d2.js'},{'revision':'cc4a3a4da4ac1b863a714f93c66c6ef2','url':'/75a0c2dfe07b824c7d21.wasm'},{'revision':null,'url':'/783.bundle.b28ae6b134602470e2f1.js'},{'revision':null,'url':'/835.bundle.4c0eaa2c1a427ee41817.js'},{'revision':null,'url':'/862.bundle.4be5d148c2b1adf4dbf3.js'},{'revision':null,'url':'/889.bundle.1a646aa901e073328cad.js'},{'revision':null,'url':'/905.bundle.36ce5f219e58ff9ddf9b.js'},{'revision':null,'url':'/907.bundle.64fa9f550bd239e92346.js'},{'revision':null,'url':'/931.bundle.d270a1fda9a2836c3cc5.js'},{'revision':null,'url':'/939.bundle.9d93b2e47c52338747a2.js'},{'revision':null,'url':'/94.bundle.d6749c52eb6327bd45de.js'},{'revision':'74c9647440e51f149ad12923d6ead952','url':'/945.min.worker.js'},{'revision':'cdf6f0457d4af2cef04fc41816241bc1','url':'/945.min.worker.js.map'},{'revision':null,'url':'/961.bundle.6a18125a324bca120651.js'},{'revision':'d1895aa7a4595dc279c382e5a31ef9f4','url':'/_headers'},{'revision':'e3bf0f3e9c34f51ad59836ae8e8eaf43','url':'/_redirects'},{'revision':'2c0f91522bd3a5072b6b2c1b0ea93a4f','url':'/app-config.js'},{'revision':null,'url':'/app.bundle.177823343bc7e2b039a2.js'},{'revision':'9d23631dfa9ae4237bff849edc5e8c0a','url':'/app.bundle.css'},{'revision':'cb4f64534cdf8dd88f1d7219d44490db','url':'/assets/android-chrome-144x144.png'},{'revision':'5cde390de8a619ebe55a669d2ac3effd','url':'/assets/android-chrome-192x192.png'},{'revision':'e7466a67e90471de05401e53b8fe20be','url':'/assets/android-chrome-256x256.png'},{'revision':'9bbe9b80156e930d19a4e1725aa9ddae','url':'/assets/android-chrome-36x36.png'},{'revision':'5698b2ac0c82fe06d84521fc5482df04','url':'/assets/android-chrome-384x384.png'},{'revision':'56bef3fceec344d9747f8abe9c0bba27','url':'/assets/android-chrome-48x48.png'},{'revision':'3e8b8a01290992e82c242557417b0596','url':'/assets/android-chrome-512x512.png'},{'revision':'517925e91e2ce724432d296b687d25e2','url':'/assets/android-chrome-72x72.png'},{'revision':'4c3289bc690f8519012686888e08da71','url':'/assets/android-chrome-96x96.png'},{'revision':'cf464289183184df09292f581df0fb4f','url':'/assets/apple-touch-icon-1024x1024.png'},{'revision':'0857c5282c594e4900e8b31e3bade912','url':'/assets/apple-touch-icon-114x114.png'},{'revision':'4208f41a28130a67e9392a9dfcee6011','url':'/assets/apple-touch-icon-120x120.png'},{'revision':'cb4f64534cdf8dd88f1d7219d44490db','url':'/assets/apple-touch-icon-144x144.png'},{'revision':'977d293982af7e9064ba20806b45cf35','url':'/assets/apple-touch-icon-152x152.png'},{'revision':'6de91b4d2a30600b410758405cb567b4','url':'/assets/apple-touch-icon-167x167.png'},{'revision':'87bff140e3773bd7479a620501c4aa5c','url':'/assets/apple-touch-icon-180x180.png'},{'revision':'647386c34e75f1213830ea9a38913525','url':'/assets/apple-touch-icon-57x57.png'},{'revision':'0c200fe83953738b330ea431083e7a86','url':'/assets/apple-touch-icon-60x60.png'},{'revision':'517925e91e2ce724432d296b687d25e2','url':'/assets/apple-touch-icon-72x72.png'},{'revision':'c9989a807bb18633f6dcf254b5b56124','url':'/assets/apple-touch-icon-76x76.png'},{'revision':'87bff140e3773bd7479a620501c4aa5c','url':'/assets/apple-touch-icon-precomposed.png'},{'revision':'87bff140e3773bd7479a620501c4aa5c','url':'/assets/apple-touch-icon.png'},{'revision':'05fa74ea9c1c0c3931ba96467999081d','url':'/assets/apple-touch-startup-image-1182x2208.png'},{'revision':'9e2cd03e1e6fd0520eea6846f4278018','url':'/assets/apple-touch-startup-image-1242x2148.png'},{'revision':'5591e3a1822cbc8439b99c1a40d53425','url':'/assets/apple-touch-startup-image-1496x2048.png'},{'revision':'337de578c5ca04bd7d2be19d24d83821','url':'/assets/apple-touch-startup-image-1536x2008.png'},{'revision':'cafb4ab4eafe6ef946bd229a1d88e7de','url':'/assets/apple-touch-startup-image-320x460.png'},{'revision':'d9bb9e558d729eeac5efb8be8d6111cc','url':'/assets/apple-touch-startup-image-640x1096.png'},{'revision':'038b5b02bac8b82444bf9a87602ac216','url':'/assets/apple-touch-startup-image-640x920.png'},{'revision':'2177076eb07b1d64d663d7c03268be00','url':'/assets/apple-touch-startup-image-748x1024.png'},{'revision':'4fc097443815fe92503584c4bd73c630','url':'/assets/apple-touch-startup-image-750x1294.png'},{'revision':'2e29914062dce5c5141ab47eea2fc5d9','url':'/assets/apple-touch-startup-image-768x1004.png'},{'revision':'f692ec286b3a332c17985f4ed38b1076','url':'/assets/browserconfig.xml'},{'revision':'f3d9a3b647853c45b0e132e4acd0cc4a','url':'/assets/coast-228x228.png'},{'revision':'ad6e1def5c66193d649a31474bbfe45d','url':'/assets/favicon-16x16.png'},{'revision':'84d1dcdb6cdfa55e2f46be0c80fa5698','url':'/assets/favicon-32x32.png'},{'revision':'95fb44c4998a46109e49d724c060db24','url':'/assets/favicon.ico'},{'revision':'5df2a5b0cee399ac0bc40af74ba3c2cb','url':'/assets/firefox_app_128x128.png'},{'revision':'11fd9098c4b07c8a07e1d2a1e309e046','url':'/assets/firefox_app_512x512.png'},{'revision':'27cddfc922dca3bfa27b4a00fc2f5e36','url':'/assets/firefox_app_60x60.png'},{'revision':'2547879ee2928a5fd56dca483bcbd967','url':'/assets/images/CT-AAA.png'},{'revision':'245628fb9d18d6c5cd529615079f8e86','url':'/assets/images/CT-AAA2.png'},{'revision':'997a9c8b57e7b4e46d8f01fb49d078c6','url':'/assets/images/CT-Air.png'},{'revision':'e7ed89711f63348d49898da3a2b73ab9','url':'/assets/images/CT-Bone.png'},{'revision':'09d1dc6efebb10a60cdf85ed74a10214','url':'/assets/images/CT-Bones.png'},{'revision':'f8ae9bafd3b90ba3efbdcbe8901db187','url':'/assets/images/CT-Cardiac.png'},{'revision':'ed0cc538aba90d6a1c029923ca9b47db','url':'/assets/images/CT-Cardiac2.png'},{'revision':'dfdaf4e4889aefbf09514545f45726bb','url':'/assets/images/CT-Cardiac3.png'},{'revision':'5d4b9a331136a1a5d7ce7ccf7dfcca36','url':'/assets/images/CT-Chest-Contrast-Enhanced.png'},{'revision':'5fb264499a5bb42487663b00e42d1513','url':'/assets/images/CT-Chest-Vessels.png'},{'revision':'ab8f0e569c972388ddaaa61b92449fac','url':'/assets/images/CT-Coronary-Arteries-2.png'},{'revision':'e4e7e2e3cc09bc8c4fb03b6441bd2845','url':'/assets/images/CT-Coronary-Arteries-3.png'},{'revision':'79a2962a2d3cbe4bd3b675b5ca83c659','url':'/assets/images/CT-Coronary-Arteries.png'},{'revision':'6502a6bdab1c70e2188c3bf12ce5d4e4','url':'/assets/images/CT-Cropped-Volume-Bone.png'},{'revision':'e28ad3cf5ed2006fc5a7cffd602736fc','url':'/assets/images/CT-Fat.png'},{'revision':'ca1c5be76053edee27e68ffbf9105101','url':'/assets/images/CT-Liver-Vasculature.png'},{'revision':'d6c9ab857ed2ad19f1ff20bea02b6655','url':'/assets/images/CT-Lung.png'},{'revision':'ddb599c6a163bdf28ece8de1a337470a','url':'/assets/images/CT-MIP.png'},{'revision':'0b0dcf7940a555e2a9a0900f7f84d4d3','url':'/assets/images/CT-Muscle.png'},{'revision':'6082d383f9ce375a5873e2a00fc4d372','url':'/assets/images/CT-Pulmonary-Arteries.png'},{'revision':'b317366149ee2607bec95d63eb4d7661','url':'/assets/images/CT-Soft-Tissue.png'},{'revision':'4b0cd5a673ebb71da22a91ed608d6695','url':'/assets/images/DTI-FA-Brain.png'},{'revision':'3ea1cbee022af5b94710b73726308832','url':'/assets/images/MR-Angio.png'},{'revision':'bd25ca7b166193547f34950eed440e5c','url':'/assets/images/MR-Default.png'},{'revision':'2e50a49b859aeb316a1c23f911fce9ad','url':'/assets/images/MR-MIP.png'},{'revision':'6ba74de6961e08652ff9e2f1871b473d','url':'/assets/images/MR-T2-Brain.png'},{'revision':'42406bb474f0f87cf04a5afbbcd5e389','url':'/assets/images/VolumeRendering.png'},{'revision':'2017d95fae79dcf34b5a5b52586d4763','url':'/assets/manifest.webapp'},{'revision':'cb4f64534cdf8dd88f1d7219d44490db','url':'/assets/mstile-144x144.png'},{'revision':'334895225e16a7777e45d81964725a97','url':'/assets/mstile-150x150.png'},{'revision':'e295cca4af6ed0365cf7b014d91b0e9d','url':'/assets/mstile-310x150.png'},{'revision':'cbefa8c42250e5f2443819fe2c69d91e','url':'/assets/mstile-310x310.png'},{'revision':'aa411a69df2b33a1362fa38d1257fa9d','url':'/assets/mstile-70x70.png'},{'revision':'5609af4f69e40e33471aee770ea1d802','url':'/assets/yandex-browser-50x50.png'},{'revision':'dd001f21b3970d5a7f3e245cc10d21df','url':'/assets/yandex-browser-manifest.json'},{'revision':'52b9a07fe0541fe8c313d9788550bf51','url':'/b6b803111e2d06a825bd.wasm'},{'revision':'7edb59d2be7c993050cb31ded36afa31','url':'/c22b37c3488e1d6c3aa4.wasm'},{'revision':'8deb833230ce9d6a4e4ee7ef68f06c6c','url':'/cornerstoneDICOMImageLoader.min.js'},{'revision':'cfe5e44d04073ec78cbf6dfd87dc5665','url':'/cornerstoneDICOMImageLoader.min.js.map'},{'revision':null,'url':'/dicom-microscopy-viewer.bundle.d3a56dc9f62df5e11019.js'},{'revision':'9d8c85b42d04bb117a3b583d654fbb08','url':'/dicomMicroscopyViewer.min.js'},{'revision':'450494c199cf8dd8e8c34d5e98bf5334','url':'/dicomMicroscopyViewer.min.js.LICENSE.txt'},{'revision':'4acdd19a35d759ec2669f1ba9490937d','url':'/es6-shim.min.js'},{'revision':'791565db341e8852807303918f5f9939','url':'/google.js'},{'revision':null,'url':'/histogram-worker.bundle.829e14ec12c2b41a4323.js'},{'revision':'13bbfb86ddb8c249a4f37f15f762c9b0','url':'/index.html'},{'revision':'9046c04c3af284876bdd62b8052507d1','url':'/index.worker.f4bda803c15bc6359d5f.worker.js'},{'revision':'5a2e75731a97dfa37207b574921d0fff','url':'/index.worker.f4bda803c15bc6359d5f.worker.js.map'},{'revision':'71cec55513e051f0778ad89be760c11a','url':'/index.worker.min.worker.js'},{'revision':'fd1116add443fee52a935df926396e0f','url':'/index.worker.min.worker.js.map'},{'revision':'31c0367ca4160b2c6373e905739c5719','url':'/init-service-worker.js'},{'revision':'74fc9658b62903be2048c1f82a22b4d4','url':'/manifest.json'},{'revision':'3fa71aa0af3e34b4ebd9a71eee0f4bdd','url':'/ohif-logo-light.svg'},{'revision':'7e81da785c63e75650101db6c5d7560e','url':'/ohif-logo.svg'},{'revision':'eadf8bf1d85032a029e2c0df4b8938b0','url':'/oidc-client.min.js'},{'revision':null,'url':'/polySeg.bundle.43bf3490e07982491e2b.js'},{'revision':'a1aef5311245f5864315443d12246c37','url':'/polyfill.min.js'},{'revision':'af9346d3e597071ba9ee8cd32f8cc0ea','url':'/serve.json'},{'revision':'b1e488d9955b62bd2858874df11d5223','url':'/silent-refresh.html'},{'revision':null,'url':'/suv-peak-worker.bundle.1f9b9e6887eebc07c50a.js'}]);
|
|
54
|
+
workbox.precaching.precacheAndRoute([{'revision':null,'url':'/109.bundle.b4fee2a22b622839baf5.js'},{'revision':null,'url':'/117.bundle.a18b236cfb25b1daa254.js'},{'revision':null,'url':'/121.bundle.47f05840a5b3cdf75543.js'},{'revision':null,'url':'/141.bundle.556b4c1e4cab770417ac.js'},{'revision':null,'url':'/164.bundle.0860b89ac7bde6ee83b0.js'},{'revision':null,'url':'/17dd54813d5acc10bf8f.wasm'},{'revision':null,'url':'/188.bundle.b088e4f452f405860b43.js'},{'revision':null,'url':'/203.bundle.846a90d1ede185c941b0.js'},{'revision':null,'url':'/206.bundle.13d55d34e230296a4877.js'},{'revision':'d32549aa3716d55d525e59e31e2f6591','url':'/20fc4c659b85ccd2a9c0.wasm'},{'revision':null,'url':'/236.bundle.fb6c65ae3a5aa0c58727.js'},{'revision':null,'url':'/295.bundle.c935ed0430aa026f7591.js'},{'revision':null,'url':'/297.bundle.194d8985ab974839b5b6.js'},{'revision':null,'url':'/321.bundle.678bd59ee7034535f7b0.js'},{'revision':'185e5e0a10fa6ab2fc7b3c38e63d550b','url':'/321.css'},{'revision':null,'url':'/325.bundle.9f0d557f18a8f67db4cc.js'},{'revision':'51b8ed55f5b8d448837222f03bdd6de8','url':'/325.css'},{'revision':null,'url':'/342.bundle.36ee082163b01284eeba.js'},{'revision':'c4ea120c6da08aa75348edfa3e57ece9','url':'/36785fbd89b0e17f6099.wasm'},{'revision':null,'url':'/41.bundle.f7c3a8391f37d953f9e4.js'},{'revision':null,'url':'/416.bundle.f0716b63934f985aeaf5.js'},{'revision':null,'url':'/445.bundle.38c6d2af64e41cd7c614.js'},{'revision':null,'url':'/448.bundle.6ca163e62b1a53bb733a.js'},{'revision':null,'url':'/473.bundle.f6804e7ac014a561eff8.js'},{'revision':'51b8ed55f5b8d448837222f03bdd6de8','url':'/481.css'},{'revision':null,'url':'/483.bundle.9263b25c34b349aae80e.js'},{'revision':null,'url':'/487.bundle.75b0ef0a24e6eb57273d.js'},{'revision':'c377e1f5fe4a207d270c3f7a8dd3e3ca','url':'/5004fdc02f329ce53b69.wasm'},{'revision':null,'url':'/530.bundle.207b38c15c4c01e4db0e.js'},{'revision':null,'url':'/544.bundle.1b6998bb61d6f8f88da9.js'},{'revision':'0afb25509c7f072fbd7eda42c6895dbf','url':'/544.css'},{'revision':null,'url':'/574.bundle.a17af135ea650e98d81c.js'},{'revision':'a04a2f233dc569826f5f6e21b65bc87b','url':'/574.css'},{'revision':null,'url':'/594.bundle.5508a262c0806532b611.js'},{'revision':'62b4ae8445d191d5aab5503ce475724d','url':'/610.min.worker.js'},{'revision':'3c2206525c18cd87dd28082949a4e43e','url':'/610.min.worker.js.map'},{'revision':'5800265b6831396572fb5d32c6bd8eef','url':'/62ab5d58a2bea7b5a1dc.wasm'},{'revision':null,'url':'/633.bundle.00ea9d46f50f2d5bae4f.js'},{'revision':'aa1d1f3e32367e42fe90399144d94577','url':'/633.css'},{'revision':null,'url':'/644.bundle.1e77691d2eeb96a423b0.js'},{'revision':'ce10eced3ce34e663d86569b27f5bffb','url':'/65916ef3def695744bda.wasm'},{'revision':null,'url':'/669.bundle.9c2b82292a9b08982d57.js'},{'revision':null,'url':'/699.bundle.3d85bb118e71a52257c8.js'},{'revision':null,'url':'/7.bundle.1da865aba66a8a4556c7.js'},{'revision':null,'url':'/702.bundle.963481fbf871984b646f.js'},{'revision':null,'url':'/722.bundle.05e8759e64d484f4554d.js'},{'revision':null,'url':'/724.bundle.c913afb5b32732d37ac7.js'},{'revision':null,'url':'/726.bundle.c8de818cf1a3ff0cf7d2.js'},{'revision':'cc4a3a4da4ac1b863a714f93c66c6ef2','url':'/75a0c2dfe07b824c7d21.wasm'},{'revision':null,'url':'/783.bundle.965f4ae8310199dcf163.js'},{'revision':null,'url':'/835.bundle.4c0eaa2c1a427ee41817.js'},{'revision':null,'url':'/862.bundle.4be5d148c2b1adf4dbf3.js'},{'revision':null,'url':'/889.bundle.888d3ee599c5f1846c48.js'},{'revision':null,'url':'/905.bundle.8accdcf80922e400d513.js'},{'revision':null,'url':'/907.bundle.51455d31da82e241b875.js'},{'revision':null,'url':'/931.bundle.d270a1fda9a2836c3cc5.js'},{'revision':null,'url':'/939.bundle.9d93b2e47c52338747a2.js'},{'revision':null,'url':'/94.bundle.8e7205a15411781e2ada.js'},{'revision':'74c9647440e51f149ad12923d6ead952','url':'/945.min.worker.js'},{'revision':'cdf6f0457d4af2cef04fc41816241bc1','url':'/945.min.worker.js.map'},{'revision':null,'url':'/961.bundle.8c9f3f1b3e35f1a56bad.js'},{'revision':'d1895aa7a4595dc279c382e5a31ef9f4','url':'/_headers'},{'revision':'e3bf0f3e9c34f51ad59836ae8e8eaf43','url':'/_redirects'},{'revision':'2c0f91522bd3a5072b6b2c1b0ea93a4f','url':'/app-config.js'},{'revision':null,'url':'/app.bundle.63284af341ee8095131d.js'},{'revision':'3b063ab5ac5c22aa48217d321da32d51','url':'/app.bundle.css'},{'revision':'cb4f64534cdf8dd88f1d7219d44490db','url':'/assets/android-chrome-144x144.png'},{'revision':'5cde390de8a619ebe55a669d2ac3effd','url':'/assets/android-chrome-192x192.png'},{'revision':'e7466a67e90471de05401e53b8fe20be','url':'/assets/android-chrome-256x256.png'},{'revision':'9bbe9b80156e930d19a4e1725aa9ddae','url':'/assets/android-chrome-36x36.png'},{'revision':'5698b2ac0c82fe06d84521fc5482df04','url':'/assets/android-chrome-384x384.png'},{'revision':'56bef3fceec344d9747f8abe9c0bba27','url':'/assets/android-chrome-48x48.png'},{'revision':'3e8b8a01290992e82c242557417b0596','url':'/assets/android-chrome-512x512.png'},{'revision':'517925e91e2ce724432d296b687d25e2','url':'/assets/android-chrome-72x72.png'},{'revision':'4c3289bc690f8519012686888e08da71','url':'/assets/android-chrome-96x96.png'},{'revision':'cf464289183184df09292f581df0fb4f','url':'/assets/apple-touch-icon-1024x1024.png'},{'revision':'0857c5282c594e4900e8b31e3bade912','url':'/assets/apple-touch-icon-114x114.png'},{'revision':'4208f41a28130a67e9392a9dfcee6011','url':'/assets/apple-touch-icon-120x120.png'},{'revision':'cb4f64534cdf8dd88f1d7219d44490db','url':'/assets/apple-touch-icon-144x144.png'},{'revision':'977d293982af7e9064ba20806b45cf35','url':'/assets/apple-touch-icon-152x152.png'},{'revision':'6de91b4d2a30600b410758405cb567b4','url':'/assets/apple-touch-icon-167x167.png'},{'revision':'87bff140e3773bd7479a620501c4aa5c','url':'/assets/apple-touch-icon-180x180.png'},{'revision':'647386c34e75f1213830ea9a38913525','url':'/assets/apple-touch-icon-57x57.png'},{'revision':'0c200fe83953738b330ea431083e7a86','url':'/assets/apple-touch-icon-60x60.png'},{'revision':'517925e91e2ce724432d296b687d25e2','url':'/assets/apple-touch-icon-72x72.png'},{'revision':'c9989a807bb18633f6dcf254b5b56124','url':'/assets/apple-touch-icon-76x76.png'},{'revision':'87bff140e3773bd7479a620501c4aa5c','url':'/assets/apple-touch-icon-precomposed.png'},{'revision':'87bff140e3773bd7479a620501c4aa5c','url':'/assets/apple-touch-icon.png'},{'revision':'05fa74ea9c1c0c3931ba96467999081d','url':'/assets/apple-touch-startup-image-1182x2208.png'},{'revision':'9e2cd03e1e6fd0520eea6846f4278018','url':'/assets/apple-touch-startup-image-1242x2148.png'},{'revision':'5591e3a1822cbc8439b99c1a40d53425','url':'/assets/apple-touch-startup-image-1496x2048.png'},{'revision':'337de578c5ca04bd7d2be19d24d83821','url':'/assets/apple-touch-startup-image-1536x2008.png'},{'revision':'cafb4ab4eafe6ef946bd229a1d88e7de','url':'/assets/apple-touch-startup-image-320x460.png'},{'revision':'d9bb9e558d729eeac5efb8be8d6111cc','url':'/assets/apple-touch-startup-image-640x1096.png'},{'revision':'038b5b02bac8b82444bf9a87602ac216','url':'/assets/apple-touch-startup-image-640x920.png'},{'revision':'2177076eb07b1d64d663d7c03268be00','url':'/assets/apple-touch-startup-image-748x1024.png'},{'revision':'4fc097443815fe92503584c4bd73c630','url':'/assets/apple-touch-startup-image-750x1294.png'},{'revision':'2e29914062dce5c5141ab47eea2fc5d9','url':'/assets/apple-touch-startup-image-768x1004.png'},{'revision':'f692ec286b3a332c17985f4ed38b1076','url':'/assets/browserconfig.xml'},{'revision':'f3d9a3b647853c45b0e132e4acd0cc4a','url':'/assets/coast-228x228.png'},{'revision':'ad6e1def5c66193d649a31474bbfe45d','url':'/assets/favicon-16x16.png'},{'revision':'84d1dcdb6cdfa55e2f46be0c80fa5698','url':'/assets/favicon-32x32.png'},{'revision':'95fb44c4998a46109e49d724c060db24','url':'/assets/favicon.ico'},{'revision':'5df2a5b0cee399ac0bc40af74ba3c2cb','url':'/assets/firefox_app_128x128.png'},{'revision':'11fd9098c4b07c8a07e1d2a1e309e046','url':'/assets/firefox_app_512x512.png'},{'revision':'27cddfc922dca3bfa27b4a00fc2f5e36','url':'/assets/firefox_app_60x60.png'},{'revision':'2547879ee2928a5fd56dca483bcbd967','url':'/assets/images/CT-AAA.png'},{'revision':'245628fb9d18d6c5cd529615079f8e86','url':'/assets/images/CT-AAA2.png'},{'revision':'997a9c8b57e7b4e46d8f01fb49d078c6','url':'/assets/images/CT-Air.png'},{'revision':'e7ed89711f63348d49898da3a2b73ab9','url':'/assets/images/CT-Bone.png'},{'revision':'09d1dc6efebb10a60cdf85ed74a10214','url':'/assets/images/CT-Bones.png'},{'revision':'f8ae9bafd3b90ba3efbdcbe8901db187','url':'/assets/images/CT-Cardiac.png'},{'revision':'ed0cc538aba90d6a1c029923ca9b47db','url':'/assets/images/CT-Cardiac2.png'},{'revision':'dfdaf4e4889aefbf09514545f45726bb','url':'/assets/images/CT-Cardiac3.png'},{'revision':'5d4b9a331136a1a5d7ce7ccf7dfcca36','url':'/assets/images/CT-Chest-Contrast-Enhanced.png'},{'revision':'5fb264499a5bb42487663b00e42d1513','url':'/assets/images/CT-Chest-Vessels.png'},{'revision':'ab8f0e569c972388ddaaa61b92449fac','url':'/assets/images/CT-Coronary-Arteries-2.png'},{'revision':'e4e7e2e3cc09bc8c4fb03b6441bd2845','url':'/assets/images/CT-Coronary-Arteries-3.png'},{'revision':'79a2962a2d3cbe4bd3b675b5ca83c659','url':'/assets/images/CT-Coronary-Arteries.png'},{'revision':'6502a6bdab1c70e2188c3bf12ce5d4e4','url':'/assets/images/CT-Cropped-Volume-Bone.png'},{'revision':'e28ad3cf5ed2006fc5a7cffd602736fc','url':'/assets/images/CT-Fat.png'},{'revision':'ca1c5be76053edee27e68ffbf9105101','url':'/assets/images/CT-Liver-Vasculature.png'},{'revision':'d6c9ab857ed2ad19f1ff20bea02b6655','url':'/assets/images/CT-Lung.png'},{'revision':'ddb599c6a163bdf28ece8de1a337470a','url':'/assets/images/CT-MIP.png'},{'revision':'0b0dcf7940a555e2a9a0900f7f84d4d3','url':'/assets/images/CT-Muscle.png'},{'revision':'6082d383f9ce375a5873e2a00fc4d372','url':'/assets/images/CT-Pulmonary-Arteries.png'},{'revision':'b317366149ee2607bec95d63eb4d7661','url':'/assets/images/CT-Soft-Tissue.png'},{'revision':'4b0cd5a673ebb71da22a91ed608d6695','url':'/assets/images/DTI-FA-Brain.png'},{'revision':'3ea1cbee022af5b94710b73726308832','url':'/assets/images/MR-Angio.png'},{'revision':'bd25ca7b166193547f34950eed440e5c','url':'/assets/images/MR-Default.png'},{'revision':'2e50a49b859aeb316a1c23f911fce9ad','url':'/assets/images/MR-MIP.png'},{'revision':'6ba74de6961e08652ff9e2f1871b473d','url':'/assets/images/MR-T2-Brain.png'},{'revision':'42406bb474f0f87cf04a5afbbcd5e389','url':'/assets/images/VolumeRendering.png'},{'revision':'2017d95fae79dcf34b5a5b52586d4763','url':'/assets/manifest.webapp'},{'revision':'cb4f64534cdf8dd88f1d7219d44490db','url':'/assets/mstile-144x144.png'},{'revision':'334895225e16a7777e45d81964725a97','url':'/assets/mstile-150x150.png'},{'revision':'e295cca4af6ed0365cf7b014d91b0e9d','url':'/assets/mstile-310x150.png'},{'revision':'cbefa8c42250e5f2443819fe2c69d91e','url':'/assets/mstile-310x310.png'},{'revision':'aa411a69df2b33a1362fa38d1257fa9d','url':'/assets/mstile-70x70.png'},{'revision':'5609af4f69e40e33471aee770ea1d802','url':'/assets/yandex-browser-50x50.png'},{'revision':'dd001f21b3970d5a7f3e245cc10d21df','url':'/assets/yandex-browser-manifest.json'},{'revision':'52b9a07fe0541fe8c313d9788550bf51','url':'/b6b803111e2d06a825bd.wasm'},{'revision':'7edb59d2be7c993050cb31ded36afa31','url':'/c22b37c3488e1d6c3aa4.wasm'},{'revision':'8deb833230ce9d6a4e4ee7ef68f06c6c','url':'/cornerstoneDICOMImageLoader.min.js'},{'revision':'cfe5e44d04073ec78cbf6dfd87dc5665','url':'/cornerstoneDICOMImageLoader.min.js.map'},{'revision':null,'url':'/dicom-microscopy-viewer.bundle.d3a56dc9f62df5e11019.js'},{'revision':'9d8c85b42d04bb117a3b583d654fbb08','url':'/dicomMicroscopyViewer.min.js'},{'revision':'450494c199cf8dd8e8c34d5e98bf5334','url':'/dicomMicroscopyViewer.min.js.LICENSE.txt'},{'revision':'4acdd19a35d759ec2669f1ba9490937d','url':'/es6-shim.min.js'},{'revision':'791565db341e8852807303918f5f9939','url':'/google.js'},{'revision':null,'url':'/histogram-worker.bundle.829e14ec12c2b41a4323.js'},{'revision':'881248c0e9e1e3416e776eacc7862d88','url':'/index.html'},{'revision':'9046c04c3af284876bdd62b8052507d1','url':'/index.worker.f4bda803c15bc6359d5f.worker.js'},{'revision':'5a2e75731a97dfa37207b574921d0fff','url':'/index.worker.f4bda803c15bc6359d5f.worker.js.map'},{'revision':'71cec55513e051f0778ad89be760c11a','url':'/index.worker.min.worker.js'},{'revision':'fd1116add443fee52a935df926396e0f','url':'/index.worker.min.worker.js.map'},{'revision':'31c0367ca4160b2c6373e905739c5719','url':'/init-service-worker.js'},{'revision':'74fc9658b62903be2048c1f82a22b4d4','url':'/manifest.json'},{'revision':'3fa71aa0af3e34b4ebd9a71eee0f4bdd','url':'/ohif-logo-light.svg'},{'revision':'7e81da785c63e75650101db6c5d7560e','url':'/ohif-logo.svg'},{'revision':'eadf8bf1d85032a029e2c0df4b8938b0','url':'/oidc-client.min.js'},{'revision':null,'url':'/polySeg.bundle.e5d36c3ecb20902d3366.js'},{'revision':'a1aef5311245f5864315443d12246c37','url':'/polyfill.min.js'},{'revision':'af9346d3e597071ba9ee8cd32f8cc0ea','url':'/serve.json'},{'revision':'b1e488d9955b62bd2858874df11d5223','url':'/silent-refresh.html'},{'revision':null,'url':'/suv-peak-worker.bundle.d7f73324bbc3b9d1e0c2.js'}]);
|
|
55
55
|
|
|
56
56
|
// TODO: Cache API
|
|
57
57
|
// https://developers.google.com/web/fundamentals/instant-and-offline/web-storage/cache-api
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ohif/app",
|
|
3
|
-
"version": "3.8.0-beta.
|
|
3
|
+
"version": "3.8.0-beta.89",
|
|
4
4
|
"productVersion": "3.4.0",
|
|
5
5
|
"description": "OHIF Viewer",
|
|
6
6
|
"author": "OHIF Contributors",
|
|
@@ -54,24 +54,24 @@
|
|
|
54
54
|
"@cornerstonejs/codec-libjpeg-turbo-8bit": "^1.2.2",
|
|
55
55
|
"@cornerstonejs/codec-openjpeg": "^1.2.2",
|
|
56
56
|
"@cornerstonejs/codec-openjph": "^2.4.5",
|
|
57
|
-
"@cornerstonejs/dicom-image-loader": "^1.70.
|
|
57
|
+
"@cornerstonejs/dicom-image-loader": "^1.70.12",
|
|
58
58
|
"@emotion/serialize": "^1.1.3",
|
|
59
|
-
"@ohif/core": "3.8.0-beta.
|
|
60
|
-
"@ohif/extension-cornerstone": "3.8.0-beta.
|
|
61
|
-
"@ohif/extension-cornerstone-dicom-rt": "3.8.0-beta.
|
|
62
|
-
"@ohif/extension-cornerstone-dicom-seg": "3.8.0-beta.
|
|
63
|
-
"@ohif/extension-cornerstone-dicom-sr": "3.8.0-beta.
|
|
64
|
-
"@ohif/extension-default": "3.8.0-beta.
|
|
65
|
-
"@ohif/extension-dicom-microscopy": "3.8.0-beta.
|
|
66
|
-
"@ohif/extension-dicom-pdf": "3.8.0-beta.
|
|
67
|
-
"@ohif/extension-dicom-video": "3.8.0-beta.
|
|
68
|
-
"@ohif/extension-test": "3.8.0-beta.
|
|
69
|
-
"@ohif/i18n": "3.8.0-beta.
|
|
70
|
-
"@ohif/mode-basic-dev-mode": "3.8.0-beta.
|
|
71
|
-
"@ohif/mode-longitudinal": "3.8.0-beta.
|
|
72
|
-
"@ohif/mode-microscopy": "3.8.0-beta.
|
|
73
|
-
"@ohif/mode-test": "3.8.0-beta.
|
|
74
|
-
"@ohif/ui": "3.8.0-beta.
|
|
59
|
+
"@ohif/core": "3.8.0-beta.89",
|
|
60
|
+
"@ohif/extension-cornerstone": "3.8.0-beta.89",
|
|
61
|
+
"@ohif/extension-cornerstone-dicom-rt": "3.8.0-beta.89",
|
|
62
|
+
"@ohif/extension-cornerstone-dicom-seg": "3.8.0-beta.89",
|
|
63
|
+
"@ohif/extension-cornerstone-dicom-sr": "3.8.0-beta.89",
|
|
64
|
+
"@ohif/extension-default": "3.8.0-beta.89",
|
|
65
|
+
"@ohif/extension-dicom-microscopy": "3.8.0-beta.89",
|
|
66
|
+
"@ohif/extension-dicom-pdf": "3.8.0-beta.89",
|
|
67
|
+
"@ohif/extension-dicom-video": "3.8.0-beta.89",
|
|
68
|
+
"@ohif/extension-test": "3.8.0-beta.89",
|
|
69
|
+
"@ohif/i18n": "3.8.0-beta.89",
|
|
70
|
+
"@ohif/mode-basic-dev-mode": "3.8.0-beta.89",
|
|
71
|
+
"@ohif/mode-longitudinal": "3.8.0-beta.89",
|
|
72
|
+
"@ohif/mode-microscopy": "3.8.0-beta.89",
|
|
73
|
+
"@ohif/mode-test": "3.8.0-beta.89",
|
|
74
|
+
"@ohif/ui": "3.8.0-beta.89",
|
|
75
75
|
"@types/react": "^17.0.38",
|
|
76
76
|
"classnames": "^2.3.2",
|
|
77
77
|
"core-js": "^3.16.1",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|