@sapui5/sap.ushell 1.139.0 → 1.141.0

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.
Files changed (852) hide show
  1. package/package.json +2 -2
  2. package/src/main/js/sap/ushell/.library +1 -1
  3. package/src/main/js/sap/ushell/AppInfoParameters.js +2 -2
  4. package/src/main/js/sap/ushell/ApplicationType/UrlPostProcessing.js +0 -1
  5. package/src/main/js/sap/ushell/ApplicationType/guiResolution.js +6 -6
  6. package/src/main/js/sap/ushell/ApplicationType/systemAlias.js +22 -25
  7. package/src/main/js/sap/ushell/ApplicationType/urlResolution.js +12 -6
  8. package/src/main/js/sap/ushell/ApplicationType/urlTemplateResolution.js +277 -302
  9. package/src/main/js/sap/ushell/ApplicationType/wcfResolution.js +0 -1
  10. package/src/main/js/sap/ushell/ApplicationType/wdaResolution.js +11 -10
  11. package/src/main/js/sap/ushell/ApplicationType.js +8 -8
  12. package/src/main/js/sap/ushell/Container.js +54 -56
  13. package/src/main/js/sap/ushell/EventHub.js +5 -7
  14. package/src/main/js/sap/ushell/Fiori20Adapter.js +17 -11
  15. package/src/main/js/sap/ushell/Fiori20AdapterTest.js +1 -1
  16. package/src/main/js/sap/ushell/NWBCInterface.js +1 -1
  17. package/src/main/js/sap/ushell/SessionHandler.js +1 -1
  18. package/src/main/js/sap/ushell/TechnicalParameters.js +5 -5
  19. package/src/main/js/sap/ushell/URLTemplateProcessor/DefinitionParameterSetBuilder.js +1 -1
  20. package/src/main/js/sap/ushell/URLTemplateProcessor/DependencyGraph.js +1 -1
  21. package/src/main/js/sap/ushell/URLTemplateProcessor/Functions.js +11 -4
  22. package/src/main/js/sap/ushell/URLTemplateProcessor/Resolvers.js +1 -1
  23. package/src/main/js/sap/ushell/URLTemplateProcessor/TemplateParameterParser.js +1 -1
  24. package/src/main/js/sap/ushell/URLTemplateProcessor/utils.js +13 -2
  25. package/src/main/js/sap/ushell/URLTemplateProcessor.js +13 -3
  26. package/src/main/js/sap/ushell/Ui5NativeServiceFactory.js +4 -2
  27. package/src/main/js/sap/ushell/Ui5ServiceFactory.js +29 -27
  28. package/src/main/js/sap/ushell/User.js +13 -14
  29. package/src/main/js/sap/ushell/UserActivityLog.js +3 -3
  30. package/src/main/js/sap/ushell/adapters/AppVariantPersonalizationAdapter.js +54 -43
  31. package/src/main/js/sap/ushell/adapters/cdm/ClientSideTargetResolutionAdapter.js +13 -10
  32. package/src/main/js/sap/ushell/adapters/cdm/CommonDataModelAdapter.js +15 -14
  33. package/src/main/js/sap/ushell/adapters/cdm/ConfigurationDefaultsAdapter.js +1 -1
  34. package/src/main/js/sap/ushell/adapters/cdm/ContainerAdapter.js +3 -3
  35. package/src/main/js/sap/ushell/adapters/cdm/LaunchPageAdapter.js +155 -129
  36. package/src/main/js/sap/ushell/adapters/cdm/PagesCommonDataModelAdapter.js +25 -23
  37. package/src/main/js/sap/ushell/adapters/cdm/PersonalizationAdapter.js +1 -1
  38. package/src/main/js/sap/ushell/adapters/cdm/PersonalizationV2Adapter.js +1 -1
  39. package/src/main/js/sap/ushell/adapters/cdm/Settings/UserLanguageAndRegion/UserLanguageAndRegion.controller.js +4 -4
  40. package/src/main/js/sap/ushell/adapters/cdm/Ui5ComponentLoaderAdapter.js +1 -1
  41. package/src/main/js/sap/ushell/adapters/cdm/_LaunchPage/modifyHome.js +1 -1
  42. package/src/main/js/sap/ushell/adapters/cdm/_LaunchPage/readCatalogs.js +1 -1
  43. package/src/main/js/sap/ushell/adapters/cdm/_LaunchPage/readHome.js +1 -1
  44. package/src/main/js/sap/ushell/adapters/cdm/_LaunchPage/uri.transform.js +1 -1
  45. package/src/main/js/sap/ushell/adapters/cdm/_Personalization/internals.js +8 -13
  46. package/src/main/js/sap/ushell/adapters/cdm/util/AppForInbound.js +1 -1
  47. package/src/main/js/sap/ushell/adapters/cdm/util/cdmSiteUtils.js +6 -3
  48. package/src/main/js/sap/ushell/adapters/cdm/v3/AdapterBase.js +42 -30
  49. package/src/main/js/sap/ushell/adapters/cdm/v3/FlpLaunchPageAdapter.js +112 -97
  50. package/src/main/js/sap/ushell/adapters/cdm/v3/LaunchPageAdapter.js +1 -1
  51. package/src/main/js/sap/ushell/adapters/cdm/v3/StaticGroupsAdapter.js +1 -1
  52. package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readApplications.js +1 -1
  53. package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readCatalogs.js +1 -1
  54. package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readHome.js +1 -1
  55. package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readPages.js +1 -1
  56. package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readUtils.js +1 -1
  57. package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readVisualizations.js +1 -1
  58. package/src/main/js/sap/ushell/adapters/cdm/v3/utilsCdm.js +5 -6
  59. package/src/main/js/sap/ushell/adapters/cep/MenuAdapter.js +2 -2
  60. package/src/main/js/sap/ushell/adapters/cep/NavTargetResolutionAdapter.js +1 -1
  61. package/src/main/js/sap/ushell/adapters/cep/NavTargetResolutionInternalAdapter.js +10 -8
  62. package/src/main/js/sap/ushell/adapters/cep/SearchCEPAdapter.js +1 -1
  63. package/src/main/js/sap/ushell/adapters/cflp/UserDefaultParameterPersistenceAdapter.js +13 -14
  64. package/src/main/js/sap/ushell/adapters/local/AdapterContainer.js +162 -162
  65. package/src/main/js/sap/ushell/adapters/local/AppStateAdapter.js +14 -14
  66. package/src/main/js/sap/ushell/adapters/local/ClientSideTargetResolutionAdapter.js +2 -2
  67. package/src/main/js/sap/ushell/adapters/local/ContainerAdapter.js +1 -1
  68. package/src/main/js/sap/ushell/adapters/local/FlpLaunchPageAdapter.js +22 -22
  69. package/src/main/js/sap/ushell/adapters/local/LaunchPageAdapter.js +1 -1
  70. package/src/main/js/sap/ushell/adapters/local/MenuAdapter.js +4 -4
  71. package/src/main/js/sap/ushell/adapters/local/NavTargetResolutionAdapter.js +1 -1
  72. package/src/main/js/sap/ushell/adapters/local/NavTargetResolutionInternalAdapter.js +4 -4
  73. package/src/main/js/sap/ushell/adapters/local/PageBuildingAdapter.js +1 -1
  74. package/src/main/js/sap/ushell/adapters/local/PagePersistenceAdapter.js +2 -2
  75. package/src/main/js/sap/ushell/adapters/local/PersonalizationAdapter.js +2 -2
  76. package/src/main/js/sap/ushell/adapters/local/PersonalizationV2Adapter.js +1 -1
  77. package/src/main/js/sap/ushell/adapters/local/SearchAdapter.js +1 -1
  78. package/src/main/js/sap/ushell/adapters/local/SearchCEPAdapter.js +2 -2
  79. package/src/main/js/sap/ushell/adapters/local/SupportTicketAdapter.js +1 -1
  80. package/src/main/js/sap/ushell/adapters/local/Ui5ComponentLoaderAdapter.js +1 -1
  81. package/src/main/js/sap/ushell/adapters/local/UserDefaultParameterPersistenceAdapter.js +14 -14
  82. package/src/main/js/sap/ushell/adapters/local/UserInfoAdapter.js +8 -13
  83. package/src/main/js/sap/ushell/api/common/ComponentInstantiation.js +5 -5
  84. package/src/main/js/sap/ushell/api/performance/Extension.js +147 -0
  85. package/src/main/js/sap/ushell/api/performance/NavigationSource.js +86 -0
  86. package/src/main/js/sap/ushell/appIntegration/AppLifeCycle.js +66 -156
  87. package/src/main/js/sap/ushell/appIntegration/ApplicationContainer.js +10 -44
  88. package/src/main/js/sap/ushell/appIntegration/ApplicationContainerCache.js +9 -6
  89. package/src/main/js/sap/ushell/appIntegration/IframeApplicationContainer.js +41 -15
  90. package/src/main/js/sap/ushell/appIntegration/IframeApplicationContainerRenderer.js +0 -3
  91. package/src/main/js/sap/ushell/appIntegration/KeepAliveApps.js +82 -30
  92. package/src/main/js/sap/ushell/appIntegration/PostMessageHandler/AppInfoHandler.js +228 -0
  93. package/src/main/js/sap/ushell/appIntegration/PostMessageHandler/AppStateHandler.js +188 -0
  94. package/src/main/js/sap/ushell/appIntegration/PostMessageHandler/BookmarkHandler.js +725 -0
  95. package/src/main/js/sap/ushell/appIntegration/PostMessageHandler/EnvironmentHandler.js +347 -0
  96. package/src/main/js/sap/ushell/appIntegration/PostMessageHandler/ExtensionHandler.js +573 -0
  97. package/src/main/js/sap/ushell/appIntegration/PostMessageHandler/LifecycleHandler.js +226 -0
  98. package/src/main/js/sap/ushell/appIntegration/PostMessageHandler/MessageBrokerHandler.js +165 -0
  99. package/src/main/js/sap/ushell/appIntegration/{PostMessageManager → PostMessageHandler}/NWBCHandler.js +12 -0
  100. package/src/main/js/sap/ushell/appIntegration/PostMessageHandler/NavigationHandler.js +648 -0
  101. package/src/main/js/sap/ushell/appIntegration/PostMessageHandler/SessionHandler.js +157 -0
  102. package/src/main/js/sap/ushell/appIntegration/PostMessageHandler.js +146 -0
  103. package/src/main/js/sap/ushell/appIntegration/PostMessageManager.js +26 -13
  104. package/src/main/js/sap/ushell/appIntegration/PostMessagePluginInterface.js +249 -95
  105. package/src/main/js/sap/ushell/appIntegration/UI5ApplicationContainer.js +0 -1
  106. package/src/main/js/sap/ushell/appIntegration/contracts/EmbeddedUI5Handler.js +2 -23
  107. package/src/main/js/sap/ushell/appIntegration/contracts/StatefulContainerV1Handler.js +0 -4
  108. package/src/main/js/sap/ushell/appIntegration/contracts/StatefulContainerV2Handler.js +1 -3
  109. package/src/main/js/sap/ushell/appRuntime/ui5/AppCommunicationMgr.js +103 -81
  110. package/src/main/js/sap/ushell/appRuntime/ui5/AppRuntime.js +77 -83
  111. package/src/main/js/sap/ushell/appRuntime/ui5/SessionHandlerAgent.js +33 -29
  112. package/src/main/js/sap/ushell/appRuntime/ui5/libsPreload.js +2 -2
  113. package/src/main/js/sap/ushell/appRuntime/ui5/performance/FesrEnhancer.js +1 -1
  114. package/src/main/js/sap/ushell/appRuntime/ui5/plugins/baseRta/AppLifeCycleUtils.js +11 -3
  115. package/src/main/js/sap/ushell/appRuntime/ui5/plugins/baseRta/BaseRTAPluginStatus.js +9 -1
  116. package/src/main/js/sap/ushell/appRuntime/ui5/plugins/baseRta/CheckConditions.js +50 -31
  117. package/src/main/js/sap/ushell/appRuntime/ui5/plugins/baseRta/Renderer.js +8 -0
  118. package/src/main/js/sap/ushell/appRuntime/ui5/plugins/baseRta/Trigger.js +6 -0
  119. package/src/main/js/sap/ushell/appRuntime/ui5/plugins/rtaAgent/Component.js +3 -3
  120. package/src/main/js/sap/ushell/appRuntime/ui5/plugins/rtaAgent/i18n/i18n_vi.properties +1 -1
  121. package/src/main/js/sap/ushell/appRuntime/ui5/plugins/rtaShell/Component.js +12 -4
  122. package/src/main/js/sap/ushell/appRuntime/ui5/renderers/fiori2/AccessKeysAgent.js +5 -3
  123. package/src/main/js/sap/ushell/appRuntime/ui5/renderers/fiori2/Renderer.js +15 -15
  124. package/src/main/js/sap/ushell/appRuntime/ui5/renderers/fiori2/RendererExtensions.js +5 -5
  125. package/src/main/js/sap/ushell/appRuntime/ui5/services/AppConfiguration.js +4 -5
  126. package/src/main/js/sap/ushell/appRuntime/ui5/services/AppLifeCycle.js +6 -6
  127. package/src/main/js/sap/ushell/appRuntime/ui5/services/AppLifeCycleAgent.js +199 -225
  128. package/src/main/js/sap/ushell/appRuntime/ui5/services/AppState.js +11 -11
  129. package/src/main/js/sap/ushell/appRuntime/ui5/services/Bookmark.js +18 -18
  130. package/src/main/js/sap/ushell/appRuntime/ui5/services/BookmarkV2.js +15 -15
  131. package/src/main/js/sap/ushell/appRuntime/ui5/services/CommonDataModel.js +4 -4
  132. package/src/main/js/sap/ushell/appRuntime/ui5/services/Container.js +9 -7
  133. package/src/main/js/sap/ushell/appRuntime/ui5/services/CrossApplicationNavigation.js +93 -36
  134. package/src/main/js/sap/ushell/appRuntime/ui5/services/Extension/Item.js +10 -10
  135. package/src/main/js/sap/ushell/appRuntime/ui5/services/Extension.js +16 -18
  136. package/src/main/js/sap/ushell/appRuntime/ui5/services/FlpLaunchPage.js +1 -1
  137. package/src/main/js/sap/ushell/appRuntime/ui5/services/FrameBoundExtension.js +1 -1
  138. package/src/main/js/sap/ushell/appRuntime/ui5/services/LaunchPage.js +4 -4
  139. package/src/main/js/sap/ushell/appRuntime/ui5/services/MessageBroker/Client.js +114 -0
  140. package/src/main/js/sap/ushell/appRuntime/ui5/services/MessageBroker.js +157 -58
  141. package/src/main/js/sap/ushell/appRuntime/ui5/services/NavTargetResolution.js +9 -9
  142. package/src/main/js/sap/ushell/appRuntime/ui5/services/NavTargetResolutionInternal.js +9 -9
  143. package/src/main/js/sap/ushell/appRuntime/ui5/services/Navigation.js +31 -35
  144. package/src/main/js/sap/ushell/appRuntime/ui5/services/ReferenceResolver.js +4 -4
  145. package/src/main/js/sap/ushell/appRuntime/ui5/services/ShellNavigation.js +7 -7
  146. package/src/main/js/sap/ushell/appRuntime/ui5/services/ShellNavigationInternal.js +6 -6
  147. package/src/main/js/sap/ushell/appRuntime/ui5/services/ShellUIService.js +20 -22
  148. package/src/main/js/sap/ushell/appRuntime/ui5/services/UserDefaultParameters.js +7 -3
  149. package/src/main/js/sap/ushell/appRuntime/ui5/services/UserInfo.js +8 -8
  150. package/src/main/js/sap/ushell/appRuntime/ui5/services/adapters/ContainerAdapter.js +4 -3
  151. package/src/main/js/sap/ushell/appRuntime/ui5/services/adapters/Ui5ComponentLoaderAdapter.js +1 -1
  152. package/src/main/js/sap/ushell/bootstrap/SchedulingAgent/FLPLoader.js +1 -3
  153. package/src/main/js/sap/ushell/bootstrap/SchedulingAgent/logger.js +1 -1
  154. package/src/main/js/sap/ushell/bootstrap/SchedulingAgent/state.js +1 -1
  155. package/src/main/js/sap/ushell/bootstrap/SchedulingAgent.js +21 -22
  156. package/src/main/js/sap/ushell/bootstrap/common/common.configure.ui5datetimeformat.js +5 -5
  157. package/src/main/js/sap/ushell/bootstrap/common/common.create.configcontract.core.js +9 -9
  158. package/src/main/js/sap/ushell/bootstrap/common/common.debug.mode.js +1 -1
  159. package/src/main/js/sap/ushell/bootstrap/common/common.load.core-min.js +14 -2
  160. package/src/main/js/sap/ushell/bootstrap/common/common.load.script.js +1 -1
  161. package/src/main/js/sap/ushell/bootstrap/common/common.read.metatags.js +2 -2
  162. package/src/main/js/sap/ushell/bootstrap/common/common.util.js +2 -2
  163. package/src/main/js/sap/ushell/bootstrap/sandbox2/sandbox.js +1 -1
  164. package/src/main/js/sap/ushell/bootstrap/sandbox2.js +1 -1
  165. package/src/main/js/sap/ushell/components/CatalogsManager.js +3 -3
  166. package/src/main/js/sap/ushell/components/HomepageManager.js +120 -117
  167. package/src/main/js/sap/ushell/components/SharedComponentUtils.js +24 -13
  168. package/src/main/js/sap/ushell/components/_HomepageManager/PersistentPageOperationAdapter.js +18 -18
  169. package/src/main/js/sap/ushell/components/_HomepageManager/TransientPageOperationAdapter.js +4 -4
  170. package/src/main/js/sap/ushell/components/appfinder/AppFinder.controller.js +6 -3
  171. package/src/main/js/sap/ushell/components/appfinder/Catalog.controller.js +10 -4
  172. package/src/main/js/sap/ushell/components/appfinder/CatalogView.js +3 -3
  173. package/src/main/js/sap/ushell/components/appfinder/EasyAccess.controller.js +119 -108
  174. package/src/main/js/sap/ushell/components/appfinder/HierarchyAppsView.js +2 -2
  175. package/src/main/js/sap/ushell/components/appfinder/HierarchyFolders.controller.js +17 -15
  176. package/src/main/js/sap/ushell/components/appfinder/manifest.json +1 -1
  177. package/src/main/js/sap/ushell/components/cards/Configuration.controller.js +35 -33
  178. package/src/main/js/sap/ushell/components/cards/ManifestPropertyHelper.js +6 -4
  179. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/Edition.js +2 -2
  180. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/controls/categories/People.js +1 -1
  181. package/src/main/js/sap/ushell/components/contentFinder/CatalogService.js +6 -6
  182. package/src/main/js/sap/ushell/components/contentFinder/Component.js +1 -1
  183. package/src/main/js/sap/ushell/components/contentFinder/controller/AppSearch.controller.js +1 -1
  184. package/src/main/js/sap/ushell/components/contentFinder/controller/ContentFinderDialog.controller.js +1 -1
  185. package/src/main/js/sap/ushell/components/contentFinder/dialog/Component.js +1 -1
  186. package/src/main/js/sap/ushell/components/contentFinder/dialog/manifest.json +1 -1
  187. package/src/main/js/sap/ushell/components/contentFinder/manifest.json +1 -1
  188. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_ar.properties +1 -1
  189. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_bg.properties +1 -1
  190. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_ca.properties +1 -1
  191. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_cnr.properties +1 -1
  192. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_cs.properties +1 -1
  193. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_cy.properties +1 -1
  194. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_da.properties +1 -1
  195. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_de.properties +2 -2
  196. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_el.properties +1 -1
  197. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_en.properties +1 -1
  198. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_en_GB.properties +1 -1
  199. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_es.properties +1 -1
  200. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_es_MX.properties +1 -1
  201. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_et.properties +1 -1
  202. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_fi.properties +1 -1
  203. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_fr.properties +1 -1
  204. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_fr_CA.properties +1 -1
  205. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_hi.properties +1 -1
  206. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_hr.properties +1 -1
  207. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_hu.properties +1 -1
  208. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_id.properties +1 -1
  209. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_it.properties +1 -1
  210. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_iw.properties +1 -1
  211. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_ja.properties +1 -1
  212. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_kk.properties +1 -1
  213. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_ko.properties +1 -1
  214. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_lt.properties +1 -1
  215. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_lv.properties +1 -1
  216. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_mk.properties +1 -1
  217. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_ms.properties +1 -1
  218. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_nl.properties +1 -1
  219. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_no.properties +1 -1
  220. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_pl.properties +1 -1
  221. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_pt.properties +1 -1
  222. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_pt_PT.properties +1 -1
  223. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_ro.properties +1 -1
  224. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_ru.properties +1 -1
  225. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_sh.properties +1 -1
  226. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_sk.properties +1 -1
  227. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_sl.properties +1 -1
  228. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_sr.properties +1 -1
  229. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_sv.properties +1 -1
  230. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_th.properties +1 -1
  231. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_tr.properties +1 -1
  232. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_uk.properties +1 -1
  233. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_vi.properties +1 -1
  234. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_zh_CN.properties +1 -1
  235. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_zh_TW.properties +1 -1
  236. package/src/main/js/sap/ushell/components/contentFinderStandalone/Component.js +1 -1
  237. package/src/main/js/sap/ushell/components/contentFinderStandalone/controller/ContentFinderStandalone.controller.js +29 -13
  238. package/src/main/js/sap/ushell/components/contentFinderStandalone/manifest.json +6 -1
  239. package/src/main/js/sap/ushell/components/factsheet/Component.js +1 -1
  240. package/src/main/js/sap/ushell/components/factsheet/factory/ThingInspector.js +2 -2
  241. package/src/main/js/sap/ushell/components/homepage/ActionMode.js +1 -1
  242. package/src/main/js/sap/ushell/components/homepage/DashboardContent.view.js +1 -1
  243. package/src/main/js/sap/ushell/components/homepage/DashboardGroupsBox.js +1 -1
  244. package/src/main/js/sap/ushell/components/homepage/DashboardUIActions.js +2 -2
  245. package/src/main/js/sap/ushell/components/homepage/manifest.json +1 -1
  246. package/src/main/js/sap/ushell/components/pages/ActionMode.js +1 -1
  247. package/src/main/js/sap/ushell/components/pages/Component.js +1 -1
  248. package/src/main/js/sap/ushell/components/pages/MyHomeImport.js +2 -2
  249. package/src/main/js/sap/ushell/components/pages/controller/ImportDialog.controller.js +8 -8
  250. package/src/main/js/sap/ushell/components/pages/controller/PageRuntime.controller.js +55 -46
  251. package/src/main/js/sap/ushell/components/pages/controller/PagesAndSpaceId.js +24 -15
  252. package/src/main/js/sap/ushell/components/pages/manifest.json +1 -1
  253. package/src/main/js/sap/ushell/components/runtimeSwitcher/controller/RuntimeSwitcher.controller.js +1 -1
  254. package/src/main/js/sap/ushell/components/runtimeSwitcher/manifest.json +1 -1
  255. package/src/main/js/sap/ushell/components/shell/FloatingContainer/Component.js +1 -1
  256. package/src/main/js/sap/ushell/components/shell/FloatingContainer/manifest.json +1 -1
  257. package/src/main/js/sap/ushell/components/shell/MenuBar/manifest.json +1 -1
  258. package/src/main/js/sap/ushell/components/shell/NavigationBarMenu/controller/NavigationBarMenu.controller.js +1 -1
  259. package/src/main/js/sap/ushell/components/shell/NavigationBarMenu/controller/NavigationBarMenuButton.controller.js +1 -1
  260. package/src/main/js/sap/ushell/components/shell/NavigationBarMenu/manifest.json +1 -1
  261. package/src/main/js/sap/ushell/components/shell/Notifications/Component.js +3 -3
  262. package/src/main/js/sap/ushell/components/shell/Notifications/Notifications.controller.js +9 -9
  263. package/src/main/js/sap/ushell/components/shell/PostLoadingHeaderEnhancement/Component.js +25 -16
  264. package/src/main/js/sap/ushell/components/shell/ProductSwitch/Component.js +3 -3
  265. package/src/main/js/sap/ushell/components/shell/Search/Component.js +3 -1
  266. package/src/main/js/sap/ushell/components/shell/Search/ESearch.js +9 -1
  267. package/src/main/js/sap/ushell/components/shell/Search/manifest.json +1 -1
  268. package/src/main/js/sap/ushell/components/shell/SearchCEP/Component.js +3 -3
  269. package/src/main/js/sap/ushell/components/shell/SearchCEP/SearchProviders/FrequentActivityProvider.js +32 -30
  270. package/src/main/js/sap/ushell/components/shell/SearchCEP/SearchProviders/RecentSearchProvider.js +19 -17
  271. package/src/main/js/sap/ushell/components/shell/SearchCEP/SearchProviders/SearchProvider.js +1 -1
  272. package/src/main/js/sap/ushell/components/shell/SearchCEP/SearchProviders/SearchServiceProvider.js +30 -28
  273. package/src/main/js/sap/ushell/components/shell/SearchCEPNew/Component.js +240 -118
  274. package/src/main/js/sap/ushell/components/shell/SearchCEPNew/SearchProviders/FrequentActivityProvider.js +4 -5
  275. package/src/main/js/sap/ushell/components/shell/SearchCEPNew/SearchProviders/RecentSearchProvider.js +20 -18
  276. package/src/main/js/sap/ushell/components/shell/SearchCEPNew/SearchProviders/SearchProvider.js +4 -4
  277. package/src/main/js/sap/ushell/components/shell/SearchCEPNew/SearchProviders/SearchServiceProvider.js +31 -29
  278. package/src/main/js/sap/ushell/components/shell/SearchCEPNew/manifest.json +1 -1
  279. package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources.properties +9 -1
  280. package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_ar.properties +12 -0
  281. package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_bg.properties +12 -0
  282. package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_ca.properties +12 -0
  283. package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_cnr.properties +12 -0
  284. package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_cs.properties +12 -0
  285. package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_cy.properties +12 -0
  286. package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_da.properties +12 -0
  287. package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_de.properties +12 -0
  288. package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_el.properties +12 -0
  289. package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_en.properties +12 -0
  290. package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_en_GB.properties +12 -0
  291. package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_en_US_saprigi.properties +12 -0
  292. package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_es.properties +12 -0
  293. package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_es_MX.properties +12 -0
  294. package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_et.properties +12 -0
  295. package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_fi.properties +12 -0
  296. package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_fr.properties +12 -0
  297. package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_fr_CA.properties +12 -0
  298. package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_hi.properties +12 -0
  299. package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_hr.properties +12 -0
  300. package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_hu.properties +12 -0
  301. package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_id.properties +12 -0
  302. package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_it.properties +12 -0
  303. package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_iw.properties +12 -0
  304. package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_ja.properties +12 -0
  305. package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_kk.properties +12 -0
  306. package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_ko.properties +12 -0
  307. package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_lt.properties +12 -0
  308. package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_lv.properties +12 -0
  309. package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_mk.properties +12 -0
  310. package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_ms.properties +12 -0
  311. package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_nl.properties +12 -0
  312. package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_no.properties +12 -0
  313. package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_pl.properties +12 -0
  314. package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_pt.properties +12 -0
  315. package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_pt_PT.properties +12 -0
  316. package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_ro.properties +12 -0
  317. package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_ru.properties +12 -0
  318. package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_sh.properties +12 -0
  319. package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_sk.properties +12 -0
  320. package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_sl.properties +12 -0
  321. package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_sr.properties +12 -0
  322. package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_sv.properties +12 -0
  323. package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_th.properties +12 -0
  324. package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_tr.properties +12 -0
  325. package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_uk.properties +12 -0
  326. package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_vi.properties +12 -0
  327. package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_zh_CN.properties +12 -0
  328. package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_zh_TW.properties +12 -0
  329. package/src/main/js/sap/ushell/components/shell/Settings/Component.js +11 -7
  330. package/src/main/js/sap/ushell/components/shell/Settings/UserSettings.controller.js +21 -20
  331. package/src/main/js/sap/ushell/components/shell/Settings/appearance/Appearance.controller.js +90 -67
  332. package/src/main/js/sap/ushell/components/shell/Settings/homepage/HomepageEntry.js +6 -6
  333. package/src/main/js/sap/ushell/components/shell/Settings/notifications/NotificationsSetting.controller.js +3 -3
  334. package/src/main/js/sap/ushell/components/shell/Settings/spaces/SpacesSetting.controller.js +8 -7
  335. package/src/main/js/sap/ushell/components/shell/Settings/userAccount/UserAccountSelector.controller.js +4 -3
  336. package/src/main/js/sap/ushell/components/shell/Settings/userActivities/UserActivitiesSetting.controller.js +3 -3
  337. package/src/main/js/sap/ushell/components/shell/Settings/userDefaults/controller/UserDefaultsSetting.controller.js +2 -2
  338. package/src/main/js/sap/ushell/components/shell/Settings/userLanguageRegion/LanguageRegionSelector.controller.js +5 -5
  339. package/src/main/js/sap/ushell/components/shell/ShellBar/Component.js +47 -2
  340. package/src/main/js/sap/ushell/components/shell/ShellBar/controller/ShellBar.controller.js +20 -0
  341. package/src/main/js/sap/ushell/components/shell/ShellBar/manifest.json +1 -1
  342. package/src/main/js/sap/ushell/components/shell/ShellBar/view/ShellBar.view.xml +9 -6
  343. package/src/main/js/sap/ushell/components/shell/SideNavigation/controller/SideNavigation.controller.js +48 -59
  344. package/src/main/js/sap/ushell/components/shell/SideNavigation/fragment/Popover.fragment.xml +2 -2
  345. package/src/main/js/sap/ushell/components/shell/SideNavigation/interface/ListProviderAPI.js +144 -0
  346. package/src/main/js/sap/ushell/components/shell/SideNavigation/interface/NavContainer.js +82 -0
  347. package/src/main/js/sap/ushell/components/shell/SideNavigation/manifest.json +1 -1
  348. package/src/main/js/sap/ushell/components/shell/SideNavigation/modules/AllSpaces.js +4 -4
  349. package/src/main/js/sap/ushell/components/shell/SideNavigation/modules/Favorites.js +36 -9
  350. package/src/main/js/sap/ushell/components/shell/SideNavigation/modules/GenericFixedNavigationListProvider.js +49 -28
  351. package/src/main/js/sap/ushell/components/shell/SideNavigation/modules/GenericNavigationListProvider.js +104 -49
  352. package/src/main/js/sap/ushell/components/shell/SideNavigation/modules/MyHome.js +2 -2
  353. package/src/main/js/sap/ushell/components/shell/SideNavigation/modules/NavigationHelper.js +17 -2
  354. package/src/main/js/sap/ushell/components/shell/SideNavigation/modules/RecentActivity.js +2 -2
  355. package/src/main/js/sap/ushell/components/shell/SideNavigation/modules/Spaces.js +18 -7
  356. package/src/main/js/sap/ushell/components/shell/SideNavigation/modules/SpacesNavigationListProvider.js +11 -5
  357. package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources.properties +2 -0
  358. package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_ar.properties +1 -0
  359. package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_bg.properties +1 -0
  360. package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_ca.properties +1 -0
  361. package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_cnr.properties +1 -0
  362. package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_cs.properties +1 -0
  363. package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_cy.properties +1 -0
  364. package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_da.properties +1 -0
  365. package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_de.properties +1 -0
  366. package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_el.properties +1 -0
  367. package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_en.properties +1 -0
  368. package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_en_GB.properties +1 -0
  369. package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_en_US_saprigi.properties +1 -0
  370. package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_es.properties +1 -0
  371. package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_es_MX.properties +1 -0
  372. package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_et.properties +1 -0
  373. package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_fi.properties +1 -0
  374. package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_fr.properties +1 -0
  375. package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_fr_CA.properties +1 -0
  376. package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_hi.properties +1 -0
  377. package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_hr.properties +1 -0
  378. package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_hu.properties +1 -0
  379. package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_id.properties +1 -0
  380. package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_it.properties +1 -0
  381. package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_iw.properties +1 -0
  382. package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_ja.properties +1 -0
  383. package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_kk.properties +1 -0
  384. package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_ko.properties +1 -0
  385. package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_lt.properties +1 -0
  386. package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_lv.properties +1 -0
  387. package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_mk.properties +1 -0
  388. package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_ms.properties +1 -0
  389. package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_nl.properties +1 -0
  390. package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_no.properties +1 -0
  391. package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_pl.properties +1 -0
  392. package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_pt.properties +1 -0
  393. package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_pt_PT.properties +1 -0
  394. package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_ro.properties +1 -0
  395. package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_ru.properties +1 -0
  396. package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_sh.properties +1 -0
  397. package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_sk.properties +1 -0
  398. package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_sl.properties +1 -0
  399. package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_sr.properties +1 -0
  400. package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_sv.properties +1 -0
  401. package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_th.properties +1 -0
  402. package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_tr.properties +1 -0
  403. package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_uk.properties +1 -0
  404. package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_vi.properties +1 -0
  405. package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_zh_CN.properties +1 -0
  406. package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_zh_TW.properties +1 -0
  407. package/src/main/js/sap/ushell/components/shell/UserActionsMenu/Component.js +1 -1
  408. package/src/main/js/sap/ushell/components/shell/UserActionsMenu/UserActionsMenu.controller.js +1 -0
  409. package/src/main/js/sap/ushell/components/shell/UserImage/Component.js +1 -1
  410. package/src/main/js/sap/ushell/components/tiles/action/ActionTile.controller.js +22 -14
  411. package/src/main/js/sap/ushell/components/tiles/applauncher/StaticTile.controller.js +43 -13
  412. package/src/main/js/sap/ushell/components/tiles/applauncherdynamic/DynamicTile.controller.js +43 -13
  413. package/src/main/js/sap/ushell/components/tiles/cdm/applauncher/StaticTile.controller.js +12 -2
  414. package/src/main/js/sap/ushell/components/tiles/cdm/applauncherdynamic/DynamicTile.controller.js +12 -2
  415. package/src/main/js/sap/ushell/components/tiles/indicatorArea/AreaChartTile.controller.js +157 -152
  416. package/src/main/js/sap/ushell/components/tiles/indicatorDual/DualTile.controller.js +2 -2
  417. package/src/main/js/sap/ushell/components/tiles/indicatorDual/DualTile.view.js +23 -22
  418. package/src/main/js/sap/ushell/components/tiles/indicatorDualComparison/DualComparison.controller.js +4 -2
  419. package/src/main/js/sap/ushell/components/tiles/indicatorDualDeviation/DualDeviation.controller.js +5 -5
  420. package/src/main/js/sap/ushell/components/tiles/indicatorDualTrend/DualTrend.controller.js +106 -102
  421. package/src/main/js/sap/ushell/components/tiles/indicatorHarveyBall/HarveyBallTile.controller.js +8 -7
  422. package/src/main/js/sap/ushell/components/tiles/indicatorTileUtils/oData4Analytics.js +96 -53
  423. package/src/main/js/sap/ushell/components/tiles/indicatorTileUtils/smartBusinessUtil.js +63 -52
  424. package/src/main/js/sap/ushell/components/tiles/indicatorcomparison/ComparisonTile.controller.js +4 -2
  425. package/src/main/js/sap/ushell/components/tiles/indicatorcontribution/ContributionTile.controller.js +2 -1
  426. package/src/main/js/sap/ushell/components/tiles/indicatordeviation/DeviationTile.controller.js +2 -2
  427. package/src/main/js/sap/ushell/components/tiles/utils.js +25 -25
  428. package/src/main/js/sap/ushell/components/visualizationOrganizer/Component.js +1 -1
  429. package/src/main/js/sap/ushell/components/workPageBuilder/Component.js +1 -1
  430. package/src/main/js/sap/ushell/components/workPageBuilder/controller/WorkPageBuilder.accessibility.js +1 -1
  431. package/src/main/js/sap/ushell/components/workPageBuilder/controller/WorkPageBuilder.controller.js +1 -1
  432. package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPage.js +1 -1
  433. package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageButton.js +1 -1
  434. package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageCell.js +1 -1
  435. package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageColumn.js +1 -1
  436. package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageColumnResizer.js +1 -1
  437. package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageRow.js +1 -1
  438. package/src/main/js/sap/ushell/components/workPageBuilder/manifest.json +1 -1
  439. package/src/main/js/sap/ushell/components/workPageRuntime/Component.js +1 -1
  440. package/src/main/js/sap/ushell/components/workPageRuntime/controller/WorkPageRuntime.controller.js +1 -1
  441. package/src/main/js/sap/ushell/components/workPageRuntime/manifest.json +1 -1
  442. package/src/main/js/sap/ushell/designtime/ApplicationContainer.designtime.js +1 -1
  443. package/src/main/js/sap/ushell/gen/ui5/webcomponents/dist/Avatar.js +111 -113
  444. package/src/main/js/sap/ushell/gen/ui5/webcomponents/dist/Button.js +215 -137
  445. package/src/main/js/sap/ushell/gen/ui5/webcomponents/dist/Label.js +68 -70
  446. package/src/main/js/sap/ushell/gen/ui5/webcomponents/dist/ListItem.js +81 -80
  447. package/src/main/js/sap/ushell/gen/ui5/webcomponents/dist/ListItemBase.js +40 -39
  448. package/src/main/js/sap/ushell/gen/ui5/webcomponents/dist/ListItemGroup.js +146 -84
  449. package/src/main/js/sap/ushell/gen/ui5/webcomponents/dist/Menu.js +178 -120
  450. package/src/main/js/sap/ushell/gen/ui5/webcomponents/dist/MenuItem.js +186 -156
  451. package/src/main/js/sap/ushell/gen/ui5/webcomponents-base.js +517 -368
  452. package/src/main/js/sap/ushell/gen/ui5/webcomponents-fiori/dist/IllustratedMessage.js +97 -0
  453. package/src/main/js/sap/ushell/gen/ui5/webcomponents-fiori/dist/NotificationList.js +128 -79
  454. package/src/main/js/sap/ushell/gen/ui5/webcomponents-fiori/dist/NotificationListGroupItem.js +76 -75
  455. package/src/main/js/sap/ushell/gen/ui5/webcomponents-fiori/dist/NotificationListItem.js +119 -99
  456. package/src/main/js/sap/ushell/gen/ui5/webcomponents-fiori/dist/NotificationListItemBase.js +48 -46
  457. package/src/main/js/sap/ushell/gen/ui5/webcomponents-fiori/dist/Search.js +156 -138
  458. package/src/main/js/sap/ushell/gen/ui5/webcomponents-fiori/dist/SearchItem.js +68 -62
  459. package/src/main/js/sap/ushell/gen/ui5/webcomponents-fiori/dist/SearchItemGroup.js +30 -29
  460. package/src/main/js/sap/ushell/gen/ui5/webcomponents-fiori/dist/SearchMessageArea.js +46 -45
  461. package/src/main/js/sap/ushell/gen/ui5/webcomponents-fiori/dist/SearchScope.js +48 -49
  462. package/src/main/js/sap/ushell/gen/ui5/webcomponents-fiori/dist/ShellBar.js +373 -214
  463. package/src/main/js/sap/ushell/gen/ui5/webcomponents-fiori/dist/ShellBarBranding.js +71 -70
  464. package/src/main/js/sap/ushell/gen/ui5/webcomponents-fiori/dist/ShellBarItem.js +81 -64
  465. package/src/main/js/sap/ushell/gen/ui5/webcomponents-fiori/dist/ShellBarSearch.js +150 -127
  466. package/src/main/js/sap/ushell/gen/ui5/webcomponents-fiori/dist/ShellBarSpacer.js +42 -41
  467. package/src/main/js/sap/ushell/gen/ui5/webcomponents-fiori/dist/UserMenu.js +190 -137
  468. package/src/main/js/sap/ushell/gen/ui5/webcomponents-fiori/dist/UserMenuAccount.js +76 -75
  469. package/src/main/js/sap/ushell/gen/ui5/webcomponents-fiori/dist/UserMenuItem.js +35 -34
  470. package/src/main/js/sap/ushell/gen/ui5/webcomponents-fiori.js +1706 -1389
  471. package/src/main/js/sap/ushell/gen/ui5/webcomponents.js +3011 -2450
  472. package/src/main/js/sap/ushell/library.js +1 -1
  473. package/src/main/js/sap/ushell/modules/NavigationMenu/ListProvider.js +56 -0
  474. package/src/main/js/sap/ushell/modules/NavigationMenu/ListProviderAPI.js +119 -0
  475. package/src/main/js/sap/ushell/modules/NavigationMenu/NavContainer.js +60 -0
  476. package/src/main/js/sap/ushell/modules/NavigationMenu/NavigationMenuMode.js +37 -0
  477. package/src/main/js/sap/ushell/modules/NavigationMenu.js +17 -16
  478. package/src/main/js/sap/ushell/navigation/NavigationState.js +0 -3
  479. package/src/main/js/sap/ushell/navigationMode.js +5 -5
  480. package/src/main/js/sap/ushell/override.js +1 -2
  481. package/src/main/js/sap/ushell/performance/FesrEnhancer.js +51 -15
  482. package/src/main/js/sap/ushell/performance/ShellAnalytics.js +1 -1
  483. package/src/main/js/sap/ushell/performance/StatisticalRecord.js +19 -10
  484. package/src/main/js/sap/ushell/plugins/BaseRTAPlugin.js +8 -2
  485. package/src/main/js/sap/ushell/plugins/appwarmup/Component.js +1 -1
  486. package/src/main/js/sap/ushell/plugins/rta/i18n/i18n_de.properties +1 -1
  487. package/src/main/js/sap/ushell/plugins/rta/i18n/i18n_vi.properties +1 -1
  488. package/src/main/js/sap/ushell/renderer/AccessKeysHandler.js +17 -13
  489. package/src/main/js/sap/ushell/renderer/NavContainer.js +7 -0
  490. package/src/main/js/sap/ushell/renderer/Renderer.js +13 -13
  491. package/src/main/js/sap/ushell/renderer/RendererAppContainer.js +3 -3
  492. package/src/main/js/sap/ushell/renderer/RendererManagedComponents.js +194 -0
  493. package/src/main/js/sap/ushell/renderer/Shell.controller.js +29 -39
  494. package/src/main/js/sap/ushell/renderer/Shell.view.js +8 -5
  495. package/src/main/js/sap/ushell/renderer/resources/resources_cs.properties +8 -8
  496. package/src/main/js/sap/ushell/renderer/resources/resources_es.properties +1 -1
  497. package/src/main/js/sap/ushell/renderer/resources/resources_id.properties +18 -18
  498. package/src/main/js/sap/ushell/renderer/resources/resources_pt_PT.properties +1 -1
  499. package/src/main/js/sap/ushell/renderer/resources/resources_vi.properties +1 -1
  500. package/src/main/js/sap/ushell/renderer/search/searchComponent/manifest.json +1 -1
  501. package/src/main/js/sap/ushell/renderers/fiori2/Renderer.js +38 -31
  502. package/src/main/js/sap/ushell/renderers/fiori2/Shell.view.js +2 -2
  503. package/src/main/js/sap/ushell/resources.js +1 -1
  504. package/src/main/js/sap/ushell/services/AllMyApps.js +1 -3
  505. package/src/main/js/sap/ushell/services/AppConfiguration.js +2 -2
  506. package/src/main/js/sap/ushell/services/AppLifeCycle.js +33 -30
  507. package/src/main/js/sap/ushell/services/AppState.js +3 -3
  508. package/src/main/js/sap/ushell/services/Bookmark.js +35 -39
  509. package/src/main/js/sap/ushell/services/BookmarkV2.js +6 -8
  510. package/src/main/js/sap/ushell/services/ClientSideTargetResolution/Formatter.js +1 -1
  511. package/src/main/js/sap/ushell/services/ClientSideTargetResolution/InboundIndex.js +1 -1
  512. package/src/main/js/sap/ushell/services/ClientSideTargetResolution/InboundProvider.js +1 -1
  513. package/src/main/js/sap/ushell/services/ClientSideTargetResolution/PrelaunchOperations.js +5 -5
  514. package/src/main/js/sap/ushell/services/ClientSideTargetResolution/Search.js +1 -1
  515. package/src/main/js/sap/ushell/services/ClientSideTargetResolution/StagedLogger.js +1 -1
  516. package/src/main/js/sap/ushell/services/ClientSideTargetResolution/SystemContext.js +1 -1
  517. package/src/main/js/sap/ushell/services/ClientSideTargetResolution/Utils.js +1 -1
  518. package/src/main/js/sap/ushell/services/ClientSideTargetResolution/VirtualInbounds.js +1 -1
  519. package/src/main/js/sap/ushell/services/ClientSideTargetResolution/XAppStateProcessing.js +1 -1
  520. package/src/main/js/sap/ushell/services/ClientSideTargetResolution.js +13 -14
  521. package/src/main/js/sap/ushell/services/CommonDataModel/SiteConverter.js +1 -1
  522. package/src/main/js/sap/ushell/services/CommonDataModel/vizTypeDefaults/VizTypeDefaults.js +1 -1
  523. package/src/main/js/sap/ushell/services/CommonDataModel.js +82 -78
  524. package/src/main/js/sap/ushell/services/Configuration.js +1 -1
  525. package/src/main/js/sap/ushell/services/ConfigurationDefaults.js +1 -1
  526. package/src/main/js/sap/ushell/services/ContentExtensionAdapterFactory.js +1 -1
  527. package/src/main/js/sap/ushell/services/CrossApplicationNavigation.js +201 -230
  528. package/src/main/js/sap/ushell/services/DarkModeSupport.js +3 -3
  529. package/src/main/js/sap/ushell/services/EndUserFeedback.js +2 -2
  530. package/src/main/js/sap/ushell/services/Extension/Item.js +1 -1
  531. package/src/main/js/sap/ushell/services/Extension.js +1 -1
  532. package/src/main/js/sap/ushell/services/FlpLaunchPage.js +61 -57
  533. package/src/main/js/sap/ushell/services/FrameBoundExtension/FloatingContainer.js +1 -1
  534. package/src/main/js/sap/ushell/services/FrameBoundExtension/Footer.js +1 -1
  535. package/src/main/js/sap/ushell/services/FrameBoundExtension/Item.js +1 -1
  536. package/src/main/js/sap/ushell/services/FrameBoundExtension/SidePane.js +1 -1
  537. package/src/main/js/sap/ushell/services/FrameBoundExtension/ToolArea.js +1 -1
  538. package/src/main/js/sap/ushell/services/FrameBoundExtension/UserSettingsEntry.js +1 -1
  539. package/src/main/js/sap/ushell/services/FrameBoundExtension.js +1 -1
  540. package/src/main/js/sap/ushell/services/LaunchPage.js +1 -1
  541. package/src/main/js/sap/ushell/services/Menu.js +2 -2
  542. package/src/main/js/sap/ushell/services/Message.js +1 -1
  543. package/src/main/js/sap/ushell/services/MessageBroker/ClientAlias.js +37 -0
  544. package/src/main/js/sap/ushell/services/MessageBroker/ClientConnectionMessage.js +37 -0
  545. package/src/main/js/sap/ushell/services/MessageBroker/MessageBrokerEngine.js +463 -622
  546. package/src/main/js/sap/ushell/services/MessageBroker.js +127 -60
  547. package/src/main/js/sap/ushell/services/MessageInternal.js +2 -2
  548. package/src/main/js/sap/ushell/services/NavTargetResolutionInternal.js +4 -4
  549. package/src/main/js/sap/ushell/services/Navigation/compatibility.js +2 -3
  550. package/src/main/js/sap/ushell/services/Navigation/utils.js +3 -3
  551. package/src/main/js/sap/ushell/services/Navigation.js +5 -5
  552. package/src/main/js/sap/ushell/services/NavigationDataProvider.js +21 -11
  553. package/src/main/js/sap/ushell/services/Notifications.js +1 -1
  554. package/src/main/js/sap/ushell/services/NotificationsV2.js +152 -109
  555. package/src/main/js/sap/ushell/services/PageBuilding.js +4 -2
  556. package/src/main/js/sap/ushell/services/PagePersistence.js +1 -1
  557. package/src/main/js/sap/ushell/services/PageReferencing.js +1 -1
  558. package/src/main/js/sap/ushell/services/Pages.js +32 -32
  559. package/src/main/js/sap/ushell/services/Personalization.js +36 -32
  560. package/src/main/js/sap/ushell/services/PersonalizationV2/ContextContainer.js +6 -6
  561. package/src/main/js/sap/ushell/services/PersonalizationV2/Personalizer.js +3 -3
  562. package/src/main/js/sap/ushell/services/PersonalizationV2/WindowAdapter.js +2 -2
  563. package/src/main/js/sap/ushell/services/PersonalizationV2/WindowAdapterContainer.js +4 -4
  564. package/src/main/js/sap/ushell/services/PersonalizationV2/utils.js +4 -8
  565. package/src/main/js/sap/ushell/services/PersonalizationV2.js +17 -15
  566. package/src/main/js/sap/ushell/services/PluginManager/Extensions.js +3 -3
  567. package/src/main/js/sap/ushell/services/PluginManager/HeaderExtensions.js +1 -1
  568. package/src/main/js/sap/ushell/services/PluginManager/MenuExtensions.js +1 -1
  569. package/src/main/js/sap/ushell/services/PluginManager/SimpleExpression.js +1 -1
  570. package/src/main/js/sap/ushell/services/PluginManager.js +22 -22
  571. package/src/main/js/sap/ushell/services/ReferenceResolver.js +2 -2
  572. package/src/main/js/sap/ushell/services/Search.js +1 -1
  573. package/src/main/js/sap/ushell/services/SearchCEP.js +3 -3
  574. package/src/main/js/sap/ushell/services/SearchableContent.js +2 -2
  575. package/src/main/js/sap/ushell/services/ShellNavigation.js +1 -1
  576. package/src/main/js/sap/ushell/services/ShellNavigationHashChanger.js +2 -2
  577. package/src/main/js/sap/ushell/services/ShellNavigationInternal.js +1 -1
  578. package/src/main/js/sap/ushell/services/SmartNavigation.js +2 -3
  579. package/src/main/js/sap/ushell/services/SpaceContent.js +1 -1
  580. package/src/main/js/sap/ushell/services/UITracer.js +5 -5
  581. package/src/main/js/sap/ushell/services/URLParsing.js +10 -10
  582. package/src/main/js/sap/ushell/services/URLShortening.js +1 -1
  583. package/src/main/js/sap/ushell/services/URLTemplate.js +1 -1
  584. package/src/main/js/sap/ushell/services/Ui5ComponentLoader.js +20 -20
  585. package/src/main/js/sap/ushell/services/UserDefaultParameterPersistence.js +1 -1
  586. package/src/main/js/sap/ushell/services/UserDefaultParameters.js +7 -7
  587. package/src/main/js/sap/ushell/services/UserInfo.js +4 -4
  588. package/src/main/js/sap/ushell/services/UserRecents/RecentAppsUsage.js +2 -2
  589. package/src/main/js/sap/ushell/services/UserRecents/UserRecentsBase.js +6 -6
  590. package/src/main/js/sap/ushell/services/UserRecents.js +1 -1
  591. package/src/main/js/sap/ushell/services/VisualizationDataProvider.js +18 -15
  592. package/src/main/js/sap/ushell/services/VisualizationInstantiation.js +3 -3
  593. package/src/main/js/sap/ushell/services/_ContentExtensionAdapterFactory/ContentExtensionAdapterConfig.js +1 -1
  594. package/src/main/js/sap/ushell/services/_ContentExtensionAdapterFactory/FeaturedGroupConfig.js +1 -1
  595. package/src/main/js/sap/ushell/services/_CrossApplicationNavigation/utils.js +3 -3
  596. package/src/main/js/sap/ushell/services/_PageReferencing/PageReferencer.js +2 -2
  597. package/src/main/js/sap/ushell/services/_Personalization/ContextContainer.js +10 -10
  598. package/src/main/js/sap/ushell/services/_Personalization/PersonalizationContainer.js +8 -8
  599. package/src/main/js/sap/ushell/services/_Personalization/Personalizer.js +14 -14
  600. package/src/main/js/sap/ushell/services/_Personalization/utils.js +2 -2
  601. package/src/main/js/sap/ushell/services/appstate/AppState.js +8 -8
  602. package/src/main/js/sap/ushell/services/appstate/WindowAdapter.js +3 -3
  603. package/src/main/js/sap/ushell/state/StrategyFactory/HeadEndItemsStrategy.js +7 -0
  604. package/src/main/js/sap/ushell/state/modules/BackNavigation.js +7 -24
  605. package/src/main/js/sap/ushell/state/modules/ContentDensity.js +1 -1
  606. package/src/main/js/sap/ushell/state/modules/Favicon.js +1 -1
  607. package/src/main/js/sap/ushell/state/modules/HeaderLogo.js +3 -3
  608. package/src/main/js/sap/ushell/support/plugins/flpConfig/FlpConfigurationPlugin.js +1 -1
  609. package/src/main/js/sap/ushell/themes/base/ActionMode.less +1 -1
  610. package/src/main/js/sap/ushell/themes/base/ToolAreaItem.less +1 -1
  611. package/src/main/js/sap/ushell/thirdparty/Avatar.js +9 -9
  612. package/src/main/js/sap/ushell/thirdparty/BusyIndicator.js +6 -12
  613. package/src/main/js/sap/ushell/thirdparty/Button.js +1 -1
  614. package/src/main/js/sap/ushell/thirdparty/Button2.js +74 -22
  615. package/src/main/js/sap/ushell/thirdparty/FocusableElements.js +10 -0
  616. package/src/main/js/sap/ushell/thirdparty/Icon.js +32 -15
  617. package/src/main/js/sap/ushell/thirdparty/Icons.js +149 -111
  618. package/src/main/js/sap/ushell/thirdparty/IllustratedMessage.js +1297 -0
  619. package/src/main/js/sap/ushell/thirdparty/Label.js +5 -5
  620. package/src/main/js/sap/ushell/thirdparty/Link.js +7 -7
  621. package/src/main/js/sap/ushell/thirdparty/List.js +55 -75
  622. package/src/main/js/sap/ushell/thirdparty/ListItemAdditionalText.css.js +10 -0
  623. package/src/main/js/sap/ushell/thirdparty/ListItemBase.js +23 -11
  624. package/src/main/js/sap/ushell/thirdparty/ListItemCustom.js +64 -48
  625. package/src/main/js/sap/ushell/thirdparty/ListItemGroup.js +239 -74
  626. package/src/main/js/sap/ushell/thirdparty/Menu.js +14 -15
  627. package/src/main/js/sap/ushell/thirdparty/MenuItem.js +1 -1
  628. package/src/main/js/sap/ushell/thirdparty/MenuItem2.js +55 -21
  629. package/src/main/js/sap/ushell/thirdparty/NotificationList.js +10 -10
  630. package/src/main/js/sap/ushell/thirdparty/NotificationListGroupItem.js +14 -14
  631. package/src/main/js/sap/ushell/thirdparty/NotificationListItem.js +23 -14
  632. package/src/main/js/sap/ushell/thirdparty/NotificationListItemBase.js +6 -6
  633. package/src/main/js/sap/ushell/thirdparty/ResponsivePopover.js +94 -52
  634. package/src/main/js/sap/ushell/thirdparty/SearchItem.js +25 -8
  635. package/src/main/js/sap/ushell/thirdparty/SearchItemGroup.js +4 -7
  636. package/src/main/js/sap/ushell/thirdparty/SearchMessageArea.js +4 -4
  637. package/src/main/js/sap/ushell/thirdparty/ShellBar.js +85 -51
  638. package/src/main/js/sap/ushell/thirdparty/ShellBarBranding.js +6 -6
  639. package/src/main/js/sap/ushell/thirdparty/ShellBarSearch.js +1 -1
  640. package/src/main/js/sap/ushell/thirdparty/ShellBarSearch2.js +308 -176
  641. package/src/main/js/sap/ushell/thirdparty/Tag.js +7 -7
  642. package/src/main/js/sap/ushell/thirdparty/Text.js +5 -5
  643. package/src/main/js/sap/ushell/thirdparty/Title.js +4 -4
  644. package/src/main/js/sap/ushell/thirdparty/UserMenu.js +23 -23
  645. package/src/main/js/sap/ushell/thirdparty/UserMenuItem.js +3 -3
  646. package/src/main/js/sap/ushell/thirdparty/WrappingType.js +24 -0
  647. package/src/main/js/sap/ushell/thirdparty/_dynamics/InputSuggestions.js +5 -52
  648. package/src/main/js/sap/ushell/thirdparty/_dynamics/ListItemStandardExpandableTextTemplate.js +4 -4
  649. package/src/main/js/sap/ushell/thirdparty/_dynamics/SAP-icons-TNT.js +202 -178
  650. package/src/main/js/sap/ushell/thirdparty/_dynamics/SAP-icons-TNT2.js +145 -121
  651. package/src/main/js/sap/ushell/thirdparty/_dynamics/SAP-icons.js +2 -1
  652. package/src/main/js/sap/ushell/thirdparty/_dynamics/SAP-icons2.js +2 -1
  653. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_ar2.js +144 -18
  654. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_ar3.js +6 -0
  655. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_bg2.js +144 -18
  656. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_bg3.js +6 -0
  657. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_ca2.js +144 -18
  658. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_ca3.js +6 -0
  659. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_cnr2.js +143 -17
  660. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_cnr3.js +6 -0
  661. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_cs2.js +143 -17
  662. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_cs3.js +6 -0
  663. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_cy2.js +143 -17
  664. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_cy3.js +6 -0
  665. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_da2.js +143 -17
  666. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_da3.js +6 -0
  667. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_de2.js +144 -18
  668. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_de3.js +13 -7
  669. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_el2.js +143 -17
  670. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_el3.js +6 -0
  671. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_en.js +3 -174
  672. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_en2.js +174 -717
  673. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_en3.js +837 -582
  674. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_en4.js +602 -0
  675. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_en_GB2.js +143 -17
  676. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_en_GB3.js +6 -0
  677. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_en_US_sappsd.js +3 -174
  678. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_en_US_sappsd2.js +174 -711
  679. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_en_US_sappsd3.js +837 -582
  680. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_en_US_sappsd4.js +596 -0
  681. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_en_US_saprigi.js +3 -174
  682. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_en_US_saprigi2.js +174 -717
  683. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_en_US_saprigi3.js +837 -582
  684. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_en_US_saprigi4.js +602 -0
  685. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_en_US_saptrc.js +3 -174
  686. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_en_US_saptrc2.js +174 -711
  687. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_en_US_saptrc3.js +837 -582
  688. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_en_US_saptrc4.js +596 -0
  689. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_es2.js +143 -17
  690. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_es3.js +6 -0
  691. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_es_MX2.js +143 -17
  692. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_es_MX3.js +6 -0
  693. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_et2.js +143 -17
  694. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_et3.js +6 -0
  695. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_fi2.js +143 -17
  696. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_fi3.js +6 -0
  697. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_fr2.js +143 -17
  698. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_fr3.js +6 -0
  699. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_fr_CA2.js +143 -17
  700. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_fr_CA3.js +6 -0
  701. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_hi2.js +143 -17
  702. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_hi3.js +6 -0
  703. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_hr2.js +144 -18
  704. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_hr3.js +6 -0
  705. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_hu2.js +143 -17
  706. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_hu3.js +6 -0
  707. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_id2.js +145 -19
  708. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_id3.js +7 -1
  709. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_it2.js +143 -17
  710. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_it3.js +6 -0
  711. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_iw2.js +143 -17
  712. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_iw3.js +6 -0
  713. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_ja2.js +143 -17
  714. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_ja3.js +6 -0
  715. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_kk2.js +144 -18
  716. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_kk3.js +6 -0
  717. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_ko2.js +143 -17
  718. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_ko3.js +6 -0
  719. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_lt2.js +143 -17
  720. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_lt3.js +6 -0
  721. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_lv2.js +145 -19
  722. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_lv3.js +6 -0
  723. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_mk2.js +143 -17
  724. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_mk3.js +6 -0
  725. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_ms2.js +143 -17
  726. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_ms3.js +6 -0
  727. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_nl2.js +143 -17
  728. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_nl3.js +6 -0
  729. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_no2.js +143 -17
  730. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_no3.js +6 -0
  731. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_pl2.js +143 -17
  732. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_pl3.js +6 -0
  733. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_pt2.js +143 -17
  734. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_pt3.js +6 -0
  735. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_pt_PT2.js +143 -17
  736. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_pt_PT3.js +6 -0
  737. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_ro2.js +143 -17
  738. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_ro3.js +6 -0
  739. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_ru2.js +144 -18
  740. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_ru3.js +6 -0
  741. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_sh2.js +143 -17
  742. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_sh3.js +6 -0
  743. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_sk2.js +143 -17
  744. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_sk3.js +6 -0
  745. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_sl2.js +144 -18
  746. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_sl3.js +6 -0
  747. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_sr2.js +143 -17
  748. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_sr3.js +6 -0
  749. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_sv2.js +143 -17
  750. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_sv3.js +6 -0
  751. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_th2.js +143 -17
  752. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_th3.js +6 -0
  753. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_tr2.js +143 -17
  754. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_tr3.js +6 -0
  755. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_uk2.js +143 -17
  756. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_uk3.js +6 -0
  757. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_vi2.js +143 -17
  758. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_vi3.js +6 -0
  759. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_zh_CN2.js +143 -17
  760. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_zh_CN3.js +6 -0
  761. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_zh_TW2.js +143 -17
  762. package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_zh_TW3.js +6 -0
  763. package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css10.js +1 -1
  764. package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css11.js +1 -1
  765. package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css12.js +1 -1
  766. package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css13.js +1 -1
  767. package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css14.js +1 -1
  768. package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css15.js +1 -1
  769. package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css16.js +1 -1
  770. package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css17.js +1 -1
  771. package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css18.js +1 -1
  772. package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css19.js +1 -1
  773. package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css20.js +1 -1
  774. package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css21.js +1 -1
  775. package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css22.js +1 -1
  776. package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css23.js +1 -1
  777. package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css24.js +1 -1
  778. package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css25.js +1 -1
  779. package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css26.js +1 -1
  780. package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css27.js +7 -0
  781. package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css4.js +1 -1
  782. package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css5.js +1 -1
  783. package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css6.js +1 -1
  784. package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css7.js +1 -1
  785. package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css8.js +1 -1
  786. package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css9.js +1 -1
  787. package/src/main/js/sap/ushell/thirdparty/i18n-defaults.js +110 -145
  788. package/src/main/js/sap/ushell/thirdparty/i18n-defaults2.js +152 -104
  789. package/src/main/js/sap/ushell/thirdparty/information.js +10 -10
  790. package/src/main/js/sap/ushell/thirdparty/overflow.js +16 -36
  791. package/src/main/js/sap/ushell/thirdparty/parameters-bundle.css.js +4 -1
  792. package/src/main/js/sap/ushell/thirdparty/parameters-bundle.css2.js +2 -2
  793. package/src/main/js/sap/ushell/thirdparty/parameters-bundle.css3.js +8 -0
  794. package/src/main/js/sap/ushell/thirdparty/slim-arrow-down.js +4 -4
  795. package/src/main/js/sap/ushell/thirdparty/ui5/webcomponents-icons/AllIcons.js +2 -2
  796. package/src/main/js/sap/ushell/thirdparty/ui5/webcomponents-icons-business-suite/AllIcons.js +2 -2
  797. package/src/main/js/sap/ushell/thirdparty/ui5/webcomponents-icons-tnt/AllIcons.js +2 -2
  798. package/src/main/js/sap/ushell/thirdparty/webcomponents-base.js +80 -67
  799. package/src/main/js/sap/ushell/thirdparty/webcomponents-fiori.js +14 -14
  800. package/src/main/js/sap/ushell/thirdparty/webcomponents.js +29 -29
  801. package/src/main/js/sap/ushell/ui/QuickAccess.js +22 -14
  802. package/src/main/js/sap/ushell/ui/ShellHeader.js +4 -4
  803. package/src/main/js/sap/ushell/ui/appfinder/AppBoxInternal.js +3 -3
  804. package/src/main/js/sap/ushell/ui/cards/RecentActivitiesExtension.js +1 -1
  805. package/src/main/js/sap/ushell/ui/footerbar/AboutDialog.controller.js +4 -4
  806. package/src/main/js/sap/ushell/ui/footerbar/AddBookmarkButton.js +7 -7
  807. package/src/main/js/sap/ushell/ui/footerbar/ContactSupportDialog.controller.js +1 -1
  808. package/src/main/js/sap/ushell/ui/footerbar/JamShareButton.js +4 -3
  809. package/src/main/js/sap/ushell/ui/footerbar/SendAsEmailButton.js +2 -2
  810. package/src/main/js/sap/ushell/ui/launchpad/CatalogsContainer.js +2 -3
  811. package/src/main/js/sap/ushell/ui/launchpad/DashboardGroupsContainer.js +1 -1
  812. package/src/main/js/sap/ushell/ui/launchpad/ExtendedChangeDetection.js +2 -2
  813. package/src/main/js/sap/ushell/ui/launchpad/LinkTileWrapperRenderer.js +2 -2
  814. package/src/main/js/sap/ushell/ui/launchpad/Section.js +1 -1
  815. package/src/main/js/sap/ushell/ui/launchpad/TileContainerUtils.js +1 -2
  816. package/src/main/js/sap/ushell/ui/launchpad/TileRenderer.js +2 -2
  817. package/src/main/js/sap/ushell/ui/launchpad/VizInstance.js +7 -4
  818. package/src/main/js/sap/ushell/ui/launchpad/section/CompactArea.js +1 -1
  819. package/src/main/js/sap/ushell/ui/shell/ShellAppTitle.js +3 -2
  820. package/src/main/js/sap/ushell/ui/shell/ShellNavigationMenu.js +20 -20
  821. package/src/main/js/sap/ushell/ui/shell/ToolAreaItem.js +1 -1
  822. package/src/main/js/sap/ushell/ui/tile/TileBase.js +3 -3
  823. package/src/main/js/sap/ushell/ui/utils.js +6 -6
  824. package/src/main/js/sap/ushell/ui5service/ShellUIService.js +3 -0
  825. package/src/main/js/sap/ushell/ui5service/ShellUIServiceFactory.js +1 -1
  826. package/src/main/js/sap/ushell/ui5service/UserStatus.js +1 -1
  827. package/src/main/js/sap/ushell/utils/CallbackQueue.js +114 -0
  828. package/src/main/js/sap/ushell/utils/Deferred.js +3 -3
  829. package/src/main/js/sap/ushell/utils/DynamicTileRequest.js +6 -6
  830. package/src/main/js/sap/ushell/utils/HttpClient.js +68 -68
  831. package/src/main/js/sap/ushell/utils/LaunchpadError.js +21 -0
  832. package/src/main/js/sap/ushell/utils/UrlParsing.js +16 -17
  833. package/src/main/js/sap/ushell/utils/UrlShortening.js +2 -2
  834. package/src/main/js/sap/ushell/utils/WindowUtils.js +5 -3
  835. package/src/main/js/sap/ushell/utils/chipsUtils.js +7 -5
  836. package/src/main/js/sap/ushell/utils/tilecard/TileCard.js +2 -2
  837. package/src/main/js/sap/ushell/utils/tilecard/TileCardExtension.js +9 -9
  838. package/src/main/js/sap/ushell/utils/utilsCdm.js +5 -6
  839. package/src/main/js/sap/ushell/utils/workpage/DestinationResolver.js +15 -11
  840. package/src/main/js/sap/ushell/utils/workpage/WorkPageHost.js +18 -19
  841. package/src/main/js/sap/ushell/utils/workpage/WorkPageService.js +11 -7
  842. package/src/main/js/sap/ushell/utils/workpage/WorkPageVizInstantiation.js +1 -1
  843. package/src/main/js/sap/ushell/utils.js +45 -65
  844. package/src/test/js/sap/ushell/bootstrap/sandbox.js +69 -70
  845. package/ui5.yaml +37 -16
  846. package/src/main/js/sap/ushell/appIntegration/PostMessageManager/AppruntimeHandler.js +0 -121
  847. package/src/main/js/sap/ushell/appIntegration/PostMessageManager/LifecycleHandler.js +0 -631
  848. package/src/main/js/sap/ushell/appIntegration/PostMessageManager/MessageBrokerHandler.js +0 -59
  849. package/src/main/js/sap/ushell/appIntegration/PostMessageManager/ServiceHandler.js +0 -1541
  850. package/src/main/js/sap/ushell/appRuntime/ui5/AppRuntimeService.js +0 -40
  851. package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css3.js +0 -7
  852. /package/src/main/js/sap/ushell/appIntegration/{PostMessageManager → PostMessageHandler}/ExtensionItems.js +0 -0
@@ -1,6 +1,6 @@
1
1
  sap.ui.define(['exports'], (function (exports) { 'use strict';
2
2
 
3
- var parametersBundle_css = ":root{--sapThemeMetaData-Base-baseLib:{\"Path\": \"Base.baseLib.sap_fiori_3_hcw.css_variables\",\"PathPattern\": \"/%frameworkId%/%libId%/%themeId%/%fileId%.css\",\"Extends\": [\"sap_fiori_3_hcb\",\"sap_fiori_3\",\"sap_base_fiori\",\"baseTheme\"],\"Tags\": [\"Fiori_3\",\"HighContrast\",\"LightColorScheme\"],\"FallbackThemeId\": \"sap_belize_hcw\",\"Engine\":{\"Name\": \"theming-engine\",\"Version\": \"15.0.8\"},\"Version\":{\"Build\": \"11.29.3.20250417070835\",\"Source\": \"11.29.3\"}};--sapBrandColor: #ec8b46;--sapHighlightColor: #ec8b46;--sapBaseColor: #fff;--sapShellColor: #fff;--sapBackgroundColor: #fff;--sapFontFamily: \"72\", \"72full\", Arial, Helvetica, sans-serif;--sapFontSize: .875rem;--sapTextColor: #000;--sapLinkColor: #000;--sapCompanyLogo: none;--sapFavicon: none;--sapBackgroundImage: none;--sapBackgroundImageOpacity: 1;--sapBackgroundImageRepeat: false;--sapSelectedColor: #8fb5ff;--sapHoverColor: #ec8b46;--sapActiveColor: #ec8b46;--sapHighlightTextColor: #000;--sapTitleColor: #000;--sapNegativeColor: #ab0000;--sapCriticalColor: #5c5c00;--sapPositiveColor: #006362;--sapInformativeColor: #000;--sapNeutralColor: #000;--sapNegativeElementColor: #ab0000;--sapCriticalElementColor: #5c5c00;--sapPositiveElementColor: #006362;--sapInformativeElementColor: #000;--sapNeutralElementColor: #000;--sapNegativeTextColor: #ab0000;--sapCriticalTextColor: #5c5c00;--sapPositiveTextColor: #006362;--sapInformativeTextColor: #000;--sapNeutralTextColor: #000;--sapErrorColor: #ab0000;--sapWarningColor: #5c5c00;--sapSuccessColor: #006362;--sapInformationColor: #000;--sapErrorBackground: #fff;--sapWarningBackground: #fff;--sapSuccessBackground: #fff;--sapInformationBackground: #fff;--sapNeutralBackground: #fff;--sapErrorBorderColor: #ab0000;--sapWarningBorderColor: #5c5c00;--sapSuccessBorderColor: #006362;--sapInformationBorderColor: #000;--sapNeutralBorderColor: #000;--sapElement_LineHeight: 2.75rem;--sapElement_Height: 2.25rem;--sapElement_BorderWidth: .0625rem;--sapElement_BorderCornerRadius: .25rem;--sapElement_Compact_LineHeight: 2rem;--sapElement_Compact_Height: 1.625rem;--sapElement_Condensed_LineHeight: 1.5rem;--sapElement_Condensed_Height: 1.375rem;--sapContent_LineHeight: 1.4;--sapContent_IconHeight: 1rem;--sapContent_IconColor: #000;--sapContent_ContrastIconColor: #000;--sapContent_NonInteractiveIconColor: #000;--sapContent_MarkerIconColor: #000;--sapContent_MarkerTextColor: #000;--sapContent_MeasureIndicatorColor: #000;--sapContent_Selected_MeasureIndicatorColor: #000;--sapContent_Placeholderloading_Background: #888;--sapContent_Placeholderloading_Gradient: linear-gradient(to right, #888 0%, #888 35%, #585858 50%, #888 65%, #888 100%);--sapContent_ImagePlaceholderBackground: #fff;--sapContent_ImagePlaceholderForegroundColor: #000;--sapContent_RatedColor: #000;--sapContent_UnratedColor: #585858;--sapContent_BusyColor: #000;--sapContent_FocusColor: #000;--sapContent_FocusStyle: dotted;--sapContent_FocusWidth: .125rem;--sapContent_ContrastFocusColor: #000;--sapContent_ShadowColor: #000;--sapContent_ContrastShadowColor: #000;--sapContent_Shadow0: 0 0 0 .0625rem #000;--sapContent_Shadow1: 0 0 1rem 0 rgba(0,0,0,.5), 0 0 0 .125rem #000;--sapContent_Shadow2: 0 .25rem 2rem 0 rgba(0,0,0,.6), 0 0 0 .125rem #000;--sapContent_Shadow3: 0 .625rem 4rem 0 rgba(0,0,0,.8), 0 0 0 .125rem #000;--sapContent_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapContent_ContrastTextShadow: none;--sapContent_HeaderShadow: inset 0 -.125rem #000;--sapContent_Interaction_Shadow: none;--sapContent_Selected_Shadow: none;--sapContent_Negative_Shadow: none;--sapContent_Critical_Shadow: none;--sapContent_Positive_Shadow: none;--sapContent_Informative_Shadow: none;--sapContent_Neutral_Shadow: none;--sapContent_SearchHighlightColor: #ec8b46;--sapContent_HelpColor: #006500;--sapContent_LabelColor: #000;--sapContent_MonospaceFontFamily: \"72Mono\", \"72Monofull\", lucida console, monospace;--sapContent_MonospaceBoldFontFamily: \"72Mono-Bold\", \"72Mono-Boldfull\", lucida console, monospace;--sapContent_IconFontFamily: \"SAP-icons\";--sapContent_DisabledTextColor: #888;--sapContent_DisabledOpacity: .4;--sapContent_ContrastTextThreshold: .65;--sapContent_ContrastTextColor: #000;--sapContent_ForegroundColor: #fff;--sapContent_ForegroundBorderColor: #000;--sapContent_ForegroundTextColor: #000;--sapContent_BadgeBackground: #000;--sapContent_BadgeTextColor: #fff;--sapContent_BadgeBorderColor: #fff;--sapContent_DragAndDropActiveColor: #006500;--sapContent_Selected_TextColor: #000;--sapContent_Selected_Background: #8fb5ff;--sapContent_Selected_Hover_Background: #ec8b46;--sapContent_Selected_ForegroundColor: #000;--sapContent_ForcedColorAdjust: none;--sapContent_Lite_Shadow: 0 0 1rem 0 rgba(0,0,0,.5), 0 0 0 .125rem #000;--sapContent_Illustrative_Color1: #9b015d;--sapContent_Illustrative_Color2: #56bdff;--sapContent_Illustrative_Color3: #ff7f4c;--sapContent_Illustrative_Color4: #00144a;--sapContent_Illustrative_Color5: #a9b4be;--sapContent_Illustrative_Color6: #d5dadd;--sapContent_Illustrative_Color7: #dbf1ff;--sapContent_Illustrative_Color8: #fff;--sapContent_Illustrative_Color9: #0899a7;--sapContent_Illustrative_Color10: #dbf1ff;--sapContent_Illustrative_Color11: #df1278;--sapContent_Illustrative_Color12: #00a800;--sapContent_Illustrative_Color13: #0070f2;--sapContent_Illustrative_Color14: #0040b0;--sapContent_Illustrative_Color15: #c35500;--sapContent_Illustrative_Color16: #8d2a00;--sapContent_Illustrative_Color17: #046c7c;--sapContent_Illustrative_Color18: #bce5ff;--sapContent_Illustrative_Color19: #a3dbff;--sapContent_Illustrative_Color20: #89d1ff;--sapContent_Illustrative_Color21: #1b90ff;--sapContent_Illustrative_Color22: #00144a;--sapContent_Illustrative_Color23: #d20a0a;--sapContent_Illustrative_Color24: #ffb2d2;--sapContent_Illustrative_Color25: #ffeaf4;--sapContent_Illustrative_Color26: #ffdf72;--sapContent_Illustrative_Color27: #fff8d6;--sapContent_Illustrative_Color28: #a93e00;--sapContent_Illustrative_Color29: #450b00;--sapContent_Illustrative_Color30: #340800;--sapContent_Illustrative_Color31: #ffab92;--sapContent_Space_S: 1rem;--sapContent_Space_M: 2rem;--sapContent_Space_L: 2rem;--sapContent_Space_XL: 3rem;--sapContent_Space_Tiny: .5rem;--sapContent_Space_Small: 1rem;--sapContent_Space_Medium: 2rem;--sapContent_Space_Large: 3rem;--sapContent_Margin_Tiny: 0 0 1rem;--sapContent_Margin_Small: 1rem;--sapContent_Margin_Medium: 1rem 2rem;--sapContent_Margin_Large: 1rem 3rem;--sapContent_Padding_S: 0rem;--sapContent_Padding_M: 2rem;--sapContent_Padding_L: 2rem;--sapContent_Padding_XL: 3rem;--sapContent_Gap: 1rem;--sapContent_Success_HeaderShadow: inset 0 -.125rem #006362;--sapContent_Warning_HeaderShadow: inset 0 -.125rem #5c5c00;--sapContent_Error_HeaderShadow: inset 0 -.125rem #ab0000;--sapContent_Information_HeaderShadow: inset 0 -.125rem #000;--sapFontLightFamily: \"72-Light\", \"72-Lightfull\", \"72\", \"72full\", Arial, Helvetica, sans-serif;--sapFontBoldFamily: \"72-Bold\", \"72-Boldfull\", \"72\", \"72full\", Arial, Helvetica, sans-serif;--sapFontSemiboldFamily: \"72-Semibold\", \"72-Semiboldfull\", \"72\", \"72full\", Arial, Helvetica, sans-serif;--sapFontSemiboldDuplexFamily: \"72-SemiboldDuplex\", \"72-SemiboldDuplexfull\", \"72\", \"72full\", Arial, Helvetica, sans-serif;--sapFontBlackFamily: \"72Black\", \"72Blackfull\",\"72\", \"72full\", Arial, Helvetica, sans-serif;--sapFontHeaderFamily: \"72\", \"72full\", Arial, Helvetica, sans-serif;--sapFontSmallSize: .75rem;--sapFontLargeSize: 1rem;--sapFontHeader1Size: 2.25rem;--sapFontHeader2Size: 1.5rem;--sapFontHeader3Size: 1.25rem;--sapFontHeader4Size: 1.125rem;--sapFontHeader5Size: 1rem;--sapFontHeader6Size: .875rem;--sapLink_TextDecoration: underline;--sapLink_Hover_Color: #000;--sapLink_Hover_TextDecoration: none;--sapLink_Active_Color: #000;--sapLink_Active_TextDecoration: underline;--sapLink_Visited_Color: #000;--sapLink_InvertedColor: #000;--sapLink_SubtleColor: #000;--sapShell_Background: #fff;--sapShell_BackgroundImage: linear-gradient(to bottom, #fff, #fff);--sapShell_BackgroundImageOpacity: 1;--sapShell_BackgroundImageRepeat: false;--sapShell_BorderColor: #000;--sapShell_TextColor: #000;--sapShell_InteractiveBackground: #fff;--sapShell_InteractiveTextColor: #000;--sapShell_InteractiveBorderColor: #000;--sapShell_GroupTitleTextColor: #000;--sapShell_GroupTitleTextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapShell_Hover_Background: #ec8b46;--sapShell_Active_Background: #ec8b46;--sapShell_Active_TextColor: #000;--sapShell_Selected_Background: #8fb5ff;--sapShell_Selected_TextColor: #000;--sapShell_Selected_Hover_Background: #ec8b46;--sapShell_Favicon: none;--sapShell_Navigation_Background: #fff;--sapShell_Navigation_Hover_Background: #ec8b46;--sapShell_Navigation_SelectedColor: #000;--sapShell_Navigation_Selected_TextColor: #000;--sapShell_Navigation_TextColor: #000;--sapShell_Navigation_Active_TextColor: #000;--sapShell_Navigation_Active_Background: #ec8b46;--sapShell_Shadow: 0 .125rem 0 0 #000;--sapShell_NegativeColor: #ab0000;--sapShell_CriticalColor: #5c5c00;--sapShell_PositiveColor: #006362;--sapShell_InformativeColor: #000;--sapShell_NeutralColor: #000;--sapShell_Assistant_ForegroundColor: #000;--sapShell_SubBrand_TextColor: #000;--sapShell_Category_1_Background: #fff;--sapShell_Category_1_BorderColor: #004ccb;--sapShell_Category_1_TextColor: #000;--sapShell_Category_1_TextShadow: none;--sapShell_Category_2_Background: #fff;--sapShell_Category_2_BorderColor: #973333;--sapShell_Category_2_TextColor: #000;--sapShell_Category_2_TextShadow: none;--sapShell_Category_3_Background: #fff;--sapShell_Category_3_BorderColor: #5f5800;--sapShell_Category_3_TextColor: #000;--sapShell_Category_3_TextShadow: none;--sapShell_Category_4_Background: #fff;--sapShell_Category_4_BorderColor: #6c3d62;--sapShell_Category_4_TextColor: #000;--sapShell_Category_4_TextShadow: none;--sapShell_Category_5_Background: #fff;--sapShell_Category_5_BorderColor: #734f00;--sapShell_Category_5_TextColor: #000;--sapShell_Category_5_TextShadow: none;--sapShell_Category_6_Background: #fff;--sapShell_Category_6_BorderColor: #105b5b;--sapShell_Category_6_TextColor: #000;--sapShell_Category_6_TextShadow: none;--sapShell_Category_7_Background: #fff;--sapShell_Category_7_BorderColor: #961d7c;--sapShell_Category_7_TextColor: #000;--sapShell_Category_7_TextShadow: none;--sapShell_Category_8_Background: #fff;--sapShell_Category_8_BorderColor: #26340b;--sapShell_Category_8_TextColor: #000;--sapShell_Category_8_TextShadow: none;--sapShell_Category_9_Background: #fff;--sapShell_Category_9_BorderColor: #002a86;--sapShell_Category_9_TextColor: #000;--sapShell_Category_9_TextShadow: none;--sapShell_Category_10_Background: #fff;--sapShell_Category_10_BorderColor: #47596c;--sapShell_Category_10_TextColor: #000;--sapShell_Category_10_TextShadow: none;--sapShell_Category_11_Background: #fff;--sapShell_Category_11_BorderColor: #af080b;--sapShell_Category_11_TextColor: #000;--sapShell_Category_11_TextShadow: none;--sapShell_Category_12_Background: #fff;--sapShell_Category_12_BorderColor: #7000e0;--sapShell_Category_12_TextColor: #000;--sapShell_Category_12_TextShadow: none;--sapShell_Category_13_Background: #fff;--sapShell_Category_13_BorderColor: #580440;--sapShell_Category_13_TextColor: #000;--sapShell_Category_13_TextShadow: none;--sapShell_Category_14_Background: #fff;--sapShell_Category_14_BorderColor: #035663;--sapShell_Category_14_TextColor: #000;--sapShell_Category_14_TextShadow: none;--sapShell_Category_15_Background: #fff;--sapShell_Category_15_BorderColor: #223548;--sapShell_Category_15_TextColor: #000;--sapShell_Category_15_TextShadow: none;--sapShell_Category_16_Background: #fff;--sapShell_Category_16_BorderColor: #1e592f;--sapShell_Category_16_TextColor: #000;--sapShell_Category_16_TextShadow: none;--sapShell_Space_S: .5rem;--sapShell_Space_M: 2rem;--sapShell_Space_L: 2rem;--sapShell_Space_XL: 3rem;--sapShell_Gap_S: .5rem;--sapShell_Gap_M: 1rem;--sapShell_Gap_L: 1rem;--sapShell_Gap_XL: 1rem;--sapShell_GroupGap_S: 2rem;--sapShell_GroupGap_M: 3rem;--sapShell_GroupGap_L: 3rem;--sapShell_GroupGap_XL: 3rem;--sapAssistant_Color1: #000;--sapAssistant_Color2: #000;--sapAssistant_BackgroundGradient: linear-gradient(#fff, #fff);--sapAssistant_Background: #fff;--sapAssistant_BorderColor: #000;--sapAssistant_TextColor: #000;--sapAssistant_Hover_Background: #ec8b46;--sapAssistant_Hover_BorderColor: #000;--sapAssistant_Hover_TextColor: #000;--sapAssistant_Active_Background: #ec8b46;--sapAssistant_Active_BorderColor: #000;--sapAssistant_Active_TextColor: #000;--sapAssistant_Question_Background: #fff;--sapAssistant_Question_BorderColor: #000;--sapAssistant_Question_TextColor: #000;--sapAssistant_Answer_Background: #b3b3b3;--sapAssistant_Answer_BorderColor: #000;--sapAssistant_Answer_TextColor: #000;--sapAvatar_1_Background: #fff;--sapAvatar_1_BorderColor: #000;--sapAvatar_1_TextColor: #000;--sapAvatar_1_Hover_Background: #ec8b46;--sapAvatar_2_Background: #fff;--sapAvatar_2_BorderColor: #000;--sapAvatar_2_TextColor: #000;--sapAvatar_2_Hover_Background: #ec8b46;--sapAvatar_3_Background: #fff;--sapAvatar_3_BorderColor: #000;--sapAvatar_3_TextColor: #000;--sapAvatar_3_Hover_Background: #ec8b46;--sapAvatar_4_Background: #fff;--sapAvatar_4_BorderColor: #000;--sapAvatar_4_TextColor: #000;--sapAvatar_4_Hover_Background: #ec8b46;--sapAvatar_5_Background: #fff;--sapAvatar_5_BorderColor: #000;--sapAvatar_5_TextColor: #000;--sapAvatar_5_Hover_Background: #ec8b46;--sapAvatar_6_Background: #fff;--sapAvatar_6_BorderColor: #000;--sapAvatar_6_TextColor: #000;--sapAvatar_6_Hover_Background: #ec8b46;--sapAvatar_7_Background: #fff;--sapAvatar_7_BorderColor: #000;--sapAvatar_7_TextColor: #000;--sapAvatar_7_Hover_Background: #ec8b46;--sapAvatar_8_Background: #fff;--sapAvatar_8_BorderColor: #000;--sapAvatar_8_TextColor: #000;--sapAvatar_8_Hover_Background: #ec8b46;--sapAvatar_9_Background: #fff;--sapAvatar_9_BorderColor: #000;--sapAvatar_9_TextColor: #000;--sapAvatar_9_Hover_Background: #ec8b46;--sapAvatar_10_Background: #fff;--sapAvatar_10_BorderColor: #000;--sapAvatar_10_TextColor: #000;--sapAvatar_10_Hover_Background: #ec8b46;--sapAvatar_Lite_BorderColor: #000;--sapAvatar_Lite_Background: #fff;--sapAvatar_Hover_BorderColor: #000;--sapButton_Background: #fff;--sapButton_BorderColor: #000;--sapButton_BorderWidth: .0625rem;--sapButton_BorderCornerRadius: .375rem;--sapButton_TextColor: #000;--sapButton_FontFamily: \"72\", \"72full\", Arial, Helvetica, sans-serif;--sapButton_Hover_Background: #ec8b46;--sapButton_Hover_BorderColor: #000;--sapButton_Hover_TextColor: #000;--sapButton_IconColor: #000;--sapButton_Active_Background: #ec8b46;--sapButton_Active_BorderColor: #000;--sapButton_Active_TextColor: #000;--sapButton_Emphasized_Background: #fff;--sapButton_Emphasized_BorderColor: #000;--sapButton_Emphasized_BorderWidth: .125rem;--sapButton_Emphasized_TextColor: #000;--sapButton_Emphasized_FontFamily: \"72-Bold\", \"72-Boldfull\", \"72\", \"72full\", Arial, Helvetica, sans-serif;--sapButton_Emphasized_Hover_Background: #ec8b46;--sapButton_Emphasized_Hover_BorderColor: #000;--sapButton_Emphasized_Hover_TextColor: #000;--sapButton_Emphasized_Active_Background: #ec8b46;--sapButton_Emphasized_Active_BorderColor: #000;--sapButton_Emphasized_Active_TextColor: #000;--sapButton_Emphasized_TextShadow: transparent;--sapButton_Emphasized_FontWeight: bold;--sapButton_Reject_Background: #fff;--sapButton_Reject_BorderColor: #000;--sapButton_Reject_TextColor: #000;--sapButton_Reject_Hover_Background: #ec8b46;--sapButton_Reject_Hover_BorderColor: #000;--sapButton_Reject_Hover_TextColor: #000;--sapButton_Reject_Active_Background: #ec8b46;--sapButton_Reject_Active_BorderColor: #000;--sapButton_Reject_Active_TextColor: #000;--sapButton_Reject_Selected_Background: #8fb5ff;--sapButton_Reject_Selected_BorderColor: #000;--sapButton_Reject_Selected_TextColor: #000;--sapButton_Reject_Selected_Hover_Background: #ec8b46;--sapButton_Reject_Selected_Hover_BorderColor: #000;--sapButton_Accept_Background: #fff;--sapButton_Accept_BorderColor: #000;--sapButton_Accept_TextColor: #000;--sapButton_Accept_Hover_Background: #ec8b46;--sapButton_Accept_Hover_BorderColor: #000;--sapButton_Accept_Hover_TextColor: #000;--sapButton_Accept_Active_Background: #ec8b46;--sapButton_Accept_Active_BorderColor: #000;--sapButton_Accept_Active_TextColor: #000;--sapButton_Accept_Selected_Background: #8fb5ff;--sapButton_Accept_Selected_BorderColor: #000;--sapButton_Accept_Selected_TextColor: #000;--sapButton_Accept_Selected_Hover_Background: #ec8b46;--sapButton_Accept_Selected_Hover_BorderColor: #000;--sapButton_Lite_Background: #fff;--sapButton_Lite_BorderColor: #000;--sapButton_Lite_TextColor: #000;--sapButton_Lite_Hover_Background: #ec8b46;--sapButton_Lite_Hover_BorderColor: #000;--sapButton_Lite_Hover_TextColor: #000;--sapButton_Lite_Active_Background: #ec8b46;--sapButton_Lite_Active_BorderColor: #000;--sapButton_Selected_Background: #8fb5ff;--sapButton_Selected_BorderColor: #000;--sapButton_Selected_TextColor: #000;--sapButton_Selected_Hover_Background: #ec8b46;--sapButton_Selected_Hover_BorderColor: #000;--sapButton_Attention_Background: #fff;--sapButton_Attention_BorderColor: #000;--sapButton_Attention_TextColor: #000;--sapButton_Attention_Hover_Background: #ec8b46;--sapButton_Attention_Hover_BorderColor: #000;--sapButton_Attention_Hover_TextColor: #000;--sapButton_Attention_Active_Background: #ec8b46;--sapButton_Attention_Active_BorderColor: #000;--sapButton_Attention_Active_TextColor: #000;--sapButton_Attention_Selected_Background: #8fb5ff;--sapButton_Attention_Selected_BorderColor: #000;--sapButton_Attention_Selected_TextColor: #000;--sapButton_Attention_Selected_Hover_Background: #ec8b46;--sapButton_Attention_Selected_Hover_BorderColor: #000;--sapButton_Negative_Background: #fff;--sapButton_Negative_BorderColor: #000;--sapButton_Negative_TextColor: #000;--sapButton_Negative_Hover_Background: #ec8b46;--sapButton_Negative_Hover_BorderColor: #000;--sapButton_Negative_Hover_TextColor: #000;--sapButton_Negative_Active_Background: #ec8b46;--sapButton_Negative_Active_BorderColor: #000;--sapButton_Negative_Active_TextColor: #000;--sapButton_Critical_Background: #fff;--sapButton_Critical_BorderColor: #000;--sapButton_Critical_TextColor: #000;--sapButton_Critical_Hover_Background: #ec8b46;--sapButton_Critical_Hover_BorderColor: #000;--sapButton_Critical_Hover_TextColor: #000;--sapButton_Critical_Active_Background: #ec8b46;--sapButton_Critical_Active_BorderColor: #000;--sapButton_Critical_Active_TextColor: #000;--sapButton_Success_Background: #fff;--sapButton_Success_BorderColor: #000;--sapButton_Success_TextColor: #000;--sapButton_Success_Hover_Background: #ec8b46;--sapButton_Success_Hover_BorderColor: #000;--sapButton_Success_Hover_TextColor: #000;--sapButton_Success_Active_Background: #ec8b46;--sapButton_Success_Active_BorderColor: #000;--sapButton_Success_Active_TextColor: #000;--sapButton_Information_Background: #fff;--sapButton_Information_BorderColor: #000;--sapButton_Information_TextColor: #000;--sapButton_Information_Hover_Background: #ec8b46;--sapButton_Information_Hover_BorderColor: #000;--sapButton_Information_Hover_TextColor: #000;--sapButton_Information_Active_Background: #ec8b46;--sapButton_Information_Active_BorderColor: #000;--sapButton_Information_Active_TextColor: #000;--sapButton_Neutral_Background: #fff;--sapButton_Neutral_BorderColor: #000;--sapButton_Neutral_TextColor: #000;--sapButton_Neutral_Hover_Background: #ec8b46;--sapButton_Neutral_Hover_BorderColor: #000;--sapButton_Neutral_Hover_TextColor: #000;--sapButton_Neutral_Active_Background: #ec8b46;--sapButton_Neutral_Active_BorderColor: #000;--sapButton_Neutral_Active_TextColor: #000;--sapButton_Track_Background: #fff;--sapButton_Track_BorderColor: #000;--sapButton_Track_TextColor: #000;--sapButton_Track_Hover_Background: #ec8b46;--sapButton_Track_Hover_BorderColor: #000;--sapButton_Track_Selected_Background: #8fb5ff;--sapButton_Track_Selected_BorderColor: #000;--sapButton_Track_Selected_TextColor: #000;--sapButton_Track_Selected_Hover_Background: #ec8b46;--sapButton_Track_Selected_Hover_BorderColor: #000;--sapButton_Handle_Background: #fff;--sapButton_Handle_BorderColor: #000;--sapButton_Handle_TextColor: #000;--sapButton_Handle_Hover_Background: #ec8b46;--sapButton_Handle_Hover_BorderColor: #000;--sapButton_Handle_Selected_Background: #8fb5ff;--sapButton_Handle_Selected_BorderColor: #000;--sapButton_Handle_Selected_TextColor: #000;--sapButton_Handle_Selected_Hover_Background: #ec8b46;--sapButton_Handle_Selected_Hover_BorderColor: #000;--sapButton_Track_Negative_Background: #fff;--sapButton_Track_Negative_BorderColor: #ab0000;--sapButton_Track_Negative_TextColor: #000;--sapButton_Track_Negative_Hover_Background: #ec8b46;--sapButton_Track_Negative_Hover_BorderColor: #ab0000;--sapButton_Handle_Negative_Background: #fff;--sapButton_Handle_Negative_BorderColor: #ab0000;--sapButton_Handle_Negative_TextColor: #000;--sapButton_Handle_Negative_Hover_Background: #ec8b46;--sapButton_Handle_Negative_Hover_BorderColor: #ab0000;--sapButton_Track_Positive_Background: #fff;--sapButton_Track_Positive_BorderColor: #006362;--sapButton_Track_Positive_TextColor: #000;--sapButton_Track_Positive_Hover_Background: #fff;--sapButton_Track_Positive_Hover_BorderColor: #000;--sapButton_Handle_Positive_Background: #fff;--sapButton_Handle_Positive_BorderColor: #006362;--sapButton_Handle_Positive_TextColor: #000;--sapButton_Handle_Positive_Hover_Background: #ec8b46;--sapButton_Handle_Positive_Hover_BorderColor: #006362;--sapButton_TokenBackground: #fff;--sapButton_TokenBorderColor: #000;--sapButton_TokenBorderCornerRadius: .25rem;--sapButton_Selected_TokenBorderWidth: 0;--sapButton_ReadOnly_TokenBackground: #b3b3b3;--sapButton_Segment_BorderCornerRadius: 0;--sapField_Background: #fff;--sapField_BackgroundStyle: none;--sapField_TextColor: #000;--sapField_PlaceholderTextColor: #585858;--sapField_BorderColor: #000;--sapField_HelpBackground: #fff;--sapField_BorderWidth: .125rem;--sapField_BorderStyle: solid;--sapField_BorderCornerRadius: 0;--sapField_Shadow: none;--sapField_Hover_Background: #fff;--sapField_Hover_BackgroundStyle: none;--sapField_Hover_BorderColor: #000;--sapField_Hover_HelpBackground: #fff;--sapField_Hover_Shadow: none;--sapField_Hover_InvalidShadow: none;--sapField_Hover_WarningShadow: none;--sapField_Hover_SuccessShadow: none;--sapField_Hover_InformationShadow: none;--sapField_Active_BorderColor: #000;--sapField_Focus_Background: #fff;--sapField_Focus_BorderColor: #000;--sapField_Focus_HelpBackground: #fff;--sapField_ReadOnly_Background: #b3b3b3;--sapField_ReadOnly_BackgroundStyle: none;--sapField_ReadOnly_BorderColor: #000;--sapField_ReadOnly_BorderStyle: solid;--sapField_ReadOnly_HelpBackground: #b3b3b3;--sapField_RequiredColor: #000;--sapField_InvalidColor: #000;--sapField_InvalidBackground: #ec8b46;--sapField_InvalidBackgroundStyle: none;--sapField_InvalidBorderWidth: .125rem;--sapField_InvalidBorderStyle: dashed;--sapField_InvalidShadow: none;--sapField_WarningColor: #000;--sapField_WarningBackground: #fff;--sapField_WarningBackgroundStyle: none;--sapField_WarningBorderWidth: .125rem;--sapField_WarningBorderStyle: dashed;--sapField_WarningShadow: none;--sapField_SuccessColor: #000;--sapField_SuccessBackground: #fff;--sapField_SuccessBackgroundStyle: none;--sapField_SuccessBorderWidth: .125rem;--sapField_SuccessBorderStyle: solid;--sapField_SuccessShadow: none;--sapField_InformationColor: #000;--sapField_InformationBackground: #fff;--sapField_InformationBackgroundStyle: none;--sapField_InformationBorderWidth: .0625rem;--sapField_InformationBorderStyle: dashed;--sapField_InformationShadow: none;--sapField_Selector_Hover_Background: #8fb5ff;--sapField_Selector_Hover_InvalidBackground: #ec8b46;--sapField_Selector_Hover_WarningBackground: #fff;--sapField_Selector_Hover_SuccessBackground: #fff;--sapField_Selector_Hover_InformationBackground: #fff;--sapField_Picker_BorderColor: #fff;--sapField_Picker_BorderWidth: .125rem;--sapField_Selector_BorderStyle: solid;--sapField_Selector_ReadOnly_BorderStyle: solid;--sapField_Selector_InvalidBorderStyle: dashed;--sapField_Selector_WarningBorderStyle: dashed;--sapField_Selector_SuccessBorderStyle: solid;--sapField_Selector_InformationBorderStyle: dashed;--sapGroup_TitleBorderWidth: .125rem;--sapGroup_TitleBackground: #fff;--sapGroup_TitleBorderColor: #000;--sapGroup_TitleTextColor: #000;--sapGroup_Title_FontSize: 1.125rem;--sapGroup_ContentBackground: #fff;--sapGroup_ContentBorderColor: #000;--sapGroup_BorderWidth: .0625rem;--sapGroup_BorderCornerRadius: 0;--sapGroup_FooterBackground: #fff;--sapToolbar_Background: #fff;--sapToolbar_SeparatorColor: #000;--sapList_HeaderBackground: #fff;--sapList_HeaderBorderColor: #000;--sapList_HeaderTextColor: #000;--sapList_BorderColor: #585858;--sapList_BorderWidth: .0625rem;--sapList_TextColor: #000;--sapList_Active_TextColor: #000;--sapList_Active_Background: #ec8b46;--sapList_SelectionBackgroundColor: #8fb5ff;--sapList_SelectionBorderColor: #000;--sapList_Hover_SelectionBackground: #ec8b46;--sapList_Background: #fff;--sapList_Hover_Background: #ec8b46;--sapList_AlternatingBackground: #e6e6e6;--sapList_GroupHeaderBackground: #fff;--sapList_GroupHeaderBorderColor: #000;--sapList_GroupHeaderTextColor: #000;--sapList_TableGroupHeaderBackground: #b3b3b3;--sapList_TableGroupHeaderBorderColor: #000;--sapList_TableGroupHeaderTextColor: #000;--sapList_FooterBackground: #fff;--sapList_FooterTextColor: #000;--sapList_TableFooterBorder: #000;--sapList_TableFixedBorderColor: #000;--sapList_TableFixedColumnBorderWidth: .1875rem;--sapList_TableFixedRowBorderWidth: .1875rem;--sapMessage_BorderWidth: .125rem;--sapMessage_ErrorBorderColor: #ab0000;--sapMessage_WarningBorderColor: #5c5c00;--sapMessage_SuccessBorderColor: #006362;--sapMessage_InformationBorderColor: #000;--sapMessage_Button_Hover_Background: #ec8b46;--sapPopover_BorderCornerRadius: .25rem;--sapProgress_Background: #fff;--sapProgress_BorderColor: #000;--sapProgress_TextColor: #000;--sapProgress_FontSize: .75rem;--sapProgress_NegativeBackground: #fff;--sapProgress_NegativeBorderColor: #000;--sapProgress_NegativeTextColor: #000;--sapProgress_CriticalBackground: #fff;--sapProgress_CriticalBorderColor: #000;--sapProgress_CriticalTextColor: #000;--sapProgress_PositiveBackground: #fff;--sapProgress_PositiveBorderColor: #000;--sapProgress_PositiveTextColor: #000;--sapProgress_InformationBackground: #fff;--sapProgress_InformationBorderColor: #000;--sapProgress_InformationTextColor: #000;--sapProgress_Value_Background: #ec8b46;--sapProgress_Value_BorderColor: #000;--sapProgress_Value_TextColor: #000;--sapProgress_Value_NegativeBackground: #ec8b46;--sapProgress_Value_NegativeBorderColor: #000;--sapProgress_Value_NegativeTextColor: #000;--sapProgress_Value_CriticalBackground: #ec8b46;--sapProgress_Value_CriticalBorderColor: #000;--sapProgress_Value_CriticalTextColor: #000;--sapProgress_Value_PositiveBackground: #ec8b46;--sapProgress_Value_PositiveBorderColor: #000;--sapProgress_Value_PositiveTextColor: #000;--sapProgress_Value_InformationBackground: #ec8b46;--sapProgress_Value_InformationBorderColor: #000;--sapProgress_Value_InformationTextColor: #000;--sapScrollBar_FaceColor: #585858;--sapScrollBar_TrackColor: #fff;--sapScrollBar_BorderColor: #585858;--sapScrollBar_SymbolColor: #000;--sapScrollBar_Dimension: .75rem;--sapScrollBar_Hover_FaceColor: #000;--sapSlider_Background: #fff;--sapSlider_BorderColor: #000;--sapSlider_Selected_Background: #8fb5ff;--sapSlider_Selected_BorderColor: #000;--sapSlider_Selected_Dimension: 111px;--sapSlider_HandleBackground: #fff;--sapSlider_HandleBorderColor: #000;--sapSlider_RangeHandleBackground: #fff;--sapSlider_Hover_HandleBackground: #ec8b46;--sapSlider_Hover_HandleBorderColor: #000;--sapSlider_Hover_RangeHandleBackground: #ec8b46;--sapSlider_Active_HandleBackground: #ec8b46;--sapSlider_Active_HandleBorderColor: #000;--sapSlider_Active_RangeHandleBackground: transparent;--sapPageHeader_Background: #fff;--sapPageHeader_BorderColor: #000;--sapPageHeader_TextColor: #000;--sapPageFooter_Background: #fff;--sapPageFooter_BorderColor: #000;--sapPageFooter_TextColor: #000;--sapInfobar_Background: #fff;--sapInfobar_Hover_Background: #ec8b46;--sapInfobar_Active_Background: #ec8b46;--sapInfobar_NonInteractive_Background: #b3b3b3;--sapInfobar_TextColor: #000;--sapObjectHeader_Background: #fff;--sapObjectHeader_Hover_Background: #ec8b46;--sapObjectHeader_BorderColor: #000;--sapObjectHeader_Title_TextColor: #000;--sapObjectHeader_Title_FontSize: 1.25rem;--sapObjectHeader_Title_SnappedFontSize: 1.25rem;--sapObjectHeader_Title_FontFamily: \"72\", \"72full\", Arial, Helvetica, sans-serif;--sapObjectHeader_Subtitle_TextColor: #000;--sapBlockLayer_Background: #fff;--sapBlockLayer_Opacity: .3;--sapTab_TextColor: #000;--sapTab_ForegroundColor: #000;--sapTab_IconColor: #000;--sapTab_Background: #fff;--sapTab_Selected_TextColor: #000;--sapTab_Selected_IconColor: #000;--sapTab_Selected_Background: #8fb5ff;--sapTab_Selected_Indicator_Dimension: .3125rem;--sapTab_Positive_TextColor: #000;--sapTab_Positive_ForegroundColor: #000;--sapTab_Positive_IconColor: #000;--sapTab_Positive_Selected_TextColor: #000;--sapTab_Positive_Selected_IconColor: #000;--sapTab_Positive_Selected_Background: #8fb5ff;--sapTab_Negative_TextColor: #000;--sapTab_Negative_ForegroundColor: #000;--sapTab_Negative_IconColor: #000;--sapTab_Negative_Selected_TextColor: #000;--sapTab_Negative_Selected_IconColor: #000;--sapTab_Negative_Selected_Background: #8fb5ff;--sapTab_Critical_TextColor: #000;--sapTab_Critical_ForegroundColor: #000;--sapTab_Critical_IconColor: #000;--sapTab_Critical_Selected_TextColor: #000;--sapTab_Critical_Selected_IconColor: #000;--sapTab_Critical_Selected_Background: #8fb5ff;--sapTab_Neutral_TextColor: #000;--sapTab_Neutral_ForegroundColor: #000;--sapTab_Neutral_IconColor: #000;--sapTab_Neutral_Selected_TextColor: #000;--sapTab_Neutral_Selected_IconColor: #000;--sapTab_Neutral_Selected_Background: #8fb5ff;--sapTile_Background: #fff;--sapTile_Hover_Background: #ec8b46;--sapTile_Active_Background: #ec8b46;--sapTile_BorderColor: #000;--sapTile_BorderCornerRadius: .25rem;--sapTile_TitleTextColor: #000;--sapTile_TextColor: #000;--sapTile_IconColor: #000;--sapTile_SeparatorColor: #000;--sapTile_Interactive_BorderColor: #000;--sapTile_OverlayBackground: #fff;--sapTile_OverlayForegroundColor: #000;--sapTile_Hover_ContentBackground: #ec8b46;--sapTile_Active_ContentBackground: #ec8b46;--sapAccentColor1: #5f5800;--sapAccentColor2: #5e4101;--sapAccentColor3: #973333;--sapAccentColor4: #961d7c;--sapAccentColor5: #365892;--sapAccentColor6: #004ccb;--sapAccentColor7: #105b5b;--sapAccentColor8: #26340b;--sapAccentColor9: #6c32a9;--sapAccentColor10: #4a5964;--sapAccentBackgroundColor1: #fff3b8;--sapAccentBackgroundColor2: #ffd0e7;--sapAccentBackgroundColor3: #fff0fa;--sapAccentBackgroundColor4: #ffdcf3;--sapAccentBackgroundColor5: #ded3ff;--sapAccentBackgroundColor6: #d1efff;--sapAccentBackgroundColor7: #c2fcee;--sapAccentBackgroundColor8: #ebf5cb;--sapAccentBackgroundColor9: #dafdf5;--sapAccentBackgroundColor10: #eaecee;--sapIndicationColor_1: #780000;--sapIndicationColor_1_Background: #fff;--sapIndicationColor_1_BorderColor: #000;--sapIndicationColor_1_TextColor: #000;--sapIndicationColor_1_Hover_Background: #ec8b46;--sapIndicationColor_1_Active_Background: #ec8b46;--sapIndicationColor_1_Active_BorderColor: #000;--sapIndicationColor_1_Active_TextColor: #000;--sapIndicationColor_1_Selected_Background: #8fb5ff;--sapIndicationColor_1_Selected_BorderColor: #000;--sapIndicationColor_1_Selected_TextColor: #000;--sapIndicationColor_1b: #780000;--sapIndicationColor_1b_TextColor: #000;--sapIndicationColor_1b_Background: #fff;--sapIndicationColor_1b_BorderColor: #000;--sapIndicationColor_1b_Hover_Background: #ec8b46;--sapIndicationColor_2: #ab0000;--sapIndicationColor_2_Background: #fff;--sapIndicationColor_2_BorderColor: #000;--sapIndicationColor_2_TextColor: #000;--sapIndicationColor_2_Hover_Background: #ec8b46;--sapIndicationColor_2_Active_Background: #ec8b46;--sapIndicationColor_2_Active_BorderColor: #000;--sapIndicationColor_2_Active_TextColor: #000;--sapIndicationColor_2_Selected_Background: #8fb5ff;--sapIndicationColor_2_Selected_BorderColor: #000;--sapIndicationColor_2_Selected_TextColor: #000;--sapIndicationColor_2b: #ab0000;--sapIndicationColor_2b_TextColor: #000;--sapIndicationColor_2b_Background: #fff;--sapIndicationColor_2b_BorderColor: #000;--sapIndicationColor_2b_Hover_Background: #ec8b46;--sapIndicationColor_3: #5c5c00;--sapIndicationColor_3_Background: #fff;--sapIndicationColor_3_BorderColor: #000;--sapIndicationColor_3_TextColor: #000;--sapIndicationColor_3_Hover_Background: #ec8b46;--sapIndicationColor_3_Active_Background: #ec8b46;--sapIndicationColor_3_Active_BorderColor: #000;--sapIndicationColor_3_Active_TextColor: #000;--sapIndicationColor_3_Selected_Background: #8fb5ff;--sapIndicationColor_3_Selected_BorderColor: #000;--sapIndicationColor_3_Selected_TextColor: #000;--sapIndicationColor_3b: #5c5c00;--sapIndicationColor_3b_TextColor: #000;--sapIndicationColor_3b_Background: #fff;--sapIndicationColor_3b_BorderColor: #000;--sapIndicationColor_3b_Hover_Background: #ec8b46;--sapIndicationColor_4: #006362;--sapIndicationColor_4_Background: #fff;--sapIndicationColor_4_BorderColor: #000;--sapIndicationColor_4_TextColor: #000;--sapIndicationColor_4_Hover_Background: #ec8b46;--sapIndicationColor_4_Active_Background: #ec8b46;--sapIndicationColor_4_Active_BorderColor: #000;--sapIndicationColor_4_Active_TextColor: #000;--sapIndicationColor_4_Selected_Background: #8fb5ff;--sapIndicationColor_4_Selected_BorderColor: #000;--sapIndicationColor_4_Selected_TextColor: #000;--sapIndicationColor_4b: #006362;--sapIndicationColor_4b_TextColor: #000;--sapIndicationColor_4b_Background: #fff;--sapIndicationColor_4b_BorderColor: #000;--sapIndicationColor_4b_Hover_Background: #ec8b46;--sapIndicationColor_5: #004ccb;--sapIndicationColor_5_Background: #fff;--sapIndicationColor_5_BorderColor: #000;--sapIndicationColor_5_TextColor: #000;--sapIndicationColor_5_Hover_Background: #ec8b46;--sapIndicationColor_5_Active_Background: #ec8b46;--sapIndicationColor_5_Active_BorderColor: #000;--sapIndicationColor_5_Active_TextColor: #000;--sapIndicationColor_5_Selected_Background: #8fb5ff;--sapIndicationColor_5_Selected_BorderColor: #000;--sapIndicationColor_5_Selected_TextColor: #000;--sapIndicationColor_5b: #004ccb;--sapIndicationColor_5b_TextColor: #000;--sapIndicationColor_5b_Background: #fff;--sapIndicationColor_5b_BorderColor: #000;--sapIndicationColor_5b_Hover_Background: #ec8b46;--sapIndicationColor_6: #105b5b;--sapIndicationColor_6_Background: #fff;--sapIndicationColor_6_BorderColor: #000;--sapIndicationColor_6_TextColor: #000;--sapIndicationColor_6_Hover_Background: #ec8b46;--sapIndicationColor_6_Active_Background: #ec8b46;--sapIndicationColor_6_Active_BorderColor: #000;--sapIndicationColor_6_Active_TextColor: #000;--sapIndicationColor_6_Selected_Background: #8fb5ff;--sapIndicationColor_6_Selected_BorderColor: #000;--sapIndicationColor_6_Selected_TextColor: #000;--sapIndicationColor_6b: #105b5b;--sapIndicationColor_6b_TextColor: #000;--sapIndicationColor_6b_Background: #fff;--sapIndicationColor_6b_BorderColor: #000;--sapIndicationColor_6b_Hover_Background: #ec8b46;--sapIndicationColor_7: #6c32a9;--sapIndicationColor_7_Background: #fff;--sapIndicationColor_7_BorderColor: #000;--sapIndicationColor_7_TextColor: #000;--sapIndicationColor_7_Hover_Background: #ec8b46;--sapIndicationColor_7_Active_Background: #ec8b46;--sapIndicationColor_7_Active_BorderColor: #000;--sapIndicationColor_7_Active_TextColor: #000;--sapIndicationColor_7_Selected_Background: #8fb5ff;--sapIndicationColor_7_Selected_BorderColor: #000;--sapIndicationColor_7_Selected_TextColor: #000;--sapIndicationColor_7b: #6c32a9;--sapIndicationColor_7b_TextColor: #000;--sapIndicationColor_7b_Background: #fff;--sapIndicationColor_7b_BorderColor: #000;--sapIndicationColor_7b_Hover_Background: #ec8b46;--sapIndicationColor_8: #961d7c;--sapIndicationColor_8_Background: #fff;--sapIndicationColor_8_BorderColor: #000;--sapIndicationColor_8_TextColor: #000;--sapIndicationColor_8_Hover_Background: #ec8b46;--sapIndicationColor_8_Active_Background: #ec8b46;--sapIndicationColor_8_Active_BorderColor: #000;--sapIndicationColor_8_Active_TextColor: #000;--sapIndicationColor_8_Selected_Background: #8fb5ff;--sapIndicationColor_8_Selected_BorderColor: #000;--sapIndicationColor_8_Selected_TextColor: #000;--sapIndicationColor_8b: #961d7c;--sapIndicationColor_8b_TextColor: #000;--sapIndicationColor_8b_Background: #fff;--sapIndicationColor_8b_BorderColor: #000;--sapIndicationColor_8b_Hover_Background: #ec8b46;--sapIndicationColor_9: #fff;--sapIndicationColor_9_Background: #fff;--sapIndicationColor_9_BorderColor: #000;--sapIndicationColor_9_TextColor: #000;--sapIndicationColor_9_Hover_Background: #ec8b46;--sapIndicationColor_9_Active_Background: #ec8b46;--sapIndicationColor_9_Active_BorderColor: #000;--sapIndicationColor_9_Active_TextColor: #000;--sapIndicationColor_9_Selected_Background: #8fb5ff;--sapIndicationColor_9_Selected_BorderColor: #000;--sapIndicationColor_9_Selected_TextColor: #000;--sapIndicationColor_9b: #fff;--sapIndicationColor_9b_TextColor: #000;--sapIndicationColor_9b_Background: #fff;--sapIndicationColor_9b_BorderColor: #000;--sapIndicationColor_9b_Hover_Background: #ec8b46;--sapIndicationColor_10: #eaecee;--sapIndicationColor_10_Background: #fff;--sapIndicationColor_10_BorderColor: #000;--sapIndicationColor_10_TextColor: #000;--sapIndicationColor_10_Hover_Background: #ec8b46;--sapIndicationColor_10_Active_Background: #ec8b46;--sapIndicationColor_10_Active_BorderColor: #000;--sapIndicationColor_10_Active_TextColor: #000;--sapIndicationColor_10_Selected_Background: #8fb5ff;--sapIndicationColor_10_Selected_BorderColor: #000;--sapIndicationColor_10_Selected_TextColor: #000;--sapIndicationColor_10b: #eaecee;--sapIndicationColor_10b_TextColor: #000;--sapIndicationColor_10b_Background: #fff;--sapIndicationColor_10b_BorderColor: #000;--sapIndicationColor_10b_Hover_Background: #ec8b46;--sapLegend_WorkingBackground: #d9d9d9;--sapLegend_NonWorkingBackground: #b3b3b3;--sapLegend_CurrentDateTime: #961d7c;--sapLegendColor1: #5f5800;--sapLegendColor2: #5e4101;--sapLegendColor3: #973333;--sapLegendColor4: #463000;--sapLegendColor5: #961d7c;--sapLegendColor6: #004ccb;--sapLegendColor7: #105b5b;--sapLegendColor8: #26340b;--sapLegendColor9: #4a5964;--sapLegendColor10: #6c3d62;--sapLegendColor11: #383513;--sapLegendColor12: #734f00;--sapLegendColor13: #723e3e;--sapLegendColor14: #5f5642;--sapLegendColor15: #60535d;--sapLegendColor16: #465878;--sapLegendColor17: #435b5b;--sapLegendColor18: #4e5a36;--sapLegendColor19: #4e5869;--sapLegendColor20: #001b49;--sapLegendBackgroundColor1: #fff;--sapLegendBackgroundColor2: #fff;--sapLegendBackgroundColor3: #fff;--sapLegendBackgroundColor4: #fff;--sapLegendBackgroundColor5: #fff;--sapLegendBackgroundColor6: #fff;--sapLegendBackgroundColor7: #fff;--sapLegendBackgroundColor8: #fff;--sapLegendBackgroundColor9: #fff;--sapLegendBackgroundColor10: #fff;--sapLegendBackgroundColor11: #fff;--sapLegendBackgroundColor12: #fff;--sapLegendBackgroundColor13: #fff;--sapLegendBackgroundColor14: #fff;--sapLegendBackgroundColor15: #fff;--sapLegendBackgroundColor16: #fff;--sapLegendBackgroundColor17: #fff;--sapLegendBackgroundColor18: #fff;--sapLegendBackgroundColor19: #fff;--sapLegendBackgroundColor20: #fff;--sapChart_Background: #fff;--sapChart_ContrastTextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_ContrastShadowColor: #fff;--sapChart_ContrastLineColor: #fff;--sapChart_LineColor_1: #888;--sapChart_LineColor_2: #000;--sapChart_LineColor_3: #000;--sapChart_Choropleth_Background: #b3b3b3;--sapChart_ChoroplethRegion_Background: #525252;--sapChart_ChoroplethRegion_BorderColor: #b3b3b3;--sapChart_Data_TextColor: #000;--sapChart_Data_ContrastTextColor: #fff;--sapChart_Data_InteractiveColor: #000;--sapChart_Data_Active_Background: #ec8b46;--sapChart_OrderedColor_1: #446e97;--sapChart_OrderedColor_2: #d74114;--sapChart_OrderedColor_3: #2d6f51;--sapChart_OrderedColor_4: #df1278;--sapChart_OrderedColor_5: #7d44cf;--sapChart_OrderedColor_6: #03778c;--sapChart_OrderedColor_7: #0070f2;--sapChart_OrderedColor_8: #ae478d;--sapChart_OrderedColor_9: #667664;--sapChart_OrderedColor_10: #b75757;--sapChart_OrderedColor_11: #4b25e7;--sapChart_OrderedColor_12: #816246;--sapChart_Bad: #ab0000;--sapChart_Critical: #5c5c00;--sapChart_Good: #006362;--sapChart_Neutral: #525252;--sapChart_Sequence_1_Plus3: #6f97be;--sapChart_Sequence_1_Plus3_TextColor: #000;--sapChart_Sequence_1_Plus3_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_1_Plus2: #5a88b4;--sapChart_Sequence_1_Plus2_TextColor: #fff;--sapChart_Sequence_1_Plus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_1_Plus1: #4c7ba9;--sapChart_Sequence_1_Plus1_TextColor: #fff;--sapChart_Sequence_1_Plus1_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_1: #446e97;--sapChart_Sequence_1_TextColor: #fff;--sapChart_Sequence_1_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_1_BorderColor: #446e97;--sapChart_Sequence_1_Minus1: #3c6185;--sapChart_Sequence_1_Minus1_TextColor: #fff;--sapChart_Sequence_1_Minus1_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_1_Minus2: #345474;--sapChart_Sequence_1_Minus2_TextColor: #fff;--sapChart_Sequence_1_Minus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_1_Minus3: #2c4862;--sapChart_Sequence_1_Minus3_TextColor: #fff;--sapChart_Sequence_1_Minus3_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_1_Minus4: #243b51;--sapChart_Sequence_1_Minus4_TextColor: #fff;--sapChart_Sequence_1_Minus4_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_1_Minus5: #1c2e3f;--sapChart_Sequence_1_Minus5_TextColor: #fff;--sapChart_Sequence_1_Minus5_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_2_Plus3: #ee6c45;--sapChart_Sequence_2_Plus3_TextColor: #000;--sapChart_Sequence_2_Plus3_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_2_Plus2: #ec5d32;--sapChart_Sequence_2_Plus2_TextColor: #fff;--sapChart_Sequence_2_Plus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_2_Plus1: #ea4b1b;--sapChart_Sequence_2_Plus1_TextColor: #fff;--sapChart_Sequence_2_Plus1_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_2: #d74114;--sapChart_Sequence_2_TextColor: #fff;--sapChart_Sequence_2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_2_BorderColor: #d74114;--sapChart_Sequence_2_Minus1: #c03a12;--sapChart_Sequence_2_Minus1_TextColor: #fff;--sapChart_Sequence_2_Minus1_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_2_Minus2: #9f300f;--sapChart_Sequence_2_Minus2_TextColor: #fff;--sapChart_Sequence_2_Minus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_2_Minus3: #912c0d;--sapChart_Sequence_2_Minus3_TextColor: #fff;--sapChart_Sequence_2_Minus3_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_2_Minus4: #7a250b;--sapChart_Sequence_2_Minus4_TextColor: #fff;--sapChart_Sequence_2_Minus4_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_2_Minus5: #621e09;--sapChart_Sequence_2_Minus5_TextColor: #fff;--sapChart_Sequence_2_Minus5_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_3_Plus3: #43a579;--sapChart_Sequence_3_Plus3_TextColor: #000;--sapChart_Sequence_3_Plus3_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_3_Plus2: #3c936b;--sapChart_Sequence_3_Plus2_TextColor: #fff;--sapChart_Sequence_3_Plus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_3_Plus1: #34815e;--sapChart_Sequence_3_Plus1_TextColor: #fff;--sapChart_Sequence_3_Plus1_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_3: #2d6f51;--sapChart_Sequence_3_TextColor: #fff;--sapChart_Sequence_3_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_3_BorderColor: #2d6f51;--sapChart_Sequence_3_Minus1: #265d44;--sapChart_Sequence_3_Minus1_TextColor: #fff;--sapChart_Sequence_3_Minus1_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_3_Minus2: #1e4b37;--sapChart_Sequence_3_Minus2_TextColor: #fff;--sapChart_Sequence_3_Minus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_3_Minus3: #183c2c;--sapChart_Sequence_3_Minus3_TextColor: #fff;--sapChart_Sequence_3_Minus3_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_3_Minus4: #132e21;--sapChart_Sequence_3_Minus4_TextColor: #fff;--sapChart_Sequence_3_Minus4_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_3_Minus5: #0d1f17;--sapChart_Sequence_3_Minus5_TextColor: #fff;--sapChart_Sequence_3_Minus5_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_4_Plus3: #f25ba6;--sapChart_Sequence_4_Plus3_TextColor: #000;--sapChart_Sequence_4_Plus3_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_4_Plus2: #ef3a94;--sapChart_Sequence_4_Plus2_TextColor: #fff;--sapChart_Sequence_4_Plus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_4_Plus1: #ed2287;--sapChart_Sequence_4_Plus1_TextColor: #fff;--sapChart_Sequence_4_Plus1_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_4: #df1278;--sapChart_Sequence_4_TextColor: #fff;--sapChart_Sequence_4_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_4_BorderColor: #df1278;--sapChart_Sequence_4_Minus1: #c7106b;--sapChart_Sequence_4_Minus1_TextColor: #fff;--sapChart_Sequence_4_Minus1_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_4_Minus2: #b00e5f;--sapChart_Sequence_4_Minus2_TextColor: #fff;--sapChart_Sequence_4_Minus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_4_Minus3: #980c52;--sapChart_Sequence_4_Minus3_TextColor: #fff;--sapChart_Sequence_4_Minus3_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_4_Minus4: #810a45;--sapChart_Sequence_4_Minus4_TextColor: #fff;--sapChart_Sequence_4_Minus4_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_4_Minus5: #690839;--sapChart_Sequence_4_Minus5_TextColor: #fff;--sapChart_Sequence_4_Minus5_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_5_Plus3: #a781df;--sapChart_Sequence_5_Plus3_TextColor: #000;--sapChart_Sequence_5_Plus3_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_5_Plus2: #996dd9;--sapChart_Sequence_5_Plus2_TextColor: #fff;--sapChart_Sequence_5_Plus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_5_Plus1: #8b58d4;--sapChart_Sequence_5_Plus1_TextColor: #fff;--sapChart_Sequence_5_Plus1_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_5: #7d44cf;--sapChart_Sequence_5_TextColor: #fff;--sapChart_Sequence_5_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_5_BorderColor: #7d44cf;--sapChart_Sequence_5_Minus1: #6f33c7;--sapChart_Sequence_5_Minus1_TextColor: #fff;--sapChart_Sequence_5_Minus1_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_5_Minus2: #642eb2;--sapChart_Sequence_5_Minus2_TextColor: #fff;--sapChart_Sequence_5_Minus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_5_Minus3: #59299e;--sapChart_Sequence_5_Minus3_TextColor: #fff;--sapChart_Sequence_5_Minus3_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_5_Minus4: #522592;--sapChart_Sequence_5_Minus4_TextColor: #fff;--sapChart_Sequence_5_Minus4_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_5_Minus5: #492182;--sapChart_Sequence_5_Minus5_TextColor: #fff;--sapChart_Sequence_5_Minus5_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_6_Plus3: #04a1be;--sapChart_Sequence_6_Plus3_TextColor: #000;--sapChart_Sequence_6_Plus3_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_6_Plus2: #0495af;--sapChart_Sequence_6_Plus2_TextColor: #fff;--sapChart_Sequence_6_Plus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_6_Plus1: #0388a0;--sapChart_Sequence_6_Plus1_TextColor: #fff;--sapChart_Sequence_6_Plus1_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_6: #03778c;--sapChart_Sequence_6_TextColor: #fff;--sapChart_Sequence_6_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_6_BorderColor: #03778c;--sapChart_Sequence_6_Minus1: #036678;--sapChart_Sequence_6_Minus1_TextColor: #fff;--sapChart_Sequence_6_Minus1_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_6_Minus2: #025564;--sapChart_Sequence_6_Minus2_TextColor: #fff;--sapChart_Sequence_6_Minus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_6_Minus3: #024450;--sapChart_Sequence_6_Minus3_TextColor: #fff;--sapChart_Sequence_6_Minus3_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_6_Minus4: #01333c;--sapChart_Sequence_6_Minus4_TextColor: #fff;--sapChart_Sequence_6_Minus4_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_6_Minus5: #012228;--sapChart_Sequence_6_Minus5_TextColor: #fff;--sapChart_Sequence_6_Minus5_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_7_Plus3: #3a95ff;--sapChart_Sequence_7_Plus3_TextColor: #000;--sapChart_Sequence_7_Plus3_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_7_Plus2: #268aff;--sapChart_Sequence_7_Plus2_TextColor: #fff;--sapChart_Sequence_7_Plus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_7_Plus1: #0d7dff;--sapChart_Sequence_7_Plus1_TextColor: #fff;--sapChart_Sequence_7_Plus1_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_7: #0070f2;--sapChart_Sequence_7_TextColor: #fff;--sapChart_Sequence_7_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_7_BorderColor: #0070f2;--sapChart_Sequence_7_Minus1: #0062d3;--sapChart_Sequence_7_Minus1_TextColor: #fff;--sapChart_Sequence_7_Minus1_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_7_Minus2: #0054b5;--sapChart_Sequence_7_Minus2_TextColor: #fff;--sapChart_Sequence_7_Minus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_7_Minus3: #00418c;--sapChart_Sequence_7_Minus3_TextColor: #fff;--sapChart_Sequence_7_Minus3_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_7_Minus4: #00244f;--sapChart_Sequence_7_Minus4_TextColor: #fff;--sapChart_Sequence_7_Minus4_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_7_Minus5: #001b3a;--sapChart_Sequence_7_Minus5_TextColor: #fff;--sapChart_Sequence_7_Minus5_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_8_Plus3: #c879af;--sapChart_Sequence_8_Plus3_TextColor: #000;--sapChart_Sequence_8_Plus3_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_8_Plus2: #c167a4;--sapChart_Sequence_8_Plus2_TextColor: #fff;--sapChart_Sequence_8_Plus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_8_Plus1: #ba5599;--sapChart_Sequence_8_Plus1_TextColor: #fff;--sapChart_Sequence_8_Plus1_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_8: #ae478d;--sapChart_Sequence_8_TextColor: #fff;--sapChart_Sequence_8_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_8_BorderColor: #ae478d;--sapChart_Sequence_8_Minus1: #9c407e;--sapChart_Sequence_8_Minus1_TextColor: #fff;--sapChart_Sequence_8_Minus1_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_8_Minus2: #8a3870;--sapChart_Sequence_8_Minus2_TextColor: #fff;--sapChart_Sequence_8_Minus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_8_Minus3: #783161;--sapChart_Sequence_8_Minus3_TextColor: #fff;--sapChart_Sequence_8_Minus3_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_8_Minus4: #662952;--sapChart_Sequence_8_Minus4_TextColor: #fff;--sapChart_Sequence_8_Minus4_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_8_Minus5: #532244;--sapChart_Sequence_8_Minus5_TextColor: #fff;--sapChart_Sequence_8_Minus5_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_9_Plus3: #879785;--sapChart_Sequence_9_Plus3_TextColor: #000;--sapChart_Sequence_9_Plus3_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_9_Plus2: #7c8e7a;--sapChart_Sequence_9_Plus2_TextColor: #fff;--sapChart_Sequence_9_Plus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_9_Plus1: #70816d;--sapChart_Sequence_9_Plus1_TextColor: #fff;--sapChart_Sequence_9_Plus1_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_9: #667664;--sapChart_Sequence_9_TextColor: #fff;--sapChart_Sequence_9_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_9_BorderColor: #667664;--sapChart_Sequence_9_Minus1: #5c6b5b;--sapChart_Sequence_9_Minus1_TextColor: #fff;--sapChart_Sequence_9_Minus1_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_9_Minus2: #536051;--sapChart_Sequence_9_Minus2_TextColor: #fff;--sapChart_Sequence_9_Minus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_9_Minus3: #495548;--sapChart_Sequence_9_Minus3_TextColor: #fff;--sapChart_Sequence_9_Minus3_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_9_Minus4: #404a3f;--sapChart_Sequence_9_Minus4_TextColor: #fff;--sapChart_Sequence_9_Minus4_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_9_Minus5: #363f35;--sapChart_Sequence_9_Minus5_TextColor: #fff;--sapChart_Sequence_9_Minus5_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_10_Plus3: #c98282;--sapChart_Sequence_10_Plus3_TextColor: #000;--sapChart_Sequence_10_Plus3_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_10_Plus2: #c57777;--sapChart_Sequence_10_Plus2_TextColor: #fff;--sapChart_Sequence_10_Plus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_10_Plus1: #bd6565;--sapChart_Sequence_10_Plus1_TextColor: #fff;--sapChart_Sequence_10_Plus1_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_10: #b75757;--sapChart_Sequence_10_TextColor: #fff;--sapChart_Sequence_10_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_10_BorderColor: #b75757;--sapChart_Sequence_10_Minus1: #af4b4b;--sapChart_Sequence_10_Minus1_TextColor: #fff;--sapChart_Sequence_10_Minus1_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_10_Minus2: #a04545;--sapChart_Sequence_10_Minus2_TextColor: #fff;--sapChart_Sequence_10_Minus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_10_Minus3: #923f3f;--sapChart_Sequence_10_Minus3_TextColor: #fff;--sapChart_Sequence_10_Minus3_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_10_Minus4: #843939;--sapChart_Sequence_10_Minus4_TextColor: #fff;--sapChart_Sequence_10_Minus4_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_10_Minus5: #763232;--sapChart_Sequence_10_Minus5_TextColor: #fff;--sapChart_Sequence_10_Minus5_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_11_Plus3: #967dff;--sapChart_Sequence_11_Plus3_TextColor: #000;--sapChart_Sequence_11_Plus3_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_11_Plus2: #7e5fff;--sapChart_Sequence_11_Plus2_TextColor: #fff;--sapChart_Sequence_11_Plus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_11_Plus1: #5d36ff;--sapChart_Sequence_11_Plus1_TextColor: #fff;--sapChart_Sequence_11_Plus1_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_11: #4b25e7;--sapChart_Sequence_11_TextColor: #fff;--sapChart_Sequence_11_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_11_BorderColor: #4b25e7;--sapChart_Sequence_11_Minus1: #3a17cd;--sapChart_Sequence_11_Minus1_TextColor: #fff;--sapChart_Sequence_11_Minus1_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_11_Minus2: #3012a8;--sapChart_Sequence_11_Minus2_TextColor: #fff;--sapChart_Sequence_11_Minus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_11_Minus3: #250e83;--sapChart_Sequence_11_Minus3_TextColor: #fff;--sapChart_Sequence_11_Minus3_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_11_Minus4: #1d0b68;--sapChart_Sequence_11_Minus4_TextColor: #fff;--sapChart_Sequence_11_Minus4_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_11_Minus5: #10063a;--sapChart_Sequence_11_Minus5_TextColor: #fff;--sapChart_Sequence_11_Minus5_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_12_Plus3: #b08d6e;--sapChart_Sequence_12_Plus3_TextColor: #000;--sapChart_Sequence_12_Plus3_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_12_Plus2: #9f7956;--sapChart_Sequence_12_Plus2_TextColor: #fff;--sapChart_Sequence_12_Plus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_12_Plus1: #926f4f;--sapChart_Sequence_12_Plus1_TextColor: #fff;--sapChart_Sequence_12_Plus1_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_12: #816246;--sapChart_Sequence_12_TextColor: #fff;--sapChart_Sequence_12_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_12_BorderColor: #816246;--sapChart_Sequence_12_Minus1: #74583f;--sapChart_Sequence_12_Minus1_TextColor: #fff;--sapChart_Sequence_12_Minus1_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_12_Minus2: #674e38;--sapChart_Sequence_12_Minus2_TextColor: #fff;--sapChart_Sequence_12_Minus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_12_Minus3: #594430;--sapChart_Sequence_12_Minus3_TextColor: #fff;--sapChart_Sequence_12_Minus3_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_12_Minus4: #4c3a29;--sapChart_Sequence_12_Minus4_TextColor: #fff;--sapChart_Sequence_12_Minus4_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_12_Minus5: #3f3022;--sapChart_Sequence_12_Minus5_TextColor: #fff;--sapChart_Sequence_12_Minus5_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Bad_Plus3: #ff5454;--sapChart_Sequence_Bad_Plus3_TextColor: #000;--sapChart_Sequence_Bad_Plus3_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_Bad_Plus2: #ff2626;--sapChart_Sequence_Bad_Plus2_TextColor: #fff;--sapChart_Sequence_Bad_Plus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Bad_Plus1: #e80000;--sapChart_Sequence_Bad_Plus1_TextColor: #fff;--sapChart_Sequence_Bad_Plus1_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Bad: #ab0000;--sapChart_Sequence_Bad_TextColor: #fff;--sapChart_Sequence_Bad_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Bad_BorderColor: #ab0000;--sapChart_Sequence_Bad_Minus1: #970000;--sapChart_Sequence_Bad_Minus1_TextColor: #fff;--sapChart_Sequence_Bad_Minus1_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Bad_Minus2: #820000;--sapChart_Sequence_Bad_Minus2_TextColor: #fff;--sapChart_Sequence_Bad_Minus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Bad_Minus3: #6e0000;--sapChart_Sequence_Bad_Minus3_TextColor: #fff;--sapChart_Sequence_Bad_Minus3_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Bad_Minus4: #590000;--sapChart_Sequence_Bad_Minus4_TextColor: #fff;--sapChart_Sequence_Bad_Minus4_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Bad_Minus5: #000;--sapChart_Sequence_Bad_Minus5_TextColor: #fff;--sapChart_Sequence_Bad_Minus5_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Critical_Plus3: #990;--sapChart_Sequence_Critical_Plus3_TextColor: #000;--sapChart_Sequence_Critical_Plus3_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_Critical_Plus2: #858500;--sapChart_Sequence_Critical_Plus2_TextColor: #fff;--sapChart_Sequence_Critical_Plus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Critical_Plus1: #707000;--sapChart_Sequence_Critical_Plus1_TextColor: #fff;--sapChart_Sequence_Critical_Plus1_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Critical: #5c5c00;--sapChart_Sequence_Critical_TextColor: #fff;--sapChart_Sequence_Critical_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Critical_BorderColor: #5c5c00;--sapChart_Sequence_Critical_Minus1: #525200;--sapChart_Sequence_Critical_Minus1_TextColor: #fff;--sapChart_Sequence_Critical_Minus1_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Critical_Minus2: #484800;--sapChart_Sequence_Critical_Minus2_TextColor: #fff;--sapChart_Sequence_Critical_Minus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Critical_Minus3: #3d3d00;--sapChart_Sequence_Critical_Minus3_TextColor: #fff;--sapChart_Sequence_Critical_Minus3_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Critical_Minus4: #330;--sapChart_Sequence_Critical_Minus4_TextColor: #fff;--sapChart_Sequence_Critical_Minus4_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Critical_Minus5: #242400;--sapChart_Sequence_Critical_Minus5_TextColor: #fff;--sapChart_Sequence_Critical_Minus5_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Good_Plus3: #00a5a4;--sapChart_Sequence_Good_Plus3_TextColor: #000;--sapChart_Sequence_Good_Plus3_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_Good_Plus2: #00918f;--sapChart_Sequence_Good_Plus2_TextColor: #fff;--sapChart_Sequence_Good_Plus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Good_Plus1: #007776;--sapChart_Sequence_Good_Plus1_TextColor: #fff;--sapChart_Sequence_Good_Plus1_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Good: #006362;--sapChart_Sequence_Good_TextColor: #fff;--sapChart_Sequence_Good_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Good_BorderColor: #006362;--sapChart_Sequence_Good_Minus1: #005453;--sapChart_Sequence_Good_Minus1_TextColor: #fff;--sapChart_Sequence_Good_Minus1_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Good_Minus2: #044;--sapChart_Sequence_Good_Minus2_TextColor: #fff;--sapChart_Sequence_Good_Minus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Good_Minus3: #003535;--sapChart_Sequence_Good_Minus3_TextColor: #fff;--sapChart_Sequence_Good_Minus3_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Good_Minus4: #002625;--sapChart_Sequence_Good_Minus4_TextColor: #fff;--sapChart_Sequence_Good_Minus4_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Good_Minus5: #001c1b;--sapChart_Sequence_Good_Minus5_TextColor: #fff;--sapChart_Sequence_Good_Minus5_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Neutral_Plus3: #8d8d8d;--sapChart_Sequence_Neutral_Plus3_TextColor: #000;--sapChart_Sequence_Neutral_Plus3_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_Neutral_Plus2: #7b7b7b;--sapChart_Sequence_Neutral_Plus2_TextColor: #fff;--sapChart_Sequence_Neutral_Plus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Neutral_Plus1: #666;--sapChart_Sequence_Neutral_Plus1_TextColor: #fff;--sapChart_Sequence_Neutral_Plus1_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Neutral: #525252;--sapChart_Sequence_Neutral_TextColor: #fff;--sapChart_Sequence_Neutral_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Neutral_BorderColor: #525252;--sapChart_Sequence_Neutral_Minus1: #3e3e3e;--sapChart_Sequence_Neutral_Minus1_TextColor: #fff;--sapChart_Sequence_Neutral_Minus1_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Neutral_Minus2: #2e2e2e;--sapChart_Sequence_Neutral_Minus2_TextColor: #fff;--sapChart_Sequence_Neutral_Minus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Neutral_Minus3: #242424;--sapChart_Sequence_Neutral_Minus3_TextColor: #fff;--sapChart_Sequence_Neutral_Minus3_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Neutral_Minus4: #1a1a1a;--sapChart_Sequence_Neutral_Minus4_TextColor: #fff;--sapChart_Sequence_Neutral_Minus4_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Neutral_Minus5: #000;--sapChart_Sequence_Neutral_Minus5_TextColor: #fff;--sapChart_Sequence_Neutral_Minus5_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;}\n";
3
+ var parametersBundle_css = ":root {--sapThemeMetaData-Base-baseLib:{\"Path\": \"Base.baseLib.sap_fiori_3_hcb.css_variables\",\"PathPattern\": \"/%frameworkId%/%libId%/%themeId%/%fileId%.css\",\"Extends\": [\"sap_fiori_3\",\"sap_base_fiori\",\"baseTheme\"],\"Tags\": [\"Fiori_3\",\"HighContrast\",\"DarkColorScheme\"],\"FallbackThemeId\": \"sap_belize_hcb\",\"Engine\":{\"Name\": \"theming-engine\",\"Version\": \"15.0.8\"},\"Version\":{\"Build\": \"11.29.3.20250417070835\",\"Source\": \"11.29.3\"}};--sapBrandColor: #795100;--sapHighlightColor: #795100;--sapBaseColor: #000;--sapShellColor: #000;--sapBackgroundColor: #000;--sapFontFamily: \"72\", \"72full\", Arial, Helvetica, sans-serif;--sapFontSize: .875rem;--sapTextColor: #fff;--sapLinkColor: #fff;--sapCompanyLogo: none;--sapFavicon: none;--sapBackgroundImage: none;--sapBackgroundImageOpacity: 1;--sapBackgroundImageRepeat: false;--sapSelectedColor: #0f5d94;--sapHoverColor: #795100;--sapActiveColor: #795100;--sapHighlightTextColor: #fff;--sapTitleColor: #fff;--sapNegativeColor: #ff5e5e;--sapCriticalColor: #ffab1d;--sapPositiveColor: #99cc99;--sapInformativeColor: #fff;--sapNeutralColor: #fff;--sapNegativeElementColor: #ff5e5e;--sapCriticalElementColor: #ffab1d;--sapPositiveElementColor: #99cc99;--sapInformativeElementColor: #fff;--sapNeutralElementColor: #fff;--sapNegativeTextColor: #ff5e5e;--sapCriticalTextColor: #ffab1d;--sapPositiveTextColor: #99cc99;--sapInformativeTextColor: #fff;--sapNeutralTextColor: #fff;--sapErrorColor: #ff5e5e;--sapWarningColor: #ffab1d;--sapSuccessColor: #99cc99;--sapInformationColor: #fff;--sapErrorBackground: #000;--sapWarningBackground: #000;--sapSuccessBackground: #000;--sapInformationBackground: #000;--sapNeutralBackground: #000;--sapErrorBorderColor: #ff5e5e;--sapWarningBorderColor: #ffab1d;--sapSuccessBorderColor: #99cc99;--sapInformationBorderColor: #fff;--sapNeutralBorderColor: #fff;--sapElement_LineHeight: 2.75rem;--sapElement_Height: 2.25rem;--sapElement_BorderWidth: .0625rem;--sapElement_BorderCornerRadius: .25rem;--sapElement_Compact_LineHeight: 2rem;--sapElement_Compact_Height: 1.625rem;--sapElement_Condensed_LineHeight: 1.5rem;--sapElement_Condensed_Height: 1.375rem;--sapContent_LineHeight: 1.4;--sapContent_IconHeight: 1rem;--sapContent_IconColor: #fff;--sapContent_ContrastIconColor: #fff;--sapContent_NonInteractiveIconColor: #fff;--sapContent_MarkerIconColor: #fff;--sapContent_MarkerTextColor: #fff;--sapContent_MeasureIndicatorColor: #fff;--sapContent_Selected_MeasureIndicatorColor: #fff;--sapContent_Placeholderloading_Background: #666;--sapContent_Placeholderloading_Gradient: linear-gradient(to right, #666 0%, #666 35%, #999 50%, #666 65%, #666 100%);--sapContent_ImagePlaceholderBackground: #000;--sapContent_ImagePlaceholderForegroundColor: #fff;--sapContent_RatedColor: #fff;--sapContent_UnratedColor: #999;--sapContent_BusyColor: #fff;--sapContent_FocusColor: #fff;--sapContent_FocusStyle: dotted;--sapContent_FocusWidth: .125rem;--sapContent_ContrastFocusColor: #fff;--sapContent_ShadowColor: #fff;--sapContent_ContrastShadowColor: #fff;--sapContent_Shadow0: 0 0 0 .0625rem #fff;--sapContent_Shadow1: 0 0 1rem 0 rgba(255,255,255,.5), 0 0 0 .125rem #fff;--sapContent_Shadow2: 0 .25rem 2rem 0 rgba(255,255,255,.6), 0 0 0 .125rem #fff;--sapContent_Shadow3: 0 .625rem 4rem 0 rgba(255,255,255,.8), 0 0 0 .125rem #fff;--sapContent_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapContent_ContrastTextShadow: none;--sapContent_HeaderShadow: inset 0 -.125rem #fff;--sapContent_Interaction_Shadow: none;--sapContent_Selected_Shadow: none;--sapContent_Negative_Shadow: none;--sapContent_Critical_Shadow: none;--sapContent_Positive_Shadow: none;--sapContent_Informative_Shadow: none;--sapContent_Neutral_Shadow: none;--sapContent_SearchHighlightColor: #795100;--sapContent_HelpColor: #03b803;--sapContent_LabelColor: #fff;--sapContent_MonospaceFontFamily: \"72Mono\", \"72Monofull\", lucida console, monospace;--sapContent_MonospaceBoldFontFamily: \"72Mono-Bold\", \"72Mono-Boldfull\", lucida console, monospace;--sapContent_IconFontFamily: \"SAP-icons\";--sapContent_DisabledTextColor: #666;--sapContent_DisabledOpacity: .4;--sapContent_ContrastTextThreshold: .65;--sapContent_ContrastTextColor: #fff;--sapContent_ForegroundColor: #000;--sapContent_ForegroundBorderColor: #fff;--sapContent_ForegroundTextColor: #fff;--sapContent_BadgeBackground: #fff;--sapContent_BadgeTextColor: #000;--sapContent_BadgeBorderColor: #000;--sapContent_DragAndDropActiveColor: #03b803;--sapContent_Selected_TextColor: #fff;--sapContent_Selected_Background: #0f5d94;--sapContent_Selected_Hover_Background: #795100;--sapContent_Selected_ForegroundColor: #fff;--sapContent_ForcedColorAdjust: none;--sapContent_Lite_Shadow: 0 0 1rem 0 rgba(255,255,255,.5), 0 0 0 .125rem #fff;--sapContent_Illustrative_Color1: #9b015d;--sapContent_Illustrative_Color2: #4d82b8;--sapContent_Illustrative_Color3: #ff7f4c;--sapContent_Illustrative_Color4: #688fb7;--sapContent_Illustrative_Color5: #fff;--sapContent_Illustrative_Color6: #818f98;--sapContent_Illustrative_Color7: #101619;--sapContent_Illustrative_Color8: #d5dadd;--sapContent_Illustrative_Color9: #0899a7;--sapContent_Illustrative_Color10: #ebf8ff;--sapContent_Illustrative_Color11: #fa4f96;--sapContent_Illustrative_Color12: #00a800;--sapContent_Illustrative_Color13: #3b5b7c;--sapContent_Illustrative_Color14: #2a4259;--sapContent_Illustrative_Color15: #c35500;--sapContent_Illustrative_Color16: #8d2a00;--sapContent_Illustrative_Color17: #046c7c;--sapContent_Illustrative_Color18: #2a4259;--sapContent_Illustrative_Color19: #324e6b;--sapContent_Illustrative_Color20: #222f3b;--sapContent_Illustrative_Color21: #101619;--sapContent_Illustrative_Color22: #00144a;--sapContent_Illustrative_Color23: #d20a0a;--sapContent_Illustrative_Color24: #d094b0;--sapContent_Illustrative_Color25: #d0c1cb;--sapContent_Illustrative_Color26: #d0b863;--sapContent_Illustrative_Color27: #d0cdb3;--sapContent_Illustrative_Color28: #a93e00;--sapContent_Illustrative_Color29: #450b00;--sapContent_Illustrative_Color30: #340800;--sapContent_Illustrative_Color31: #ffab92;--sapContent_Space_S: 1rem;--sapContent_Space_M: 2rem;--sapContent_Space_L: 2rem;--sapContent_Space_XL: 3rem;--sapContent_Space_Tiny: .5rem;--sapContent_Space_Small: 1rem;--sapContent_Space_Medium: 2rem;--sapContent_Space_Large: 3rem;--sapContent_Margin_Tiny: 0 0 1rem;--sapContent_Margin_Small: 1rem;--sapContent_Margin_Medium: 1rem 2rem;--sapContent_Margin_Large: 1rem 3rem;--sapContent_Padding_S: 0rem;--sapContent_Padding_M: 2rem;--sapContent_Padding_L: 2rem;--sapContent_Padding_XL: 3rem;--sapContent_Gap: 1rem;--sapContent_Success_HeaderShadow: inset 0 -.125rem #99cc99;--sapContent_Warning_HeaderShadow: inset 0 -.125rem #ffab1d;--sapContent_Error_HeaderShadow: inset 0 -.125rem #ff5e5e;--sapContent_Information_HeaderShadow: inset 0 -.125rem #fff;--sapFontLightFamily: \"72-Light\", \"72-Lightfull\", \"72\", \"72full\", Arial, Helvetica, sans-serif;--sapFontBoldFamily: \"72-Bold\", \"72-Boldfull\", \"72\", \"72full\", Arial, Helvetica, sans-serif;--sapFontSemiboldFamily: \"72-Semibold\", \"72-Semiboldfull\", \"72\", \"72full\", Arial, Helvetica, sans-serif;--sapFontSemiboldDuplexFamily: \"72-SemiboldDuplex\", \"72-SemiboldDuplexfull\", \"72\", \"72full\", Arial, Helvetica, sans-serif;--sapFontBlackFamily: \"72Black\", \"72Blackfull\",\"72\", \"72full\", Arial, Helvetica, sans-serif;--sapFontHeaderFamily: \"72\", \"72full\", Arial, Helvetica, sans-serif;--sapFontSmallSize: .75rem;--sapFontLargeSize: 1rem;--sapFontHeader1Size: 2.25rem;--sapFontHeader2Size: 1.5rem;--sapFontHeader3Size: 1.25rem;--sapFontHeader4Size: 1.125rem;--sapFontHeader5Size: 1rem;--sapFontHeader6Size: .875rem;--sapLink_TextDecoration: underline;--sapLink_Hover_Color: #fff;--sapLink_Hover_TextDecoration: none;--sapLink_Active_Color: #fff;--sapLink_Active_TextDecoration: underline;--sapLink_Visited_Color: #fff;--sapLink_InvertedColor: #fff;--sapLink_SubtleColor: #fff;--sapShell_Background: #000;--sapShell_BackgroundImage: linear-gradient(to bottom, #000, #000);--sapShell_BackgroundImageOpacity: 1;--sapShell_BackgroundImageRepeat: false;--sapShell_BorderColor: #fff;--sapShell_TextColor: #fff;--sapShell_InteractiveBackground: #000;--sapShell_InteractiveTextColor: #fff;--sapShell_InteractiveBorderColor: #fff;--sapShell_GroupTitleTextColor: #fff;--sapShell_GroupTitleTextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapShell_Hover_Background: #795100;--sapShell_Active_Background: #795100;--sapShell_Active_TextColor: #fff;--sapShell_Selected_Background: #0f5d94;--sapShell_Selected_TextColor: #fff;--sapShell_Selected_Hover_Background: #795100;--sapShell_Favicon: none;--sapShell_Navigation_Background: #000;--sapShell_Navigation_Hover_Background: #795100;--sapShell_Navigation_SelectedColor: #fff;--sapShell_Navigation_Selected_TextColor: #fff;--sapShell_Navigation_TextColor: #fff;--sapShell_Navigation_Active_TextColor: #fff;--sapShell_Navigation_Active_Background: #795100;--sapShell_Shadow: 0 .125rem 0 0 #fff;--sapShell_NegativeColor: #ff5e5e;--sapShell_CriticalColor: #ffab1d;--sapShell_PositiveColor: #99cc99;--sapShell_InformativeColor: #fff;--sapShell_NeutralColor: #fff;--sapShell_Assistant_ForegroundColor: #fff;--sapShell_SubBrand_TextColor: #fff;--sapShell_Category_1_Background: #000;--sapShell_Category_1_BorderColor: #6bd3ff;--sapShell_Category_1_TextColor: #fff;--sapShell_Category_1_TextShadow: none;--sapShell_Category_2_Background: #000;--sapShell_Category_2_BorderColor: #db9292;--sapShell_Category_2_TextColor: #fff;--sapShell_Category_2_TextShadow: none;--sapShell_Category_3_Background: #000;--sapShell_Category_3_BorderColor: #ffc847;--sapShell_Category_3_TextColor: #fff;--sapShell_Category_3_TextShadow: none;--sapShell_Category_4_Background: #000;--sapShell_Category_4_BorderColor: #bb86b0;--sapShell_Category_4_TextColor: #fff;--sapShell_Category_4_TextShadow: none;--sapShell_Category_5_Background: #000;--sapShell_Category_5_BorderColor: #cdaf9d;--sapShell_Category_5_TextColor: #fff;--sapShell_Category_5_TextShadow: none;--sapShell_Category_6_Background: #000;--sapShell_Category_6_BorderColor: #7fc6c6;--sapShell_Category_6_TextColor: #fff;--sapShell_Category_6_TextShadow: none;--sapShell_Category_7_Background: #000;--sapShell_Category_7_BorderColor: #e269c9;--sapShell_Category_7_TextColor: #fff;--sapShell_Category_7_TextShadow: none;--sapShell_Category_8_Background: #000;--sapShell_Category_8_BorderColor: #b2e484;--sapShell_Category_8_TextColor: #fff;--sapShell_Category_8_TextShadow: none;--sapShell_Category_9_Background: #000;--sapShell_Category_9_BorderColor: #4db1ff;--sapShell_Category_9_TextColor: #fff;--sapShell_Category_9_TextShadow: none;--sapShell_Category_10_Background: #000;--sapShell_Category_10_BorderColor: #b0bcc5;--sapShell_Category_10_TextColor: #fff;--sapShell_Category_10_TextShadow: none;--sapShell_Category_11_Background: #000;--sapShell_Category_11_BorderColor: #ff8787;--sapShell_Category_11_TextColor: #fff;--sapShell_Category_11_TextShadow: none;--sapShell_Category_12_Background: #000;--sapShell_Category_12_BorderColor: #d3b6ff;--sapShell_Category_12_TextColor: #fff;--sapShell_Category_12_TextShadow: none;--sapShell_Category_13_Background: #000;--sapShell_Category_13_BorderColor: #fdcef0;--sapShell_Category_13_TextColor: #fff;--sapShell_Category_13_TextShadow: none;--sapShell_Category_14_Background: #000;--sapShell_Category_14_BorderColor: #a4eeee;--sapShell_Category_14_TextColor: #fff;--sapShell_Category_14_TextShadow: none;--sapShell_Category_15_Background: #000;--sapShell_Category_15_BorderColor: #eaecee;--sapShell_Category_15_TextColor: #fff;--sapShell_Category_15_TextShadow: none;--sapShell_Category_16_Background: #000;--sapShell_Category_16_BorderColor: #b2e484;--sapShell_Category_16_TextColor: #fff;--sapShell_Category_16_TextShadow: none;--sapShell_Space_S: .5rem;--sapShell_Space_M: 2rem;--sapShell_Space_L: 2rem;--sapShell_Space_XL: 3rem;--sapShell_Gap_S: .5rem;--sapShell_Gap_M: 1rem;--sapShell_Gap_L: 1rem;--sapShell_Gap_XL: 1rem;--sapShell_GroupGap_S: 2rem;--sapShell_GroupGap_M: 3rem;--sapShell_GroupGap_L: 3rem;--sapShell_GroupGap_XL: 3rem;--sapAssistant_Color1: #fff;--sapAssistant_Color2: #fff;--sapAssistant_BackgroundGradient: linear-gradient(#000, #000);--sapAssistant_Background: #000;--sapAssistant_BorderColor: #fff;--sapAssistant_TextColor: #fff;--sapAssistant_Hover_Background: #795100;--sapAssistant_Hover_BorderColor: #fff;--sapAssistant_Hover_TextColor: #fff;--sapAssistant_Active_Background: #795100;--sapAssistant_Active_BorderColor: #fff;--sapAssistant_Active_TextColor: #fff;--sapAssistant_Question_Background: #000;--sapAssistant_Question_BorderColor: #fff;--sapAssistant_Question_TextColor: #fff;--sapAssistant_Answer_Background: #585858;--sapAssistant_Answer_BorderColor: #fff;--sapAssistant_Answer_TextColor: #fff;--sapAvatar_1_Background: #000;--sapAvatar_1_BorderColor: #fff;--sapAvatar_1_TextColor: #fff;--sapAvatar_1_Hover_Background: #795100;--sapAvatar_2_Background: #000;--sapAvatar_2_BorderColor: #fff;--sapAvatar_2_TextColor: #fff;--sapAvatar_2_Hover_Background: #795100;--sapAvatar_3_Background: #000;--sapAvatar_3_BorderColor: #fff;--sapAvatar_3_TextColor: #fff;--sapAvatar_3_Hover_Background: #795100;--sapAvatar_4_Background: #000;--sapAvatar_4_BorderColor: #fff;--sapAvatar_4_TextColor: #fff;--sapAvatar_4_Hover_Background: #795100;--sapAvatar_5_Background: #000;--sapAvatar_5_BorderColor: #fff;--sapAvatar_5_TextColor: #fff;--sapAvatar_5_Hover_Background: #795100;--sapAvatar_6_Background: #000;--sapAvatar_6_BorderColor: #fff;--sapAvatar_6_TextColor: #fff;--sapAvatar_6_Hover_Background: #795100;--sapAvatar_7_Background: #000;--sapAvatar_7_BorderColor: #fff;--sapAvatar_7_TextColor: #fff;--sapAvatar_7_Hover_Background: #795100;--sapAvatar_8_Background: #000;--sapAvatar_8_BorderColor: #fff;--sapAvatar_8_TextColor: #fff;--sapAvatar_8_Hover_Background: #795100;--sapAvatar_9_Background: #000;--sapAvatar_9_BorderColor: #fff;--sapAvatar_9_TextColor: #fff;--sapAvatar_9_Hover_Background: #795100;--sapAvatar_10_Background: #000;--sapAvatar_10_BorderColor: #fff;--sapAvatar_10_TextColor: #fff;--sapAvatar_10_Hover_Background: #795100;--sapAvatar_Lite_BorderColor: #fff;--sapAvatar_Lite_Background: #000;--sapAvatar_Hover_BorderColor: #fff;--sapButton_Background: #000;--sapButton_BorderColor: #fff;--sapButton_BorderWidth: .0625rem;--sapButton_BorderCornerRadius: .375rem;--sapButton_TextColor: #fff;--sapButton_FontFamily: \"72\", \"72full\", Arial, Helvetica, sans-serif;--sapButton_Hover_Background: #795100;--sapButton_Hover_BorderColor: #fff;--sapButton_Hover_TextColor: #fff;--sapButton_IconColor: #fff;--sapButton_Active_Background: #795100;--sapButton_Active_BorderColor: #fff;--sapButton_Active_TextColor: #fff;--sapButton_Emphasized_Background: #000;--sapButton_Emphasized_BorderColor: #fff;--sapButton_Emphasized_BorderWidth: .125rem;--sapButton_Emphasized_TextColor: #fff;--sapButton_Emphasized_FontFamily: \"72-Bold\", \"72-Boldfull\", \"72\", \"72full\", Arial, Helvetica, sans-serif;--sapButton_Emphasized_Hover_Background: #795100;--sapButton_Emphasized_Hover_BorderColor: #fff;--sapButton_Emphasized_Hover_TextColor: #fff;--sapButton_Emphasized_Active_Background: #795100;--sapButton_Emphasized_Active_BorderColor: #fff;--sapButton_Emphasized_Active_TextColor: #fff;--sapButton_Emphasized_TextShadow: transparent;--sapButton_Emphasized_FontWeight: bold;--sapButton_Reject_Background: #000;--sapButton_Reject_BorderColor: #fff;--sapButton_Reject_TextColor: #fff;--sapButton_Reject_Hover_Background: #795100;--sapButton_Reject_Hover_BorderColor: #fff;--sapButton_Reject_Hover_TextColor: #fff;--sapButton_Reject_Active_Background: #795100;--sapButton_Reject_Active_BorderColor: #fff;--sapButton_Reject_Active_TextColor: #fff;--sapButton_Reject_Selected_Background: #0f5d94;--sapButton_Reject_Selected_BorderColor: #fff;--sapButton_Reject_Selected_TextColor: #fff;--sapButton_Reject_Selected_Hover_Background: #795100;--sapButton_Reject_Selected_Hover_BorderColor: #fff;--sapButton_Accept_Background: #000;--sapButton_Accept_BorderColor: #fff;--sapButton_Accept_TextColor: #fff;--sapButton_Accept_Hover_Background: #795100;--sapButton_Accept_Hover_BorderColor: #fff;--sapButton_Accept_Hover_TextColor: #fff;--sapButton_Accept_Active_Background: #795100;--sapButton_Accept_Active_BorderColor: #fff;--sapButton_Accept_Active_TextColor: #fff;--sapButton_Accept_Selected_Background: #0f5d94;--sapButton_Accept_Selected_BorderColor: #fff;--sapButton_Accept_Selected_TextColor: #fff;--sapButton_Accept_Selected_Hover_Background: #795100;--sapButton_Accept_Selected_Hover_BorderColor: #fff;--sapButton_Lite_Background: #000;--sapButton_Lite_BorderColor: #fff;--sapButton_Lite_TextColor: #fff;--sapButton_Lite_Hover_Background: #795100;--sapButton_Lite_Hover_BorderColor: #fff;--sapButton_Lite_Hover_TextColor: #fff;--sapButton_Lite_Active_Background: #795100;--sapButton_Lite_Active_BorderColor: #fff;--sapButton_Selected_Background: #0f5d94;--sapButton_Selected_BorderColor: #fff;--sapButton_Selected_TextColor: #fff;--sapButton_Selected_Hover_Background: #795100;--sapButton_Selected_Hover_BorderColor: #fff;--sapButton_Attention_Background: #000;--sapButton_Attention_BorderColor: #fff;--sapButton_Attention_TextColor: #fff;--sapButton_Attention_Hover_Background: #795100;--sapButton_Attention_Hover_BorderColor: #fff;--sapButton_Attention_Hover_TextColor: #fff;--sapButton_Attention_Active_Background: #795100;--sapButton_Attention_Active_BorderColor: #fff;--sapButton_Attention_Active_TextColor: #fff;--sapButton_Attention_Selected_Background: #0f5d94;--sapButton_Attention_Selected_BorderColor: #fff;--sapButton_Attention_Selected_TextColor: #fff;--sapButton_Attention_Selected_Hover_Background: #795100;--sapButton_Attention_Selected_Hover_BorderColor: #fff;--sapButton_Negative_Background: #000;--sapButton_Negative_BorderColor: #fff;--sapButton_Negative_TextColor: #fff;--sapButton_Negative_Hover_Background: #795100;--sapButton_Negative_Hover_BorderColor: #fff;--sapButton_Negative_Hover_TextColor: #fff;--sapButton_Negative_Active_Background: #795100;--sapButton_Negative_Active_BorderColor: #fff;--sapButton_Negative_Active_TextColor: #fff;--sapButton_Critical_Background: #000;--sapButton_Critical_BorderColor: #fff;--sapButton_Critical_TextColor: #fff;--sapButton_Critical_Hover_Background: #795100;--sapButton_Critical_Hover_BorderColor: #fff;--sapButton_Critical_Hover_TextColor: #fff;--sapButton_Critical_Active_Background: #795100;--sapButton_Critical_Active_BorderColor: #fff;--sapButton_Critical_Active_TextColor: #fff;--sapButton_Success_Background: #000;--sapButton_Success_BorderColor: #fff;--sapButton_Success_TextColor: #fff;--sapButton_Success_Hover_Background: #795100;--sapButton_Success_Hover_BorderColor: #fff;--sapButton_Success_Hover_TextColor: #fff;--sapButton_Success_Active_Background: #795100;--sapButton_Success_Active_BorderColor: #fff;--sapButton_Success_Active_TextColor: #fff;--sapButton_Information_Background: #000;--sapButton_Information_BorderColor: #fff;--sapButton_Information_TextColor: #fff;--sapButton_Information_Hover_Background: #795100;--sapButton_Information_Hover_BorderColor: #fff;--sapButton_Information_Hover_TextColor: #fff;--sapButton_Information_Active_Background: #795100;--sapButton_Information_Active_BorderColor: #fff;--sapButton_Information_Active_TextColor: #fff;--sapButton_Neutral_Background: #000;--sapButton_Neutral_BorderColor: #fff;--sapButton_Neutral_TextColor: #fff;--sapButton_Neutral_Hover_Background: #795100;--sapButton_Neutral_Hover_BorderColor: #fff;--sapButton_Neutral_Hover_TextColor: #fff;--sapButton_Neutral_Active_Background: #795100;--sapButton_Neutral_Active_BorderColor: #fff;--sapButton_Neutral_Active_TextColor: #fff;--sapButton_Track_Background: #000;--sapButton_Track_BorderColor: #fff;--sapButton_Track_TextColor: #fff;--sapButton_Track_Hover_Background: #795100;--sapButton_Track_Hover_BorderColor: #fff;--sapButton_Track_Selected_Background: #0f5d94;--sapButton_Track_Selected_BorderColor: #fff;--sapButton_Track_Selected_TextColor: #fff;--sapButton_Track_Selected_Hover_Background: #795100;--sapButton_Track_Selected_Hover_BorderColor: #fff;--sapButton_Handle_Background: #000;--sapButton_Handle_BorderColor: #fff;--sapButton_Handle_TextColor: #fff;--sapButton_Handle_Hover_Background: #795100;--sapButton_Handle_Hover_BorderColor: #fff;--sapButton_Handle_Selected_Background: #0f5d94;--sapButton_Handle_Selected_BorderColor: #fff;--sapButton_Handle_Selected_TextColor: #fff;--sapButton_Handle_Selected_Hover_Background: #795100;--sapButton_Handle_Selected_Hover_BorderColor: #fff;--sapButton_Track_Negative_Background: #000;--sapButton_Track_Negative_BorderColor: #ff5e5e;--sapButton_Track_Negative_TextColor: #fff;--sapButton_Track_Negative_Hover_Background: #795100;--sapButton_Track_Negative_Hover_BorderColor: #ff5e5e;--sapButton_Handle_Negative_Background: #000;--sapButton_Handle_Negative_BorderColor: #ff5e5e;--sapButton_Handle_Negative_TextColor: #fff;--sapButton_Handle_Negative_Hover_Background: #795100;--sapButton_Handle_Negative_Hover_BorderColor: #ff5e5e;--sapButton_Track_Positive_Background: #000;--sapButton_Track_Positive_BorderColor: #99cc99;--sapButton_Track_Positive_TextColor: #fff;--sapButton_Track_Positive_Hover_Background: #000;--sapButton_Track_Positive_Hover_BorderColor: #fff;--sapButton_Handle_Positive_Background: #000;--sapButton_Handle_Positive_BorderColor: #99cc99;--sapButton_Handle_Positive_TextColor: #fff;--sapButton_Handle_Positive_Hover_Background: #795100;--sapButton_Handle_Positive_Hover_BorderColor: #99cc99;--sapButton_TokenBackground: #000;--sapButton_TokenBorderColor: #fff;--sapButton_TokenBorderCornerRadius: .25rem;--sapButton_Selected_TokenBorderWidth: 0;--sapButton_ReadOnly_TokenBackground: #585858;--sapButton_Segment_BorderCornerRadius: 0;--sapField_Background: #000;--sapField_BackgroundStyle: none;--sapField_TextColor: #fff;--sapField_PlaceholderTextColor: #999;--sapField_BorderColor: #fff;--sapField_HelpBackground: #000;--sapField_BorderWidth: .125rem;--sapField_BorderStyle: solid;--sapField_BorderCornerRadius: 0;--sapField_Shadow: none;--sapField_Hover_Background: #000;--sapField_Hover_BackgroundStyle: none;--sapField_Hover_BorderColor: #fff;--sapField_Hover_HelpBackground: #000;--sapField_Hover_Shadow: none;--sapField_Hover_InvalidShadow: none;--sapField_Hover_WarningShadow: none;--sapField_Hover_SuccessShadow: none;--sapField_Hover_InformationShadow: none;--sapField_Active_BorderColor: #fff;--sapField_Focus_Background: #000;--sapField_Focus_BorderColor: #fff;--sapField_Focus_HelpBackground: #000;--sapField_ReadOnly_Background: #585858;--sapField_ReadOnly_BackgroundStyle: none;--sapField_ReadOnly_BorderColor: #fff;--sapField_ReadOnly_BorderStyle: solid;--sapField_ReadOnly_HelpBackground: #585858;--sapField_RequiredColor: #fff;--sapField_InvalidColor: #fff;--sapField_InvalidBackground: #795100;--sapField_InvalidBackgroundStyle: none;--sapField_InvalidBorderWidth: .125rem;--sapField_InvalidBorderStyle: dashed;--sapField_InvalidShadow: none;--sapField_WarningColor: #fff;--sapField_WarningBackground: #000;--sapField_WarningBackgroundStyle: none;--sapField_WarningBorderWidth: .125rem;--sapField_WarningBorderStyle: dashed;--sapField_WarningShadow: none;--sapField_SuccessColor: #fff;--sapField_SuccessBackground: #000;--sapField_SuccessBackgroundStyle: none;--sapField_SuccessBorderWidth: .125rem;--sapField_SuccessBorderStyle: solid;--sapField_SuccessShadow: none;--sapField_InformationColor: #fff;--sapField_InformationBackground: #000;--sapField_InformationBackgroundStyle: none;--sapField_InformationBorderWidth: .0625rem;--sapField_InformationBorderStyle: dashed;--sapField_InformationShadow: none;--sapField_Selector_Hover_Background: #0f5d94;--sapField_Selector_Hover_InvalidBackground: #795100;--sapField_Selector_Hover_WarningBackground: #000;--sapField_Selector_Hover_SuccessBackground: #000;--sapField_Selector_Hover_InformationBackground: #000;--sapField_Picker_BorderColor: #000;--sapField_Picker_BorderWidth: .125rem;--sapField_Selector_BorderStyle: solid;--sapField_Selector_ReadOnly_BorderStyle: solid;--sapField_Selector_InvalidBorderStyle: dashed;--sapField_Selector_WarningBorderStyle: dashed;--sapField_Selector_SuccessBorderStyle: solid;--sapField_Selector_InformationBorderStyle: dashed;--sapGroup_TitleBorderWidth: .125rem;--sapGroup_TitleBackground: #000;--sapGroup_TitleBorderColor: #fff;--sapGroup_TitleTextColor: #fff;--sapGroup_Title_FontSize: 1.125rem;--sapGroup_ContentBackground: #000;--sapGroup_ContentBorderColor: #fff;--sapGroup_BorderWidth: .0625rem;--sapGroup_BorderCornerRadius: 0;--sapGroup_FooterBackground: #000;--sapToolbar_Background: #000;--sapToolbar_SeparatorColor: #fff;--sapList_HeaderBackground: #000;--sapList_HeaderBorderColor: #fff;--sapList_HeaderTextColor: #fff;--sapList_BorderColor: #999;--sapList_BorderWidth: .0625rem;--sapList_TextColor: #fff;--sapList_Active_TextColor: #fff;--sapList_Active_Background: #795100;--sapList_SelectionBackgroundColor: #0f5d94;--sapList_SelectionBorderColor: #fff;--sapList_Hover_SelectionBackground: #795100;--sapList_Background: #000;--sapList_Hover_Background: #795100;--sapList_AlternatingBackground: #262626;--sapList_GroupHeaderBackground: #000;--sapList_GroupHeaderBorderColor: #fff;--sapList_GroupHeaderTextColor: #fff;--sapList_TableGroupHeaderBackground: #585858;--sapList_TableGroupHeaderBorderColor: #fff;--sapList_TableGroupHeaderTextColor: #fff;--sapList_FooterBackground: #000;--sapList_FooterTextColor: #fff;--sapList_TableFooterBorder: #fff;--sapList_TableFixedBorderColor: #fff;--sapList_TableFixedColumnBorderWidth: .1875rem;--sapList_TableFixedRowBorderWidth: .1875rem;--sapMessage_BorderWidth: .125rem;--sapMessage_ErrorBorderColor: #ff5e5e;--sapMessage_WarningBorderColor: #ffab1d;--sapMessage_SuccessBorderColor: #99cc99;--sapMessage_InformationBorderColor: #fff;--sapMessage_Button_Hover_Background: #795100;--sapPopover_BorderCornerRadius: .25rem;--sapProgress_Background: #000;--sapProgress_BorderColor: #fff;--sapProgress_TextColor: #fff;--sapProgress_FontSize: .75rem;--sapProgress_NegativeBackground: #000;--sapProgress_NegativeBorderColor: #fff;--sapProgress_NegativeTextColor: #fff;--sapProgress_CriticalBackground: #000;--sapProgress_CriticalBorderColor: #fff;--sapProgress_CriticalTextColor: #fff;--sapProgress_PositiveBackground: #000;--sapProgress_PositiveBorderColor: #fff;--sapProgress_PositiveTextColor: #fff;--sapProgress_InformationBackground: #000;--sapProgress_InformationBorderColor: #fff;--sapProgress_InformationTextColor: #fff;--sapProgress_Value_Background: #795100;--sapProgress_Value_BorderColor: #fff;--sapProgress_Value_TextColor: #fff;--sapProgress_Value_NegativeBackground: #795100;--sapProgress_Value_NegativeBorderColor: #fff;--sapProgress_Value_NegativeTextColor: #fff;--sapProgress_Value_CriticalBackground: #795100;--sapProgress_Value_CriticalBorderColor: #fff;--sapProgress_Value_CriticalTextColor: #fff;--sapProgress_Value_PositiveBackground: #795100;--sapProgress_Value_PositiveBorderColor: #fff;--sapProgress_Value_PositiveTextColor: #fff;--sapProgress_Value_InformationBackground: #795100;--sapProgress_Value_InformationBorderColor: #fff;--sapProgress_Value_InformationTextColor: #fff;--sapScrollBar_FaceColor: #999;--sapScrollBar_TrackColor: #000;--sapScrollBar_BorderColor: #999;--sapScrollBar_SymbolColor: #fff;--sapScrollBar_Dimension: .75rem;--sapScrollBar_Hover_FaceColor: #fff;--sapSlider_Background: #000;--sapSlider_BorderColor: #fff;--sapSlider_Selected_Background: #0f5d94;--sapSlider_Selected_BorderColor: #fff;--sapSlider_Selected_Dimension: 111px;--sapSlider_HandleBackground: #000;--sapSlider_HandleBorderColor: #fff;--sapSlider_RangeHandleBackground: #000;--sapSlider_Hover_HandleBackground: #795100;--sapSlider_Hover_HandleBorderColor: #fff;--sapSlider_Hover_RangeHandleBackground: #795100;--sapSlider_Active_HandleBackground: #795100;--sapSlider_Active_HandleBorderColor: #fff;--sapSlider_Active_RangeHandleBackground: transparent;--sapPageHeader_Background: #000;--sapPageHeader_BorderColor: #fff;--sapPageHeader_TextColor: #fff;--sapPageFooter_Background: #000;--sapPageFooter_BorderColor: #fff;--sapPageFooter_TextColor: #fff;--sapInfobar_Background: #000;--sapInfobar_Hover_Background: #795100;--sapInfobar_Active_Background: #795100;--sapInfobar_NonInteractive_Background: #585858;--sapInfobar_TextColor: #fff;--sapObjectHeader_Background: #000;--sapObjectHeader_Hover_Background: #795100;--sapObjectHeader_BorderColor: #fff;--sapObjectHeader_Title_TextColor: #fff;--sapObjectHeader_Title_FontSize: 1.25rem;--sapObjectHeader_Title_SnappedFontSize: 1.25rem;--sapObjectHeader_Title_FontFamily: \"72\", \"72full\", Arial, Helvetica, sans-serif;--sapObjectHeader_Subtitle_TextColor: #fff;--sapBlockLayer_Background: #000;--sapBlockLayer_Opacity: .3;--sapTab_TextColor: #fff;--sapTab_ForegroundColor: #fff;--sapTab_IconColor: #fff;--sapTab_Background: #000;--sapTab_Selected_TextColor: #fff;--sapTab_Selected_IconColor: #fff;--sapTab_Selected_Background: #0f5d94;--sapTab_Selected_Indicator_Dimension: .3125rem;--sapTab_Positive_TextColor: #fff;--sapTab_Positive_ForegroundColor: #fff;--sapTab_Positive_IconColor: #fff;--sapTab_Positive_Selected_TextColor: #fff;--sapTab_Positive_Selected_IconColor: #fff;--sapTab_Positive_Selected_Background: #0f5d94;--sapTab_Negative_TextColor: #fff;--sapTab_Negative_ForegroundColor: #fff;--sapTab_Negative_IconColor: #fff;--sapTab_Negative_Selected_TextColor: #fff;--sapTab_Negative_Selected_IconColor: #fff;--sapTab_Negative_Selected_Background: #0f5d94;--sapTab_Critical_TextColor: #fff;--sapTab_Critical_ForegroundColor: #fff;--sapTab_Critical_IconColor: #fff;--sapTab_Critical_Selected_TextColor: #fff;--sapTab_Critical_Selected_IconColor: #fff;--sapTab_Critical_Selected_Background: #0f5d94;--sapTab_Neutral_TextColor: #fff;--sapTab_Neutral_ForegroundColor: #fff;--sapTab_Neutral_IconColor: #fff;--sapTab_Neutral_Selected_TextColor: #fff;--sapTab_Neutral_Selected_IconColor: #fff;--sapTab_Neutral_Selected_Background: #0f5d94;--sapTile_Background: #000;--sapTile_Hover_Background: #795100;--sapTile_Active_Background: #795100;--sapTile_BorderColor: #fff;--sapTile_BorderCornerRadius: .25rem;--sapTile_TitleTextColor: #fff;--sapTile_TextColor: #fff;--sapTile_IconColor: #fff;--sapTile_SeparatorColor: #fff;--sapTile_Interactive_BorderColor: #fff;--sapTile_OverlayBackground: #000;--sapTile_OverlayForegroundColor: #fff;--sapTile_Hover_ContentBackground: #795100;--sapTile_Active_ContentBackground: #795100;--sapAccentColor1: #ffc847;--sapAccentColor2: #ed884a;--sapAccentColor3: #db9292;--sapAccentColor4: #e269c9;--sapAccentColor5: #8ca7d5;--sapAccentColor6: #6bd3ff;--sapAccentColor7: #7fc6c6;--sapAccentColor8: #b2e484;--sapAccentColor9: #b995e0;--sapAccentColor10: #b0bcc5;--sapAccentBackgroundColor1: #fff3b8;--sapAccentBackgroundColor2: #ffd0e7;--sapAccentBackgroundColor3: #fff0fa;--sapAccentBackgroundColor4: #ffdcf3;--sapAccentBackgroundColor5: #ded3ff;--sapAccentBackgroundColor6: #d1efff;--sapAccentBackgroundColor7: #c2fcee;--sapAccentBackgroundColor8: #ebf5cb;--sapAccentBackgroundColor9: #dafdf5;--sapAccentBackgroundColor10: #eaecee;--sapIndicationColor_1: #ff5e5e;--sapIndicationColor_1_Background: #000;--sapIndicationColor_1_BorderColor: #fff;--sapIndicationColor_1_TextColor: #fff;--sapIndicationColor_1_Hover_Background: #795100;--sapIndicationColor_1_Active_Background: #795100;--sapIndicationColor_1_Active_BorderColor: #fff;--sapIndicationColor_1_Active_TextColor: #fff;--sapIndicationColor_1_Selected_Background: #0f5d94;--sapIndicationColor_1_Selected_BorderColor: #fff;--sapIndicationColor_1_Selected_TextColor: #fff;--sapIndicationColor_1b: #ff5e5e;--sapIndicationColor_1b_TextColor: #fff;--sapIndicationColor_1b_Background: #000;--sapIndicationColor_1b_BorderColor: #fff;--sapIndicationColor_1b_Hover_Background: #795100;--sapIndicationColor_2: #ff9191;--sapIndicationColor_2_Background: #000;--sapIndicationColor_2_BorderColor: #fff;--sapIndicationColor_2_TextColor: #fff;--sapIndicationColor_2_Hover_Background: #795100;--sapIndicationColor_2_Active_Background: #795100;--sapIndicationColor_2_Active_BorderColor: #fff;--sapIndicationColor_2_Active_TextColor: #fff;--sapIndicationColor_2_Selected_Background: #0f5d94;--sapIndicationColor_2_Selected_BorderColor: #fff;--sapIndicationColor_2_Selected_TextColor: #fff;--sapIndicationColor_2b: #ff9191;--sapIndicationColor_2b_TextColor: #fff;--sapIndicationColor_2b_Background: #000;--sapIndicationColor_2b_BorderColor: #fff;--sapIndicationColor_2b_Hover_Background: #795100;--sapIndicationColor_3: #ffab1d;--sapIndicationColor_3_Background: #000;--sapIndicationColor_3_BorderColor: #fff;--sapIndicationColor_3_TextColor: #fff;--sapIndicationColor_3_Hover_Background: #795100;--sapIndicationColor_3_Active_Background: #795100;--sapIndicationColor_3_Active_BorderColor: #fff;--sapIndicationColor_3_Active_TextColor: #fff;--sapIndicationColor_3_Selected_Background: #0f5d94;--sapIndicationColor_3_Selected_BorderColor: #fff;--sapIndicationColor_3_Selected_TextColor: #fff;--sapIndicationColor_3b: #ffab1d;--sapIndicationColor_3b_TextColor: #fff;--sapIndicationColor_3b_Background: #000;--sapIndicationColor_3b_BorderColor: #fff;--sapIndicationColor_3b_Hover_Background: #795100;--sapIndicationColor_4: #99cc99;--sapIndicationColor_4_Background: #000;--sapIndicationColor_4_BorderColor: #fff;--sapIndicationColor_4_TextColor: #fff;--sapIndicationColor_4_Hover_Background: #795100;--sapIndicationColor_4_Active_Background: #795100;--sapIndicationColor_4_Active_BorderColor: #fff;--sapIndicationColor_4_Active_TextColor: #fff;--sapIndicationColor_4_Selected_Background: #0f5d94;--sapIndicationColor_4_Selected_BorderColor: #fff;--sapIndicationColor_4_Selected_TextColor: #fff;--sapIndicationColor_4b: #99cc99;--sapIndicationColor_4b_TextColor: #fff;--sapIndicationColor_4b_Background: #000;--sapIndicationColor_4b_BorderColor: #fff;--sapIndicationColor_4b_Hover_Background: #795100;--sapIndicationColor_5: #6bd3ff;--sapIndicationColor_5_Background: #000;--sapIndicationColor_5_BorderColor: #fff;--sapIndicationColor_5_TextColor: #fff;--sapIndicationColor_5_Hover_Background: #795100;--sapIndicationColor_5_Active_Background: #795100;--sapIndicationColor_5_Active_BorderColor: #fff;--sapIndicationColor_5_Active_TextColor: #fff;--sapIndicationColor_5_Selected_Background: #0f5d94;--sapIndicationColor_5_Selected_BorderColor: #fff;--sapIndicationColor_5_Selected_TextColor: #fff;--sapIndicationColor_5b: #6bd3ff;--sapIndicationColor_5b_TextColor: #fff;--sapIndicationColor_5b_Background: #000;--sapIndicationColor_5b_BorderColor: #fff;--sapIndicationColor_5b_Hover_Background: #795100;--sapIndicationColor_6: #7fc6c6;--sapIndicationColor_6_Background: #000;--sapIndicationColor_6_BorderColor: #fff;--sapIndicationColor_6_TextColor: #fff;--sapIndicationColor_6_Hover_Background: #795100;--sapIndicationColor_6_Active_Background: #795100;--sapIndicationColor_6_Active_BorderColor: #fff;--sapIndicationColor_6_Active_TextColor: #fff;--sapIndicationColor_6_Selected_Background: #0f5d94;--sapIndicationColor_6_Selected_BorderColor: #fff;--sapIndicationColor_6_Selected_TextColor: #fff;--sapIndicationColor_6b: #7fc6c6;--sapIndicationColor_6b_TextColor: #fff;--sapIndicationColor_6b_Background: #000;--sapIndicationColor_6b_BorderColor: #fff;--sapIndicationColor_6b_Hover_Background: #795100;--sapIndicationColor_7: #b995e0;--sapIndicationColor_7_Background: #000;--sapIndicationColor_7_BorderColor: #fff;--sapIndicationColor_7_TextColor: #fff;--sapIndicationColor_7_Hover_Background: #795100;--sapIndicationColor_7_Active_Background: #795100;--sapIndicationColor_7_Active_BorderColor: #fff;--sapIndicationColor_7_Active_TextColor: #fff;--sapIndicationColor_7_Selected_Background: #0f5d94;--sapIndicationColor_7_Selected_BorderColor: #fff;--sapIndicationColor_7_Selected_TextColor: #fff;--sapIndicationColor_7b: #b995e0;--sapIndicationColor_7b_TextColor: #fff;--sapIndicationColor_7b_Background: #000;--sapIndicationColor_7b_BorderColor: #fff;--sapIndicationColor_7b_Hover_Background: #795100;--sapIndicationColor_8: #e269c9;--sapIndicationColor_8_Background: #000;--sapIndicationColor_8_BorderColor: #fff;--sapIndicationColor_8_TextColor: #fff;--sapIndicationColor_8_Hover_Background: #795100;--sapIndicationColor_8_Active_Background: #795100;--sapIndicationColor_8_Active_BorderColor: #fff;--sapIndicationColor_8_Active_TextColor: #fff;--sapIndicationColor_8_Selected_Background: #0f5d94;--sapIndicationColor_8_Selected_BorderColor: #fff;--sapIndicationColor_8_Selected_TextColor: #fff;--sapIndicationColor_8b: #e269c9;--sapIndicationColor_8b_TextColor: #fff;--sapIndicationColor_8b_Background: #000;--sapIndicationColor_8b_BorderColor: #fff;--sapIndicationColor_8b_Hover_Background: #795100;--sapIndicationColor_9: #000;--sapIndicationColor_9_Background: #000;--sapIndicationColor_9_BorderColor: #fff;--sapIndicationColor_9_TextColor: #fff;--sapIndicationColor_9_Hover_Background: #795100;--sapIndicationColor_9_Active_Background: #795100;--sapIndicationColor_9_Active_BorderColor: #fff;--sapIndicationColor_9_Active_TextColor: #fff;--sapIndicationColor_9_Selected_Background: #0f5d94;--sapIndicationColor_9_Selected_BorderColor: #fff;--sapIndicationColor_9_Selected_TextColor: #fff;--sapIndicationColor_9b: #000;--sapIndicationColor_9b_TextColor: #fff;--sapIndicationColor_9b_Background: #000;--sapIndicationColor_9b_BorderColor: #fff;--sapIndicationColor_9b_Hover_Background: #795100;--sapIndicationColor_10: #494949;--sapIndicationColor_10_Background: #000;--sapIndicationColor_10_BorderColor: #fff;--sapIndicationColor_10_TextColor: #fff;--sapIndicationColor_10_Hover_Background: #795100;--sapIndicationColor_10_Active_Background: #795100;--sapIndicationColor_10_Active_BorderColor: #fff;--sapIndicationColor_10_Active_TextColor: #fff;--sapIndicationColor_10_Selected_Background: #0f5d94;--sapIndicationColor_10_Selected_BorderColor: #fff;--sapIndicationColor_10_Selected_TextColor: #fff;--sapIndicationColor_10b: #494949;--sapIndicationColor_10b_TextColor: #fff;--sapIndicationColor_10b_Background: #000;--sapIndicationColor_10b_BorderColor: #fff;--sapIndicationColor_10b_Hover_Background: #795100;--sapLegend_WorkingBackground: #2e2e2e;--sapLegend_NonWorkingBackground: #585858;--sapLegend_CurrentDateTime: #e269c9;--sapLegendColor1: #ffc847;--sapLegendColor2: #ed884a;--sapLegendColor3: #db9292;--sapLegendColor4: #ff741f;--sapLegendColor5: #e269c9;--sapLegendColor6: #6bd3ff;--sapLegendColor7: #7fc6c6;--sapLegendColor8: #b2e484;--sapLegendColor9: #b0bcc5;--sapLegendColor10: #bb86b0;--sapLegendColor11: #ffe6ad;--sapLegendColor12: #cdaf9d;--sapLegendColor13: #ff8787;--sapLegendColor14: #ffb385;--sapLegendColor15: #ffb2ef;--sapLegendColor16: #9cabc5;--sapLegendColor17: #a4eeee;--sapLegendColor18: #8d9e7e;--sapLegendColor19: #addcf0;--sapLegendColor20: #629cff;--sapLegendBackgroundColor1: #000;--sapLegendBackgroundColor2: #000;--sapLegendBackgroundColor3: #000;--sapLegendBackgroundColor4: #000;--sapLegendBackgroundColor5: #000;--sapLegendBackgroundColor6: #000;--sapLegendBackgroundColor7: #000;--sapLegendBackgroundColor8: #000;--sapLegendBackgroundColor9: #000;--sapLegendBackgroundColor10: #000;--sapLegendBackgroundColor11: #000;--sapLegendBackgroundColor12: #000;--sapLegendBackgroundColor13: #000;--sapLegendBackgroundColor14: #000;--sapLegendBackgroundColor15: #000;--sapLegendBackgroundColor16: #000;--sapLegendBackgroundColor17: #000;--sapLegendBackgroundColor18: #000;--sapLegendBackgroundColor19: #000;--sapLegendBackgroundColor20: #000;--sapChart_Background: #000;--sapChart_ContrastTextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_ContrastShadowColor: #000;--sapChart_ContrastLineColor: #000;--sapChart_LineColor_1: #666;--sapChart_LineColor_2: #fff;--sapChart_LineColor_3: #fff;--sapChart_Choropleth_Background: #585858;--sapChart_ChoroplethRegion_Background: #afafaf;--sapChart_ChoroplethRegion_BorderColor: #585858;--sapChart_Data_TextColor: #fff;--sapChart_Data_ContrastTextColor: #000;--sapChart_Data_InteractiveColor: #fff;--sapChart_Data_Active_Background: #795100;--sapChart_OrderedColor_1: #8babcb;--sapChart_OrderedColor_2: #ed8859;--sapChart_OrderedColor_3: #9fb822;--sapChart_OrderedColor_4: #fe74ae;--sapChart_OrderedColor_5: #c092f6;--sapChart_OrderedColor_6: #05c0ba;--sapChart_OrderedColor_7: #05c0ba;--sapChart_OrderedColor_8: #f473f0;--sapChart_OrderedColor_9: #9dad9b;--sapChart_OrderedColor_10: #f28585;--sapChart_OrderedColor_11: #9ea3f6;--sapChart_OrderedColor_12: #b49e78;--sapChart_Bad: #ff7878;--sapChart_Critical: #ffab1d;--sapChart_Good: #99cc99;--sapChart_Neutral: #afafaf;--sapChart_Sequence_1_Plus3: #d1deeb;--sapChart_Sequence_1_Plus3_TextColor: #000;--sapChart_Sequence_1_Plus3_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_1_Plus2: #b5cade;--sapChart_Sequence_1_Plus2_TextColor: #000;--sapChart_Sequence_1_Plus2_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_1_Plus1: #a4bdd6;--sapChart_Sequence_1_Plus1_TextColor: #000;--sapChart_Sequence_1_Plus1_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_1: #8babcb;--sapChart_Sequence_1_TextColor: #000;--sapChart_Sequence_1_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_1_BorderColor: #8babcb;--sapChart_Sequence_1_Minus1: #7299c0;--sapChart_Sequence_1_Minus1_TextColor: #000;--sapChart_Sequence_1_Minus1_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_1_Minus2: #3a5e83;--sapChart_Sequence_1_Minus2_TextColor: #fff;--sapChart_Sequence_1_Minus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_1_Minus3: #2b455f;--sapChart_Sequence_1_Minus3_TextColor: #fff;--sapChart_Sequence_1_Minus3_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_1_Minus4: #23384e;--sapChart_Sequence_1_Minus4_TextColor: #fff;--sapChart_Sequence_1_Minus4_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_1_Minus5: #1b2b3c;--sapChart_Sequence_1_Minus5_TextColor: #fff;--sapChart_Sequence_1_Minus5_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_2_Plus3: #fdd9c8;--sapChart_Sequence_2_Plus3_TextColor: #000;--sapChart_Sequence_2_Plus3_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_2_Plus2: #f9bfa4;--sapChart_Sequence_2_Plus2_TextColor: #000;--sapChart_Sequence_2_Plus2_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_2_Plus1: #f3a27b;--sapChart_Sequence_2_Plus1_TextColor: #000;--sapChart_Sequence_2_Plus1_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_2: #ed8859;--sapChart_Sequence_2_TextColor: #000;--sapChart_Sequence_2_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_2_BorderColor: #ed8859;--sapChart_Sequence_2_Minus1: #e9743f;--sapChart_Sequence_2_Minus1_TextColor: #000;--sapChart_Sequence_2_Minus1_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_2_Minus2: #9c3d11;--sapChart_Sequence_2_Minus2_TextColor: #fff;--sapChart_Sequence_2_Minus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_2_Minus3: #80320e;--sapChart_Sequence_2_Minus3_TextColor: #fff;--sapChart_Sequence_2_Minus3_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_2_Minus4: #65270b;--sapChart_Sequence_2_Minus4_TextColor: #fff;--sapChart_Sequence_2_Minus4_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_2_Minus5: #973b10;--sapChart_Sequence_2_Minus5_TextColor: #fff;--sapChart_Sequence_2_Minus5_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_3_Plus3: #cdd5a3;--sapChart_Sequence_3_Plus3_TextColor: #000;--sapChart_Sequence_3_Plus3_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_3_Plus2: #b8c47c;--sapChart_Sequence_3_Plus2_TextColor: #000;--sapChart_Sequence_3_Plus2_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_3_Plus1: #a9ba53;--sapChart_Sequence_3_Plus1_TextColor: #000;--sapChart_Sequence_3_Plus1_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_3: #9fb822;--sapChart_Sequence_3_TextColor: #000;--sapChart_Sequence_3_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_3_BorderColor: #9fb822;--sapChart_Sequence_3_Minus1: #8aa115;--sapChart_Sequence_3_Minus1_TextColor: #000;--sapChart_Sequence_3_Minus1_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_3_Minus2: #5c6b14;--sapChart_Sequence_3_Minus2_TextColor: #fff;--sapChart_Sequence_3_Minus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_3_Minus3: #3e480d;--sapChart_Sequence_3_Minus3_TextColor: #fff;--sapChart_Sequence_3_Minus3_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_3_Minus4: #333b0b;--sapChart_Sequence_3_Minus4_TextColor: #fff;--sapChart_Sequence_3_Minus4_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_3_Minus5: #282e09;--sapChart_Sequence_3_Minus5_TextColor: #fff;--sapChart_Sequence_3_Minus5_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_4_Plus3: #ffd9e9;--sapChart_Sequence_4_Plus3_TextColor: #000;--sapChart_Sequence_4_Plus3_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_4_Plus2: #ffc0da;--sapChart_Sequence_4_Plus2_TextColor: #000;--sapChart_Sequence_4_Plus2_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_4_Plus1: #fe97c3;--sapChart_Sequence_4_Plus1_TextColor: #000;--sapChart_Sequence_4_Plus1_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_4: #fe74ae;--sapChart_Sequence_4_TextColor: #000;--sapChart_Sequence_4_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_4_BorderColor: #fe74ae;--sapChart_Sequence_4_Minus1: #f95a9e;--sapChart_Sequence_4_Minus1_TextColor: #000;--sapChart_Sequence_4_Minus1_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_4_Minus2: #b4014c;--sapChart_Sequence_4_Minus2_TextColor: #fff;--sapChart_Sequence_4_Minus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_4_Minus3: #9b0142;--sapChart_Sequence_4_Minus3_TextColor: #fff;--sapChart_Sequence_4_Minus3_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_4_Minus4: #860139;--sapChart_Sequence_4_Minus4_TextColor: #fff;--sapChart_Sequence_4_Minus4_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_4_Minus5: #720130;--sapChart_Sequence_4_Minus5_TextColor: #fff;--sapChart_Sequence_4_Minus5_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_5_Plus3: #e9d9fc;--sapChart_Sequence_5_Plus3_TextColor: #000;--sapChart_Sequence_5_Plus3_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_5_Plus2: #dbc1fa;--sapChart_Sequence_5_Plus2_TextColor: #000;--sapChart_Sequence_5_Plus2_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_5_Plus1: #ceaaf8;--sapChart_Sequence_5_Plus1_TextColor: #000;--sapChart_Sequence_5_Plus1_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_5: #c092f6;--sapChart_Sequence_5_TextColor: #000;--sapChart_Sequence_5_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_5_BorderColor: #c092f6;--sapChart_Sequence_5_Minus1: #b37bf4;--sapChart_Sequence_5_Minus1_TextColor: #000;--sapChart_Sequence_5_Minus1_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_5_Minus2: #7927d8;--sapChart_Sequence_5_Minus2_TextColor: #fff;--sapChart_Sequence_5_Minus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_5_Minus3: #6320b1;--sapChart_Sequence_5_Minus3_TextColor: #fff;--sapChart_Sequence_5_Minus3_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_5_Minus4: #541b97;--sapChart_Sequence_5_Minus4_TextColor: #fff;--sapChart_Sequence_5_Minus4_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_5_Minus5: #371263;--sapChart_Sequence_5_Minus5_TextColor: #fff;--sapChart_Sequence_5_Minus5_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_6_Plus3: #73ebe7;--sapChart_Sequence_6_Plus3_TextColor: #000;--sapChart_Sequence_6_Plus3_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_6_Plus2: #47e4e0;--sapChart_Sequence_6_Plus2_TextColor: #000;--sapChart_Sequence_6_Plus2_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_6_Plus1: #1fd9d3;--sapChart_Sequence_6_Plus1_TextColor: #000;--sapChart_Sequence_6_Plus1_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_6: #05c0ba;--sapChart_Sequence_6_TextColor: #000;--sapChart_Sequence_6_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_6_BorderColor: #05c0ba;--sapChart_Sequence_6_Minus1: #04a7a2;--sapChart_Sequence_6_Minus1_TextColor: #000;--sapChart_Sequence_6_Minus1_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_6_Minus2: #006562;--sapChart_Sequence_6_Minus2_TextColor: #fff;--sapChart_Sequence_6_Minus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_6_Minus3: #004b48;--sapChart_Sequence_6_Minus3_TextColor: #fff;--sapChart_Sequence_6_Minus3_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_6_Minus4: #003635;--sapChart_Sequence_6_Minus4_TextColor: #fff;--sapChart_Sequence_6_Minus4_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_6_Minus5: #002c2b;--sapChart_Sequence_6_Minus5_TextColor: #fff;--sapChart_Sequence_6_Minus5_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_7_Plus3: #19f9f2;--sapChart_Sequence_7_Plus3_TextColor: #000;--sapChart_Sequence_7_Plus3_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_7_Plus2: #06f2ea;--sapChart_Sequence_7_Plus2_TextColor: #000;--sapChart_Sequence_7_Plus2_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_7_Plus1: #06d9d2;--sapChart_Sequence_7_Plus1_TextColor: #000;--sapChart_Sequence_7_Plus1_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_7: #05c0ba;--sapChart_Sequence_7_TextColor: #000;--sapChart_Sequence_7_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_7_BorderColor: #05c0ba;--sapChart_Sequence_7_Minus1: #04a7a2;--sapChart_Sequence_7_Minus1_TextColor: #000;--sapChart_Sequence_7_Minus1_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_7_Minus2: #012b2a;--sapChart_Sequence_7_Minus2_TextColor: #fff;--sapChart_Sequence_7_Minus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_7_Minus3: #000;--sapChart_Sequence_7_Minus3_TextColor: #fff;--sapChart_Sequence_7_Minus3_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_7_Minus4: #000;--sapChart_Sequence_7_Minus4_TextColor: #fff;--sapChart_Sequence_7_Minus4_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_7_Minus5: #000;--sapChart_Sequence_7_Minus5_TextColor: #fff;--sapChart_Sequence_7_Minus5_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_8_Plus3: #fed9fd;--sapChart_Sequence_8_Plus3_TextColor: #000;--sapChart_Sequence_8_Plus3_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_8_Plus2: #fabff8;--sapChart_Sequence_8_Plus2_TextColor: #000;--sapChart_Sequence_8_Plus2_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_8_Plus1: #f8a2f5;--sapChart_Sequence_8_Plus1_TextColor: #000;--sapChart_Sequence_8_Plus1_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_8: #f473f0;--sapChart_Sequence_8_TextColor: #000;--sapChart_Sequence_8_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_8_BorderColor: #f473f0;--sapChart_Sequence_8_Minus1: #f14dec;--sapChart_Sequence_8_Minus1_TextColor: #000;--sapChart_Sequence_8_Minus1_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_8_Minus2: #a2039c;--sapChart_Sequence_8_Minus2_TextColor: #fff;--sapChart_Sequence_8_Minus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_8_Minus3: #d904d2;--sapChart_Sequence_8_Minus3_TextColor: #fff;--sapChart_Sequence_8_Minus3_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_8_Minus4: #c004b9;--sapChart_Sequence_8_Minus4_TextColor: #fff;--sapChart_Sequence_8_Minus4_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_8_Minus5: #a2039c;--sapChart_Sequence_8_Minus5_TextColor: #fff;--sapChart_Sequence_8_Minus5_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_9_Plus3: #c6cfc5;--sapChart_Sequence_9_Plus3_TextColor: #000;--sapChart_Sequence_9_Plus3_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_9_Plus2: #b8c4b7;--sapChart_Sequence_9_Plus2_TextColor: #000;--sapChart_Sequence_9_Plus2_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_9_Plus1: #abb8a9;--sapChart_Sequence_9_Plus1_TextColor: #000;--sapChart_Sequence_9_Plus1_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_9: #9dad9b;--sapChart_Sequence_9_TextColor: #000;--sapChart_Sequence_9_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_9_BorderColor: #9dad9b;--sapChart_Sequence_9_Minus1: #879b85;--sapChart_Sequence_9_Minus1_TextColor: #000;--sapChart_Sequence_9_Minus1_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_9_Minus2: #51604f;--sapChart_Sequence_9_Minus2_TextColor: #fff;--sapChart_Sequence_9_Minus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_9_Minus3: #455243;--sapChart_Sequence_9_Minus3_TextColor: #fff;--sapChart_Sequence_9_Minus3_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_9_Minus4: #394438;--sapChart_Sequence_9_Minus4_TextColor: #fff;--sapChart_Sequence_9_Minus4_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_9_Minus5: #2d362c;--sapChart_Sequence_9_Minus5_TextColor: #fff;--sapChart_Sequence_9_Minus5_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_10_Plus3: #fdd6d6;--sapChart_Sequence_10_Plus3_TextColor: #000;--sapChart_Sequence_10_Plus3_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_10_Plus2: #f9b7b7;--sapChart_Sequence_10_Plus2_TextColor: #000;--sapChart_Sequence_10_Plus2_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_10_Plus1: #f7a4a4;--sapChart_Sequence_10_Plus1_TextColor: #000;--sapChart_Sequence_10_Plus1_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_10: #f28585;--sapChart_Sequence_10_TextColor: #000;--sapChart_Sequence_10_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_10_BorderColor: #f28585;--sapChart_Sequence_10_Minus1: #e97070;--sapChart_Sequence_10_Minus1_TextColor: #000;--sapChart_Sequence_10_Minus1_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_10_Minus2: #9a3a3a;--sapChart_Sequence_10_Minus2_TextColor: #fff;--sapChart_Sequence_10_Minus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_10_Minus3: #8b3434;--sapChart_Sequence_10_Minus3_TextColor: #fff;--sapChart_Sequence_10_Minus3_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_10_Minus4: #752c2c;--sapChart_Sequence_10_Minus4_TextColor: #fff;--sapChart_Sequence_10_Minus4_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_10_Minus5: #5f2424;--sapChart_Sequence_10_Minus5_TextColor: #fff;--sapChart_Sequence_10_Minus5_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_11_Plus3: #e4e5fc;--sapChart_Sequence_11_Plus3_TextColor: #000;--sapChart_Sequence_11_Plus3_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_11_Plus2: #cdcffa;--sapChart_Sequence_11_Plus2_TextColor: #000;--sapChart_Sequence_11_Plus2_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_11_Plus1: #b5b9f8;--sapChart_Sequence_11_Plus1_TextColor: #000;--sapChart_Sequence_11_Plus1_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_11: #9ea3f6;--sapChart_Sequence_11_TextColor: #000;--sapChart_Sequence_11_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_11_BorderColor: #9ea3f6;--sapChart_Sequence_11_Minus1: #878df4;--sapChart_Sequence_11_Minus1_TextColor: #000;--sapChart_Sequence_11_Minus1_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_11_Minus2: #6f77f2;--sapChart_Sequence_11_Minus2_TextColor: #fff;--sapChart_Sequence_11_Minus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_11_Minus3: #5861f0;--sapChart_Sequence_11_Minus3_TextColor: #fff;--sapChart_Sequence_11_Minus3_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_11_Minus4: #4a53ee;--sapChart_Sequence_11_Minus4_TextColor: #fff;--sapChart_Sequence_11_Minus4_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_11_Minus5: #3b44da;--sapChart_Sequence_11_Minus5_TextColor: #fff;--sapChart_Sequence_11_Minus5_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_12_Plus3: #d7cbb6;--sapChart_Sequence_12_Plus3_TextColor: #000;--sapChart_Sequence_12_Plus3_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_12_Plus2: #caba9f;--sapChart_Sequence_12_Plus2_TextColor: #000;--sapChart_Sequence_12_Plus2_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_12_Plus1: #c1ae8f;--sapChart_Sequence_12_Plus1_TextColor: #000;--sapChart_Sequence_12_Plus1_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_12: #b49e78;--sapChart_Sequence_12_TextColor: #000;--sapChart_Sequence_12_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_12_BorderColor: #b49e78;--sapChart_Sequence_12_Minus1: #a58b5e;--sapChart_Sequence_12_Minus1_TextColor: #000;--sapChart_Sequence_12_Minus1_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_12_Minus2: #a08659;--sapChart_Sequence_12_Minus2_TextColor: #fff;--sapChart_Sequence_12_Minus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_12_Minus3: #89734c;--sapChart_Sequence_12_Minus3_TextColor: #fff;--sapChart_Sequence_12_Minus3_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_12_Minus4: #796543;--sapChart_Sequence_12_Minus4_TextColor: #fff;--sapChart_Sequence_12_Minus4_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_12_Minus5: #68573a;--sapChart_Sequence_12_Minus5_TextColor: #fff;--sapChart_Sequence_12_Minus5_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Bad_Plus3: #ffdede;--sapChart_Sequence_Bad_Plus3_TextColor: #000;--sapChart_Sequence_Bad_Plus3_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_Bad_Plus2: #ffbfbf;--sapChart_Sequence_Bad_Plus2_TextColor: #000;--sapChart_Sequence_Bad_Plus2_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_Bad_Plus1: #ff9c9c;--sapChart_Sequence_Bad_Plus1_TextColor: #000;--sapChart_Sequence_Bad_Plus1_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_Bad: #ff7878;--sapChart_Sequence_Bad_TextColor: #000;--sapChart_Sequence_Bad_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_Bad_BorderColor: #ff7878;--sapChart_Sequence_Bad_Minus1: #ff5f5f;--sapChart_Sequence_Bad_Minus1_TextColor: #000;--sapChart_Sequence_Bad_Minus1_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_Bad_Minus2: #ff4545;--sapChart_Sequence_Bad_Minus2_TextColor: #fff;--sapChart_Sequence_Bad_Minus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Bad_Minus3: #fd0000;--sapChart_Sequence_Bad_Minus3_TextColor: #fff;--sapChart_Sequence_Bad_Minus3_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Bad_Minus4: #de0000;--sapChart_Sequence_Bad_Minus4_TextColor: #fff;--sapChart_Sequence_Bad_Minus4_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Bad_Minus5: #ba0000;--sapChart_Sequence_Bad_Minus5_TextColor: #fff;--sapChart_Sequence_Bad_Minus5_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Critical_Plus3: #ffda9d;--sapChart_Sequence_Critical_Plus3_TextColor: #000;--sapChart_Sequence_Critical_Plus3_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_Critical_Plus2: #ffd183;--sapChart_Sequence_Critical_Plus2_TextColor: #000;--sapChart_Sequence_Critical_Plus2_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_Critical_Plus1: #ffb437;--sapChart_Sequence_Critical_Plus1_TextColor: #000;--sapChart_Sequence_Critical_Plus1_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_Critical: #ffab1d;--sapChart_Sequence_Critical_TextColor: #000;--sapChart_Sequence_Critical_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_Critical_BorderColor: #ffab1d;--sapChart_Sequence_Critical_Minus1: #e99200;--sapChart_Sequence_Critical_Minus1_TextColor: #000;--sapChart_Sequence_Critical_Minus1_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_Critical_Minus2: #7e4f00;--sapChart_Sequence_Critical_Minus2_TextColor: #fff;--sapChart_Sequence_Critical_Minus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Critical_Minus3: #643f00;--sapChart_Sequence_Critical_Minus3_TextColor: #fff;--sapChart_Sequence_Critical_Minus3_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Critical_Minus4: #4b2f00;--sapChart_Sequence_Critical_Minus4_TextColor: #fff;--sapChart_Sequence_Critical_Minus4_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Critical_Minus5: #412900;--sapChart_Sequence_Critical_Minus5_TextColor: #fff;--sapChart_Sequence_Critical_Minus5_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Good_Plus3: #eef6ee;--sapChart_Sequence_Good_Plus3_TextColor: #000;--sapChart_Sequence_Good_Plus3_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_Good_Plus2: #cce6cc;--sapChart_Sequence_Good_Plus2_TextColor: #000;--sapChart_Sequence_Good_Plus2_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_Good_Plus1: #bdb;--sapChart_Sequence_Good_Plus1_TextColor: #000;--sapChart_Sequence_Good_Plus1_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_Good: #99cc99;--sapChart_Sequence_Good_TextColor: #000;--sapChart_Sequence_Good_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_Good_BorderColor: #99cc99;--sapChart_Sequence_Good_Minus1: #7b7;--sapChart_Sequence_Good_Minus1_TextColor: #000;--sapChart_Sequence_Good_Minus1_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_Good_Minus2: #5cad5c;--sapChart_Sequence_Good_Minus2_TextColor: #000;--sapChart_Sequence_Good_Minus2_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_Good_Minus3: #4b964b;--sapChart_Sequence_Good_Minus3_TextColor: #000;--sapChart_Sequence_Good_Minus3_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_Good_Minus4: #428542;--sapChart_Sequence_Good_Minus4_TextColor: #fff;--sapChart_Sequence_Good_Minus4_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Good_Minus5: #363;--sapChart_Sequence_Good_Minus5_TextColor: #fff;--sapChart_Sequence_Good_Minus5_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Neutral_Plus3: #f9f9f9;--sapChart_Sequence_Neutral_Plus3_TextColor: #000;--sapChart_Sequence_Neutral_Plus3_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_Neutral_Plus2: #e2e2e2;--sapChart_Sequence_Neutral_Plus2_TextColor: #000;--sapChart_Sequence_Neutral_Plus2_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_Neutral_Plus1: #d5d5d5;--sapChart_Sequence_Neutral_Plus1_TextColor: #000;--sapChart_Sequence_Neutral_Plus1_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_Neutral: #afafaf;--sapChart_Sequence_Neutral_TextColor: #000;--sapChart_Sequence_Neutral_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_Neutral_BorderColor: #afafaf;--sapChart_Sequence_Neutral_Minus1: #969696;--sapChart_Sequence_Neutral_Minus1_TextColor: #fff;--sapChart_Sequence_Neutral_Minus1_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Neutral_Minus2: #909090;--sapChart_Sequence_Neutral_Minus2_TextColor: #fff;--sapChart_Sequence_Neutral_Minus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Neutral_Minus3: #818181;--sapChart_Sequence_Neutral_Minus3_TextColor: #fff;--sapChart_Sequence_Neutral_Minus3_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Neutral_Minus4: #727272;--sapChart_Sequence_Neutral_Minus4_TextColor: #fff;--sapChart_Sequence_Neutral_Minus4_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Neutral_Minus5: #5b5b5b;--sapChart_Sequence_Neutral_Minus5_TextColor: #fff;--sapChart_Sequence_Neutral_Minus5_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapSapThemeId: sap_fiori_3_hcb;--sapBreakpoint_S_Min: 0;--sapBreakpoint_M_Min: 600px;--sapBreakpoint_L_Min: 1024px;--sapBreakpoint_XL_Min: 1440px\n}";
4
4
 
5
5
  exports.default = parametersBundle_css;
6
6