@carbon/ibm-products 1.0.0-rc.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (479) hide show
  1. package/README.md +19 -18
  2. package/css/index-full-carbon.css +33427 -0
  3. package/css/index-full-carbon.css.map +1 -0
  4. package/css/index-full-carbon.min.css +9 -0
  5. package/css/index-without-carbon-released-only.css +7831 -0
  6. package/css/index-without-carbon-released-only.css.map +1 -0
  7. package/css/index-without-carbon-released-only.min.css +9 -0
  8. package/css/index-without-carbon.css +9841 -0
  9. package/css/index-without-carbon.css.map +1 -0
  10. package/css/index-without-carbon.min.css +9 -0
  11. package/css/index.css +22317 -0
  12. package/css/index.css.map +1 -0
  13. package/css/index.min.css +9 -0
  14. package/es/components/APIKeyModal/APIKeyDownloader.js +103 -0
  15. package/es/components/APIKeyModal/APIKeyModal.js +593 -0
  16. package/es/components/APIKeyModal/index.js +7 -0
  17. package/es/components/AboutModal/AboutModal.js +202 -0
  18. package/es/components/AboutModal/index.js +7 -0
  19. package/es/components/ActionBar/ActionBar.js +274 -0
  20. package/es/components/ActionBar/ActionBarItem.js +99 -0
  21. package/es/components/ActionBar/ActionBarOverflowItems.js +70 -0
  22. package/es/components/ActionBar/index.js +8 -0
  23. package/es/components/ActionSet/ActionSet.js +195 -0
  24. package/es/components/ActionSet/actions.js +48 -0
  25. package/es/components/ActionSet/index.js +7 -0
  26. package/es/components/BreadcrumbWithOverflow/BreadcrumbWithOverflow.js +349 -0
  27. package/es/components/BreadcrumbWithOverflow/index.js +8 -0
  28. package/es/components/ButtonMenu/ButtonMenu.js +108 -0
  29. package/es/components/ButtonMenu/ButtonMenuItem.js +30 -0
  30. package/es/components/ButtonMenu/index.js +8 -0
  31. package/es/components/ButtonSetWithOverflow/ButtonSetWithOverflow.js +231 -0
  32. package/es/components/ButtonSetWithOverflow/index.js +7 -0
  33. package/es/components/Card/Card.js +242 -0
  34. package/es/components/Card/CardFooter.js +72 -0
  35. package/es/components/Card/CardHeader.js +53 -0
  36. package/es/components/Card/index.js +9 -0
  37. package/es/components/Cascade/Cascade.js +88 -0
  38. package/es/components/Cascade/index.js +1 -0
  39. package/es/components/ComboButton/ComboButton.js +110 -0
  40. package/es/components/ComboButton/ComboButtonItem/index.js +39 -0
  41. package/es/components/ComboButton/index.js +8 -0
  42. package/es/components/CreateFullPage/CreateFullPage.js +454 -0
  43. package/es/components/CreateFullPage/CreateFullPageSection.js +53 -0
  44. package/es/components/CreateFullPage/CreateFullPageStep.js +112 -0
  45. package/es/components/CreateFullPage/constants.js +8 -0
  46. package/es/components/CreateFullPage/index.js +9 -0
  47. package/es/components/CreateInfluencer/CreateInfluencer.js +273 -0
  48. package/es/components/CreateInfluencer/index.js +7 -0
  49. package/es/components/CreateModal/CreateModal.js +152 -0
  50. package/es/components/CreateModal/index.js +8 -0
  51. package/es/components/CreateSidePanel/CreateSidePanel.js +175 -0
  52. package/es/components/CreateSidePanel/index.js +7 -0
  53. package/es/components/CreateTearsheet/CreateTearsheet.js +371 -0
  54. package/es/components/CreateTearsheet/CreateTearsheetDivider.js +33 -0
  55. package/es/components/CreateTearsheet/CreateTearsheetSection.js +83 -0
  56. package/es/components/CreateTearsheet/CreateTearsheetStep.js +129 -0
  57. package/es/components/CreateTearsheet/constants.js +8 -0
  58. package/es/components/CreateTearsheet/index.js +10 -0
  59. package/es/components/CreateTearsheet/preview-components/MultiStepTearsheet.js +244 -0
  60. package/es/components/CreateTearsheet/preview-components/MultiStepWithIntro.js +295 -0
  61. package/es/components/CreateTearsheet/preview-components/MultiStepWithSectionsTearsheet.js +327 -0
  62. package/es/components/CreateTearsheetNarrow/CreateTearsheetNarrow.js +174 -0
  63. package/es/components/CreateTearsheetNarrow/index.js +7 -0
  64. package/es/components/EditSidePanel/EditSidePanel.js +209 -0
  65. package/es/components/EditSidePanel/index.js +7 -0
  66. package/es/components/EmptyStates/EmptyState.js +118 -0
  67. package/es/components/EmptyStates/EmptyStateContent.js +85 -0
  68. package/es/components/EmptyStates/ErrorEmptyState/ErrorEmptyState.js +113 -0
  69. package/es/components/EmptyStates/ErrorEmptyState/index.js +7 -0
  70. package/es/components/EmptyStates/NoDataEmptyState/NoDataEmptyState.js +113 -0
  71. package/es/components/EmptyStates/NoDataEmptyState/index.js +7 -0
  72. package/es/components/EmptyStates/NoTagsEmptyState/NoTagsEmptyState.js +113 -0
  73. package/es/components/EmptyStates/NoTagsEmptyState/index.js +7 -0
  74. package/es/components/EmptyStates/NotFoundEmptyState/NotFoundEmptyState.js +113 -0
  75. package/es/components/EmptyStates/NotFoundEmptyState/index.js +7 -0
  76. package/es/components/EmptyStates/NotificationsEmptyState/NotificationsEmptyState.js +113 -0
  77. package/es/components/EmptyStates/NotificationsEmptyState/index.js +7 -0
  78. package/es/components/EmptyStates/UnauthorizedEmptyState/UnauthorizedEmptyState.js +113 -0
  79. package/es/components/EmptyStates/UnauthorizedEmptyState/index.js +7 -0
  80. package/es/components/EmptyStates/assets/ErrorIllustration.js +217 -0
  81. package/es/components/EmptyStates/assets/NoDataIllustration.js +180 -0
  82. package/es/components/EmptyStates/assets/NoTagsIllustration.js +488 -0
  83. package/es/components/EmptyStates/assets/NotFoundIllustration.js +365 -0
  84. package/es/components/EmptyStates/assets/NotificationsIllustration.js +336 -0
  85. package/es/components/EmptyStates/assets/UnauthorizedIllustration.js +309 -0
  86. package/es/components/EmptyStates/index.js +13 -0
  87. package/es/components/ExampleComponent/ExampleComponent.js +160 -0
  88. package/es/components/ExampleComponent/index.js +7 -0
  89. package/es/components/ExportModal/ExportModal.js +276 -0
  90. package/es/components/ExportModal/index.js +7 -0
  91. package/es/components/ExpressiveCard/ExpressiveCard.js +138 -0
  92. package/es/components/ExpressiveCard/index.js +7 -0
  93. package/es/components/HTTPErrors/HTTPError403/HTTPError403.js +87 -0
  94. package/es/components/HTTPErrors/HTTPError403/index.js +7 -0
  95. package/es/components/HTTPErrors/HTTPError404/HTTPError404.js +87 -0
  96. package/es/components/HTTPErrors/HTTPError404/index.js +7 -0
  97. package/es/components/HTTPErrors/HTTPErrorContent.js +84 -0
  98. package/es/components/HTTPErrors/HTTPErrorOther/HTTPErrorOther.js +87 -0
  99. package/es/components/HTTPErrors/HTTPErrorOther/index.js +7 -0
  100. package/es/components/HTTPErrors/assets/HTTPErrorSvg403.js +1238 -0
  101. package/es/components/HTTPErrors/assets/HTTPErrorSvg404.js +1037 -0
  102. package/es/components/HTTPErrors/assets/HTTPErrorSvgOther.js +1088 -0
  103. package/es/components/HTTPErrors/index.js +9 -0
  104. package/es/components/ImportModal/ImportModal.js +421 -0
  105. package/es/components/ImportModal/index.js +7 -0
  106. package/es/components/LoadingBar/LoadingBar.js +160 -0
  107. package/es/components/LoadingBar/index.js +7 -0
  108. package/es/components/ModifiedTabs/ModifiedTabLabelNew.js +34 -0
  109. package/es/components/ModifiedTabs/ModifiedTabLabelWithClose.js +54 -0
  110. package/es/components/ModifiedTabs/ModifiedTabs.js +113 -0
  111. package/es/components/ModifiedTabs/index.js +1 -0
  112. package/es/components/NotificationsPanel/NotificationsPanel.js +547 -0
  113. package/es/components/NotificationsPanel/NotificationsPanel_data.js +134 -0
  114. package/es/components/NotificationsPanel/index.js +7 -0
  115. package/es/components/NotificationsPanel/preview-components/UnreadNotificationBell.js +49 -0
  116. package/es/components/NotificationsPanel/utils.js +56 -0
  117. package/es/components/OptionsTile/OptionsTile.js +306 -0
  118. package/es/components/OptionsTile/index.js +7 -0
  119. package/es/components/PageHeader/PageHeader.js +779 -0
  120. package/es/components/PageHeader/PageHeaderDemo.data.js +614 -0
  121. package/es/components/PageHeader/PageHeaderTitle.js +49 -0
  122. package/es/components/PageHeader/PageHeaderUtils.js +187 -0
  123. package/es/components/PageHeader/index.js +7 -0
  124. package/es/components/ProductiveCard/ProductiveCard.js +118 -0
  125. package/es/components/ProductiveCard/index.js +7 -0
  126. package/es/components/RemoveModal/RemoveModal.js +189 -0
  127. package/es/components/RemoveModal/index.js +7 -0
  128. package/es/components/Saving/Saving.js +156 -0
  129. package/es/components/Saving/index.js +7 -0
  130. package/es/components/SidePanel/SidePanel.js +643 -0
  131. package/es/components/SidePanel/constants.js +13 -0
  132. package/es/components/SidePanel/index.js +7 -0
  133. package/es/components/StatusIcon/StatusIcon.js +132 -0
  134. package/es/components/StatusIcon/index.js +7 -0
  135. package/es/components/TagSet/TagSet.js +326 -0
  136. package/es/components/TagSet/TagSetModal.js +118 -0
  137. package/es/components/TagSet/TagSetOverflow.js +121 -0
  138. package/es/components/TagSet/index.js +7 -0
  139. package/es/components/Tearsheet/Tearsheet.js +180 -0
  140. package/es/components/Tearsheet/TearsheetNarrow.js +148 -0
  141. package/es/components/Tearsheet/TearsheetShell.js +390 -0
  142. package/es/components/Tearsheet/index.js +8 -0
  143. package/es/components/Toolbar/Toolbar.js +54 -0
  144. package/es/components/Toolbar/ToolbarButton.js +55 -0
  145. package/es/components/Toolbar/ToolbarGroup.js +37 -0
  146. package/es/components/Toolbar/index.js +9 -0
  147. package/es/components/UserProfileImage/UserProfileImage.js +136 -0
  148. package/es/components/UserProfileImage/index.js +8 -0
  149. package/es/components/WebTerminal/WebTerminal.js +168 -0
  150. package/es/components/WebTerminal/index.js +1 -0
  151. package/es/components/WebTerminal/preview-components/Navigation.js +31 -0
  152. package/es/components/WebTerminal/preview-components/documentationLinks.js +25 -0
  153. package/es/components/WebTerminal/preview-components/index.js +5 -0
  154. package/es/components/_Canary/Canary.js +48 -0
  155. package/es/components/_Canary/index.js +7 -0
  156. package/es/components/index.js +37 -0
  157. package/es/generated/feature-flags/feature-flags.js +15 -0
  158. package/es/global/js/hooks/index.js +14 -0
  159. package/es/global/js/hooks/useClickOutside.js +21 -0
  160. package/es/global/js/hooks/useCreateComponentFocus.js +37 -0
  161. package/es/global/js/hooks/useCreateComponentStepChange.js +250 -0
  162. package/es/global/js/hooks/usePreviousValue.js +19 -0
  163. package/es/global/js/hooks/useResetCreateComponent.js +40 -0
  164. package/es/global/js/hooks/useValidCreateStepCount.js +23 -0
  165. package/es/global/js/hooks/useWindowResize.js +67 -0
  166. package/es/global/js/hooks/useWindowScroll.js +80 -0
  167. package/es/global/js/package-settings.js +161 -0
  168. package/es/global/js/utils/ClickListener.js +70 -0
  169. package/es/global/js/utils/Wrap.js +85 -0
  170. package/es/global/js/utils/devtools.js +20 -0
  171. package/es/global/js/utils/getFocusableElements.js +14 -0
  172. package/es/global/js/utils/hasValidType.js +94 -0
  173. package/es/global/js/utils/keyboardNavigation.js +34 -0
  174. package/es/global/js/utils/pconsole.js +36 -0
  175. package/es/global/js/utils/props-helper.js +272 -0
  176. package/es/global/js/utils/scrollableAncestor.js +40 -0
  177. package/es/global/js/utils/story-helper.js +75 -0
  178. package/es/global/js/utils/test-helper.js +296 -0
  179. package/es/global/js/utils/unwrap-if-fragment.js +71 -0
  180. package/es/global/js/utils/uuidv4.js +12 -0
  181. package/es/global/js/utils/uuidv4.spec.js +23 -0
  182. package/es/global/js/utils/wait.js +8 -0
  183. package/es/global/js/utils/wrapFocus.js +74 -0
  184. package/es/index.js +8 -0
  185. package/es/settings.js +73 -0
  186. package/lib/components/APIKeyModal/APIKeyDownloader.js +127 -0
  187. package/lib/components/APIKeyModal/APIKeyModal.js +619 -0
  188. package/lib/components/APIKeyModal/index.js +13 -0
  189. package/lib/components/AboutModal/AboutModal.js +222 -0
  190. package/lib/components/AboutModal/index.js +13 -0
  191. package/lib/components/ActionBar/ActionBar.js +294 -0
  192. package/lib/components/ActionBar/ActionBarItem.js +107 -0
  193. package/lib/components/ActionBar/ActionBarOverflowItems.js +94 -0
  194. package/lib/components/ActionBar/index.js +21 -0
  195. package/lib/components/ActionSet/ActionSet.js +205 -0
  196. package/lib/components/ActionSet/actions.js +60 -0
  197. package/lib/components/ActionSet/index.js +13 -0
  198. package/lib/components/BreadcrumbWithOverflow/BreadcrumbWithOverflow.js +366 -0
  199. package/lib/components/BreadcrumbWithOverflow/index.js +13 -0
  200. package/lib/components/ButtonMenu/ButtonMenu.js +115 -0
  201. package/lib/components/ButtonMenu/ButtonMenuItem.js +44 -0
  202. package/lib/components/ButtonMenu/index.js +21 -0
  203. package/lib/components/ButtonSetWithOverflow/ButtonSetWithOverflow.js +255 -0
  204. package/lib/components/ButtonSetWithOverflow/index.js +13 -0
  205. package/lib/components/Card/Card.js +260 -0
  206. package/lib/components/Card/CardFooter.js +90 -0
  207. package/lib/components/Card/CardHeader.js +70 -0
  208. package/lib/components/Card/index.js +29 -0
  209. package/lib/components/Cascade/Cascade.js +109 -0
  210. package/lib/components/Cascade/index.js +13 -0
  211. package/lib/components/ComboButton/ComboButton.js +129 -0
  212. package/lib/components/ComboButton/ComboButtonItem/index.js +49 -0
  213. package/lib/components/ComboButton/index.js +21 -0
  214. package/lib/components/CreateFullPage/CreateFullPage.js +478 -0
  215. package/lib/components/CreateFullPage/CreateFullPageSection.js +74 -0
  216. package/lib/components/CreateFullPage/CreateFullPageStep.js +134 -0
  217. package/lib/components/CreateFullPage/constants.js +16 -0
  218. package/lib/components/CreateFullPage/index.js +29 -0
  219. package/lib/components/CreateInfluencer/CreateInfluencer.js +304 -0
  220. package/lib/components/CreateInfluencer/index.js +13 -0
  221. package/lib/components/CreateModal/CreateModal.js +161 -0
  222. package/lib/components/CreateModal/index.js +13 -0
  223. package/lib/components/CreateSidePanel/CreateSidePanel.js +187 -0
  224. package/lib/components/CreateSidePanel/index.js +13 -0
  225. package/lib/components/CreateTearsheet/CreateTearsheet.js +397 -0
  226. package/lib/components/CreateTearsheet/CreateTearsheetDivider.js +48 -0
  227. package/lib/components/CreateTearsheet/CreateTearsheetSection.js +105 -0
  228. package/lib/components/CreateTearsheet/CreateTearsheetStep.js +151 -0
  229. package/lib/components/CreateTearsheet/constants.js +17 -0
  230. package/lib/components/CreateTearsheet/index.js +37 -0
  231. package/lib/components/CreateTearsheet/preview-components/MultiStepTearsheet.js +268 -0
  232. package/lib/components/CreateTearsheet/preview-components/MultiStepWithIntro.js +320 -0
  233. package/lib/components/CreateTearsheet/preview-components/MultiStepWithSectionsTearsheet.js +354 -0
  234. package/lib/components/CreateTearsheetNarrow/CreateTearsheetNarrow.js +184 -0
  235. package/lib/components/CreateTearsheetNarrow/index.js +13 -0
  236. package/lib/components/EditSidePanel/EditSidePanel.js +220 -0
  237. package/lib/components/EditSidePanel/index.js +13 -0
  238. package/lib/components/EmptyStates/EmptyState.js +134 -0
  239. package/lib/components/EmptyStates/EmptyStateContent.js +94 -0
  240. package/lib/components/EmptyStates/ErrorEmptyState/ErrorEmptyState.js +128 -0
  241. package/lib/components/EmptyStates/ErrorEmptyState/index.js +13 -0
  242. package/lib/components/EmptyStates/NoDataEmptyState/NoDataEmptyState.js +128 -0
  243. package/lib/components/EmptyStates/NoDataEmptyState/index.js +13 -0
  244. package/lib/components/EmptyStates/NoTagsEmptyState/NoTagsEmptyState.js +128 -0
  245. package/lib/components/EmptyStates/NoTagsEmptyState/index.js +13 -0
  246. package/lib/components/EmptyStates/NotFoundEmptyState/NotFoundEmptyState.js +128 -0
  247. package/lib/components/EmptyStates/NotFoundEmptyState/index.js +13 -0
  248. package/lib/components/EmptyStates/NotificationsEmptyState/NotificationsEmptyState.js +128 -0
  249. package/lib/components/EmptyStates/NotificationsEmptyState/index.js +13 -0
  250. package/lib/components/EmptyStates/UnauthorizedEmptyState/UnauthorizedEmptyState.js +128 -0
  251. package/lib/components/EmptyStates/UnauthorizedEmptyState/index.js +13 -0
  252. package/lib/components/EmptyStates/assets/ErrorIllustration.js +226 -0
  253. package/lib/components/EmptyStates/assets/NoDataIllustration.js +189 -0
  254. package/lib/components/EmptyStates/assets/NoTagsIllustration.js +497 -0
  255. package/lib/components/EmptyStates/assets/NotFoundIllustration.js +374 -0
  256. package/lib/components/EmptyStates/assets/NotificationsIllustration.js +345 -0
  257. package/lib/components/EmptyStates/assets/UnauthorizedIllustration.js +318 -0
  258. package/lib/components/EmptyStates/index.js +61 -0
  259. package/lib/components/ExampleComponent/ExampleComponent.js +169 -0
  260. package/lib/components/ExampleComponent/index.js +13 -0
  261. package/lib/components/ExportModal/ExportModal.js +298 -0
  262. package/lib/components/ExportModal/index.js +13 -0
  263. package/lib/components/ExpressiveCard/ExpressiveCard.js +161 -0
  264. package/lib/components/ExpressiveCard/index.js +13 -0
  265. package/lib/components/HTTPErrors/HTTPError403/HTTPError403.js +98 -0
  266. package/lib/components/HTTPErrors/HTTPError403/index.js +13 -0
  267. package/lib/components/HTTPErrors/HTTPError404/HTTPError404.js +98 -0
  268. package/lib/components/HTTPErrors/HTTPError404/index.js +13 -0
  269. package/lib/components/HTTPErrors/HTTPErrorContent.js +90 -0
  270. package/lib/components/HTTPErrors/HTTPErrorOther/HTTPErrorOther.js +98 -0
  271. package/lib/components/HTTPErrors/HTTPErrorOther/index.js +13 -0
  272. package/lib/components/HTTPErrors/assets/HTTPErrorSvg403.js +1251 -0
  273. package/lib/components/HTTPErrors/assets/HTTPErrorSvg404.js +1050 -0
  274. package/lib/components/HTTPErrors/assets/HTTPErrorSvgOther.js +1101 -0
  275. package/lib/components/HTTPErrors/index.js +29 -0
  276. package/lib/components/ImportModal/ImportModal.js +443 -0
  277. package/lib/components/ImportModal/index.js +13 -0
  278. package/lib/components/LoadingBar/LoadingBar.js +174 -0
  279. package/lib/components/LoadingBar/index.js +13 -0
  280. package/lib/components/ModifiedTabs/ModifiedTabLabelNew.js +48 -0
  281. package/lib/components/ModifiedTabs/ModifiedTabLabelWithClose.js +68 -0
  282. package/lib/components/ModifiedTabs/ModifiedTabs.js +137 -0
  283. package/lib/components/ModifiedTabs/index.js +13 -0
  284. package/lib/components/NotificationsPanel/NotificationsPanel.js +569 -0
  285. package/lib/components/NotificationsPanel/NotificationsPanel_data.js +146 -0
  286. package/lib/components/NotificationsPanel/index.js +13 -0
  287. package/lib/components/NotificationsPanel/preview-components/UnreadNotificationBell.js +58 -0
  288. package/lib/components/NotificationsPanel/utils.js +65 -0
  289. package/lib/components/OptionsTile/OptionsTile.js +327 -0
  290. package/lib/components/OptionsTile/index.js +13 -0
  291. package/lib/components/PageHeader/PageHeader.js +812 -0
  292. package/lib/components/PageHeader/PageHeaderDemo.data.js +623 -0
  293. package/lib/components/PageHeader/PageHeaderTitle.js +63 -0
  294. package/lib/components/PageHeader/PageHeaderUtils.js +205 -0
  295. package/lib/components/PageHeader/index.js +13 -0
  296. package/lib/components/ProductiveCard/ProductiveCard.js +141 -0
  297. package/lib/components/ProductiveCard/index.js +13 -0
  298. package/lib/components/RemoveModal/RemoveModal.js +210 -0
  299. package/lib/components/RemoveModal/index.js +13 -0
  300. package/lib/components/Saving/Saving.js +175 -0
  301. package/lib/components/Saving/index.js +13 -0
  302. package/lib/components/SidePanel/SidePanel.js +668 -0
  303. package/lib/components/SidePanel/constants.js +21 -0
  304. package/lib/components/SidePanel/index.js +13 -0
  305. package/lib/components/StatusIcon/StatusIcon.js +145 -0
  306. package/lib/components/StatusIcon/index.js +13 -0
  307. package/lib/components/TagSet/TagSet.js +352 -0
  308. package/lib/components/TagSet/TagSetModal.js +139 -0
  309. package/lib/components/TagSet/TagSetOverflow.js +147 -0
  310. package/lib/components/TagSet/index.js +13 -0
  311. package/lib/components/Tearsheet/Tearsheet.js +192 -0
  312. package/lib/components/Tearsheet/TearsheetNarrow.js +160 -0
  313. package/lib/components/Tearsheet/TearsheetShell.js +420 -0
  314. package/lib/components/Tearsheet/index.js +21 -0
  315. package/lib/components/Toolbar/Toolbar.js +72 -0
  316. package/lib/components/Toolbar/ToolbarButton.js +72 -0
  317. package/lib/components/Toolbar/ToolbarGroup.js +52 -0
  318. package/lib/components/Toolbar/index.js +29 -0
  319. package/lib/components/UserProfileImage/UserProfileImage.js +146 -0
  320. package/lib/components/UserProfileImage/index.js +13 -0
  321. package/lib/components/WebTerminal/WebTerminal.js +186 -0
  322. package/lib/components/WebTerminal/index.js +13 -0
  323. package/lib/components/WebTerminal/preview-components/Navigation.js +44 -0
  324. package/lib/components/WebTerminal/preview-components/documentationLinks.js +32 -0
  325. package/lib/components/WebTerminal/preview-components/index.js +15 -0
  326. package/lib/components/_Canary/Canary.js +54 -0
  327. package/lib/components/_Canary/index.js +13 -0
  328. package/lib/components/index.js +343 -0
  329. package/lib/generated/feature-flags/feature-flags.js +22 -0
  330. package/lib/global/js/hooks/index.js +75 -0
  331. package/lib/global/js/hooks/useClickOutside.js +31 -0
  332. package/lib/global/js/hooks/useCreateComponentFocus.js +48 -0
  333. package/lib/global/js/hooks/useCreateComponentStepChange.js +263 -0
  334. package/lib/global/js/hooks/usePreviousValue.js +29 -0
  335. package/lib/global/js/hooks/useResetCreateComponent.js +50 -0
  336. package/lib/global/js/hooks/useValidCreateStepCount.js +33 -0
  337. package/lib/global/js/hooks/useWindowResize.js +79 -0
  338. package/lib/global/js/hooks/useWindowScroll.js +91 -0
  339. package/lib/global/js/package-settings.js +166 -0
  340. package/lib/global/js/utils/ClickListener.js +89 -0
  341. package/lib/global/js/utils/Wrap.js +93 -0
  342. package/lib/global/js/utils/devtools.js +31 -0
  343. package/lib/global/js/utils/getFocusableElements.js +25 -0
  344. package/lib/global/js/utils/hasValidType.js +110 -0
  345. package/lib/global/js/utils/keyboardNavigation.js +45 -0
  346. package/lib/global/js/utils/pconsole.js +53 -0
  347. package/lib/global/js/utils/props-helper.js +304 -0
  348. package/lib/global/js/utils/scrollableAncestor.js +48 -0
  349. package/lib/global/js/utils/story-helper.js +100 -0
  350. package/lib/global/js/utils/test-helper.js +342 -0
  351. package/lib/global/js/utils/unwrap-if-fragment.js +82 -0
  352. package/lib/global/js/utils/uuidv4.js +20 -0
  353. package/lib/global/js/utils/uuidv4.spec.js +28 -0
  354. package/lib/global/js/utils/wait.js +16 -0
  355. package/lib/global/js/utils/wrapFocus.js +84 -0
  356. package/lib/index.js +30 -0
  357. package/lib/settings.js +92 -0
  358. package/package.json +9 -8
  359. package/scss/components/APIKeyModal/_api-key-modal.scss +63 -0
  360. package/scss/components/APIKeyModal/_index.scss +10 -0
  361. package/scss/components/APIKeyModal/_storybook-styles.scss +33 -0
  362. package/scss/components/AboutModal/_about-modal.scss +116 -0
  363. package/scss/components/AboutModal/_index.scss +8 -0
  364. package/scss/components/AboutModal/_storybook-styles.scss +15 -0
  365. package/scss/components/ActionBar/_action-bar.scss +67 -0
  366. package/scss/components/ActionBar/_index.scss +8 -0
  367. package/scss/components/ActionSet/_action-set.scss +114 -0
  368. package/scss/components/ActionSet/_index.scss +8 -0
  369. package/scss/components/ActionSet/_storybook-styles.scss +38 -0
  370. package/scss/components/BreadcrumbWithOverflow/_breadcrumb-with-overflow.scss +86 -0
  371. package/scss/components/BreadcrumbWithOverflow/_index.scss +8 -0
  372. package/scss/components/ButtonMenu/_button-menu.scss +36 -0
  373. package/scss/components/ButtonMenu/_index.scss +8 -0
  374. package/scss/components/ButtonMenu/_storybook-styles.scss +6 -0
  375. package/scss/components/ButtonSetWithOverflow/_button-set-with-overflow.scss +52 -0
  376. package/scss/components/ButtonSetWithOverflow/_index.scss +8 -0
  377. package/scss/components/Card/_card.scss +121 -0
  378. package/scss/components/Card/_index.scss +10 -0
  379. package/scss/components/Card/_storybook-styles.scss +12 -0
  380. package/scss/components/Cascade/_cascade.scss +50 -0
  381. package/scss/components/Cascade/_index.scss +10 -0
  382. package/scss/components/Cascade/_storybook-styles.scss +32 -0
  383. package/scss/components/ComboButton/_combo-button.scss +64 -0
  384. package/scss/components/ComboButton/_index.scss +10 -0
  385. package/scss/components/CreateFullPage/_create-full-page.scss +187 -0
  386. package/scss/components/CreateFullPage/_index.scss +8 -0
  387. package/scss/components/CreateFullPage/_storybook-styles.scss +51 -0
  388. package/scss/components/CreateInfluencer/_create-influencer.scss +89 -0
  389. package/scss/components/CreateInfluencer/_index.scss +8 -0
  390. package/scss/components/CreateModal/_create-modal.scss +81 -0
  391. package/scss/components/CreateModal/_index.scss +8 -0
  392. package/scss/components/CreateModal/_storybook-styles.scss +50 -0
  393. package/scss/components/CreateSidePanel/_create-side-panel.scss +99 -0
  394. package/scss/components/CreateSidePanel/_index.scss +8 -0
  395. package/scss/components/CreateSidePanel/_storybook-styles.scss +27 -0
  396. package/scss/components/CreateTearsheet/_create-tearsheet.scss +136 -0
  397. package/scss/components/CreateTearsheet/_index.scss +8 -0
  398. package/scss/components/CreateTearsheet/_storybook-styles.scss +53 -0
  399. package/scss/components/CreateTearsheetNarrow/_create-tearsheet-narrow.scss +68 -0
  400. package/scss/components/CreateTearsheetNarrow/_index.scss +8 -0
  401. package/scss/components/CreateTearsheetNarrow/_storybook-styles.scss +32 -0
  402. package/scss/components/EditSidePanel/_edit-side-panel.scss +66 -0
  403. package/scss/components/EditSidePanel/_index.scss +8 -0
  404. package/scss/components/EditSidePanel/_storybook-styles.scss +35 -0
  405. package/scss/components/EmptyStates/_empty-state.scss +62 -0
  406. package/scss/components/EmptyStates/_index.scss +8 -0
  407. package/scss/components/EmptyStates/_storybook-styles.scss +6 -0
  408. package/scss/components/ExampleComponent/_example-component.scss +39 -0
  409. package/scss/components/ExampleComponent/_index.scss +8 -0
  410. package/scss/components/ExampleComponent/_storybook-styles.scss +6 -0
  411. package/scss/components/ExportModal/_export-modal.scss +61 -0
  412. package/scss/components/ExportModal/_index.scss +10 -0
  413. package/scss/components/ExportModal/_storybook-styles.scss +6 -0
  414. package/scss/components/ExpressiveCard/_expressive-card.scss +25 -0
  415. package/scss/components/ExpressiveCard/_index.scss +10 -0
  416. package/scss/components/ExpressiveCard/_storybook-styles.scss +25 -0
  417. package/scss/components/HTTPErrors/_http-errors.scss +72 -0
  418. package/scss/components/HTTPErrors/_index.scss +8 -0
  419. package/scss/components/HTTPErrors/_storybook-styles.scss +6 -0
  420. package/scss/components/ImportModal/_import-modal.scss +88 -0
  421. package/scss/components/ImportModal/_index.scss +8 -0
  422. package/scss/components/ImportModal/_storybook-styles.scss +6 -0
  423. package/scss/components/LoadingBar/_index.scss +8 -0
  424. package/scss/components/LoadingBar/_loading-bar.scss +211 -0
  425. package/scss/components/LoadingBar/_storybook-styles.scss +19 -0
  426. package/scss/components/ModifiedTabs/_index.scss +1 -0
  427. package/scss/components/ModifiedTabs/_modified-tabs.scss +72 -0
  428. package/scss/components/ModifiedTabs/_storybook-styles.scss +6 -0
  429. package/scss/components/NotificationsPanel/_index.scss +8 -0
  430. package/scss/components/NotificationsPanel/_notifications-panel.scss +285 -0
  431. package/scss/components/NotificationsPanel/_storybook-styles.scss +6 -0
  432. package/scss/components/OptionsTile/_index.scss +8 -0
  433. package/scss/components/OptionsTile/_options-tile.scss +221 -0
  434. package/scss/components/OptionsTile/_storybook-styles.scss +33 -0
  435. package/scss/components/PageHeader/_index.scss +10 -0
  436. package/scss/components/PageHeader/_page-header.scss +641 -0
  437. package/scss/components/PageHeader/_storybook-styles.scss +76 -0
  438. package/scss/components/ProductiveCard/_index.scss +10 -0
  439. package/scss/components/ProductiveCard/_productive-card.scss +71 -0
  440. package/scss/components/ProductiveCard/_storybook-styles.scss +22 -0
  441. package/scss/components/RemoveModal/_index.scss +10 -0
  442. package/scss/components/RemoveModal/_remove-modal.scss +40 -0
  443. package/scss/components/RemoveModal/_storybook-styles.scss +6 -0
  444. package/scss/components/Saving/_index.scss +10 -0
  445. package/scss/components/Saving/_saving.scss +42 -0
  446. package/scss/components/Saving/_storybook-styles.scss +12 -0
  447. package/scss/components/SidePanel/_index.scss +8 -0
  448. package/scss/components/SidePanel/_side-panel-variables.scss +14 -0
  449. package/scss/components/SidePanel/_side-panel.scss +496 -0
  450. package/scss/components/SidePanel/_storybook-styles.scss +38 -0
  451. package/scss/components/StatusIcon/_index.scss +8 -0
  452. package/scss/components/StatusIcon/_status-icon.scss +139 -0
  453. package/scss/components/StatusIcon/_storybook-styles.scss +6 -0
  454. package/scss/components/TagSet/_index.scss +8 -0
  455. package/scss/components/TagSet/_tag-set.scss +162 -0
  456. package/scss/components/Tearsheet/_index.scss +8 -0
  457. package/scss/components/Tearsheet/_storybook-styles.scss +24 -0
  458. package/scss/components/Tearsheet/_tearsheet.scss +308 -0
  459. package/scss/components/Toolbar/_index.scss +8 -0
  460. package/scss/components/Toolbar/_toolbar.scss +78 -0
  461. package/scss/components/UserProfileImage/_color-map.scss +39 -0
  462. package/scss/components/UserProfileImage/_index.scss +8 -0
  463. package/scss/components/UserProfileImage/_storybook.scss +6 -0
  464. package/scss/components/UserProfileImage/_user-profile-image.scss +137 -0
  465. package/scss/components/WebTerminal/_index.scss +1 -0
  466. package/scss/components/WebTerminal/_storybook-styles.scss +14 -0
  467. package/scss/components/WebTerminal/_web-terminal.scss +70 -0
  468. package/scss/components/_Canary/_canary.scss +9 -0
  469. package/scss/components/_index-released-only.scss +34 -0
  470. package/scss/components/_index.scss +44 -0
  471. package/scss/generated/feature-flags/_feature-flags.scss +19 -0
  472. package/scss/global/styles/_generate-carbon-modules.scss +14 -0
  473. package/scss/global/styles/_imported-carbon-modules.scss +25 -0
  474. package/scss/global/styles/_mixins.scss +22 -0
  475. package/scss/global/styles/_project-settings.scss +22 -0
  476. package/scss/index-full-carbon.scss +11 -0
  477. package/scss/index-without-carbon-released-only.scss +13 -0
  478. package/scss/index-without-carbon.scss +13 -0
  479. package/scss/index.scss +10 -0
@@ -0,0 +1 @@
1
+ {"version":3,"sourceRoot":"","sources":["../../../node_modules/@carbon/type/scss/_styles.import.scss","../../../node_modules/carbon-components/scss/globals/scss/vendor/@carbon/elements/scss/type/_styles.import.scss","../../../node_modules/carbon-components/scss/globals/scss/_typography.import.scss","../../../node_modules/carbon-components/scss/globals/scss/vendor/@carbon/elements/scss/layout/_key-height.import.scss","../src/components/AboutModal/_about-modal.scss","../../../node_modules/carbon-components/scss/globals/scss/vendor/@carbon/elements/scss/themes/generated/_mixins.scss","../../../node_modules/carbon-components/scss/globals/scss/vendor/@carbon/elements/scss/type/_font-family.scss","../../../node_modules/carbon-components/scss/components/loading/_keyframes.scss","../../../node_modules/carbon-components/scss/components/inline-loading/_keyframes.scss","../src/components/APIKeyModal/_api-key-modal.scss","../src/components/ActionSet/_action-set.scss","../../../node_modules/carbon-components/scss/globals/scss/vendor/@carbon/elements/scss/grid/_mixins.import.scss","../src/components/Cascade/_cascade.scss","../src/components/CreateModal/_create-modal.scss","../../../node_modules/carbon-components/scss/globals/scss/vendor/@carbon/elements/scss/layout/_breakpoint.scss","../src/components/CreateInfluencer/_create-influencer.scss","../../../node_modules/carbon-components/scss/globals/scss/vendor/@carbon/elements/scss/motion/motion.scss","../src/components/CreateFullPage/_create-full-page.scss","../src/components/SidePanel/_side-panel.scss","../src/components/SidePanel/_side-panel-variables.scss","../src/components/CreateSidePanel/_create-side-panel.scss","../src/components/Tearsheet/_tearsheet.scss","../src/components/CreateTearsheetNarrow/_create-tearsheet-narrow.scss","../src/components/CreateTearsheet/_create-tearsheet.scss","../../../node_modules/carbon-components/scss/globals/scss/_motion.scss","../src/components/EmptyStates/_empty-state.scss","../src/components/ExportModal/_export-modal.scss","../src/components/Card/_card.scss","../src/components/ExpressiveCard/_expressive-card.scss","../src/components/HTTPErrors/_http-errors.scss","../src/components/ImportModal/_import-modal.scss","../src/components/NotificationsPanel/_notifications-panel.scss","../../../node_modules/carbon-components/scss/globals/scss/vendor/@carbon/elements/scss/themes/_mixins.scss","../src/components/ActionBar/_action-bar.scss","../src/global/styles/_mixins.scss","../src/components/BreadcrumbWithOverflow/_breadcrumb-with-overflow.scss","../src/components/TagSet/_tag-set.scss","../src/components/ButtonMenu/_button-menu.scss","../src/components/ButtonSetWithOverflow/_button-set-with-overflow.scss","../src/components/PageHeader/_page-header.scss","../../../node_modules/@carbon/layout/scss/_breakpoint.scss","../src/components/ProductiveCard/_productive-card.scss","../src/components/RemoveModal/_remove-modal.scss","../src/components/Saving/_saving.scss","../src/components/StatusIcon/_status-icon.scss","../../../node_modules/carbon-components/scss/globals/scss/vendor/@carbon/elements/scss/colors/mixins.scss","../src/components/UserProfileImage/_user-profile-image.scss"],"names":[],"mappings":"AAuB0C;AACnB;AACN;AAFyB;AACnB;AACN;ACFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AEFK;AACD;AFDW;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AEFK;AACD;ADDL;ADAgB;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AEFK;AACD;ACHnB;EACE;;;AAGF;EACE,QCi8Ba;;;AD97Bf;EACE;EACA;EACA;;;AAGF;EH8qBE;EAAA;EAAA;EAAA;EG3qBA,OCyXU;;;ADtXZ;EHwqBE;EAAA;EAAA;EAAA;EGrqBA,YCm/BY;EDl/BZ;EACA;EACA;EACA;;;AAGF;EACE;EAEA;;;AAGF;EAGE;;;AAGF;EACE,YC25Ba;;;ADx5Bf;EACE,cC+4Ba;ED94Bb;EACA,aC64Ba;;;AD14Bf;AAAA;EAEE,YCw5Ba;EDv5Bb;EACA,OCsVU;;;ADnVZ;EACE,YC04Ba;;;ADv4Bf;EACE;EACA;EACA;EACA;EACA,kBCkYa;EDjYb,OC6Xa;;;AD1Xf;EACE;EACA;;;AAGF;AAAA;EH+mBE;EAAA;EAAA;EAAA;EG3mBA,cCq3Ba;EDp3Bb;EACA;EACA,OC8Wa;;;AD3Wf;EExCA;;;AN7CwC;AACnB;AACN;ACFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AEFK;AACD;AFDW;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AEFK;AACD;ADDL;ADAgB;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;AAFe;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AEFK;AACD;ADDL;ADAgB;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;AMfjB;EACE;IACE;;EAEF;IACE;;;AAIJ;EACE;IACE;;;AAIJ;EACE;IACE;;;AAIJ;AACA;EACE;IACE;;EAEF;IACE;;;AAIJ;EACE;IACE;;EAEF;IACE;;;ACvCJ;EACE;IACE;;;ANcY;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AEFK;AACD;ADDL;ADAgB;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;AQHf;EACE;;;AAGF;EACE;;;AAGF;EACE,eJ47Ba;;;AIz7Bf;EACE;EACA,eJu7Ba;;;AIp7Bf;EACE;EACA;EACA,YJy6Ba;;;AIt6Bf;EACE;EACA,aJo6Ba;EJlQb;EAAA;EAAA;EAAA;;;AQ9pBF;EACE;;;AAGF;EACE,MJ2cY;;;AL5e0B;AACnB;AACN;AEFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AEFK;AACD;ADDL;ADAgB;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;AMfjB;EACE;IACE;;EA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ACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AEFK;AACD;AFDW;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AEFK;AACD;ADDL;ADAgB;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AEFK;AACD;ADDL;ADAgB;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ADFyB;AACnB;AACN;ACFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AEFK;AACD;ADDL;ADAgB;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AEFK;AACD;AFDW;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AEFK;AACD;ADDL;ADAgB;AACT;AACN;AAFe;AACT;AACN;AcVf;EACE;IACE;IAEA;;EAEF;IACE;IACA;;;AAGJ;EACE;IACE;IACA;;EAEF;IACE;IAEA;;;AAGJ;EACE;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;;;AAGF;EACE,SV46Ba;;;AUz6Bf;EACE,SVw6Ba;EUv6Bb;EACA;;;AAEF;AAAA;EAGE;EACA;ECaF;;;ADTA;AAAA;EAGE;EACA;ECKF;;;ADDA;EACE;AAAA;AAAA;AAAA;IAIE;IACA;;;Af1DoC;AACnB;AACN;AEFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AEFK;AACD;ADDL;ADAgB;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;AMfjB;EACE;IACE;;EAEF;IACE;;;AAIJ;EACE;IACE;;;AAIJ;EACE;IACE;;;AAIJ;AACA;EACE;IACE;;EAEF;IACE;;;AAIJ;EACE;IACE;;EAEF;IACE;;;ACvCJ;EACE;IACE;;;ASwBF;EACE,OZ6XU;;;AY1XZ;EACE,aZy7Ba;EYx7Bb;EACA;;;AAGF;AAAA;EAEE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;AAAA;EhBypBE;EAAA;EAAA;EAAA;EgBrpBA;EACA,eZs5Ba;;;AYn5Bf;AAAA;EhBipBE;EAAA;EAAA;EAAA;EgB7oBA;EACA,eZ05Ba;;;AYv5Bf;EACE;;;AAGF;EACE,eZ84Ba;;;AY34Bf;EACE;;;AAGF;EACE;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;;;AAGF;EACE;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA,kBZsRgB;EYrRhB,OZ6SU;EY5SV;;;AAGF;EACE;EACA,gBZ22Ba;;;AYx2Bf;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;;AAGA;EACE;EACA;EACA;EACA;EACA;EACA,kBZgQM;EY/PN;;;AAIJ;AAAA;EhByjBE;EAAA;EAAA;EAAA;EgBrjBA;EACA,eZ8zBa;;;AY3zBf;EACE;EACA;EACA;EACA,kBZuOQ;EYtOR;EACA;;;AAGF;EACE,SZqzBa;;;AYlzBf;EACE,SZizBa;EYhzBb;EACA;;;AAGF;EACE;;;AjB7JsC;AACnB;AACN;AEFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ADFyB;AACnB;AACN;ACFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;ACFD;ADAgB;AACT;AACN;AUEe;AACd;ATLF;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AEFK;AACD;ADDL;ADAgB;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ADFyB;AACnB;AACN;AEFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AEFK;AACD;ADDL;ADAgB;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;AMfjB;EACE;IACE;;EAEF;IACE;;;AAIJ;EACE;IACE;;;AAIJ;EACE;IACE;;;AAIJ;AACA;EACE;IACE;;EAEF;IACE;;;AAIJ;EACE;IACE;;EAEF;IACE;;;ACvCJ;EACE;IACE;;;AUmFF;EACE;IACE;IACA;;EAEF;IACE;IAEA;;;AAIJ;EACE;IACE;IACA;;EAEF;IACE;IAEA;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;EACA,Kby2Ba;Eax2Bb;EACA;EACA,kBbsQQ;EarQR,ObyRU;EaxRV;EACA;;AAEE;EAtEJ,WC7DiB;ED8DjB,WC9DiB;;ADqIX;AAAA;AAAA;AAAA;EAxEN,WC7DiB;ED8DjB,WC9DiB;;AD4Ib;EAzFJ,WCnDiB;EDoDjB,WCpDiB;ED+IX;EACA;;AA5HN;EACE;IACE;IAEA;;EAEF;IACE;IACA;;;AAsHA;EA/FJ,WCnDiB;EDoDjB,WCpDiB;EDqJX;EACA;;AApHN;EACE;IACE;IAEA;;EAEF;IACE;IACA;;;AAyFA;EAtEJ,WC7DiB;ED8DjB,WC9DiB;;ADqIX;AAAA;AAAA;AAAA;EAxEN,WC7DiB;ED8DjB,WC9DiB;;AD4Ib;EAzFJ,WCnDiB;EDoDjB,WCpDiB;ED+IX;EACA;;AA5HN;EACE;IACE;IAEA;;EAEF;IACE;IACA;;;AAsHA;EA/FJ,WCnDiB;EDoDjB,WCpDiB;EDqJX;EACA;;AApHN;EACE;IACE;IAEA;;EAEF;IACE;IACA;;;AAyFA;EAtEJ,WC7DiB;ED8DjB,WC9DiB;;ADqIX;AAAA;AAAA;AAAA;EAxEN,WC7DiB;ED8DjB,WC9DiB;;AD4Ib;EAzFJ,WCnDiB;EDoDjB,WCpDiB;ED+IX;EACA;;AA5HN;EACE;IACE;IAEA;;EAEF;IACE;IACA;;;AAsHA;EA/FJ,WCnDiB;EDoDjB,WCpDiB;EDqJX;EACA;;AApHN;EACE;IACE;IAEA;;EAEF;IACE;IACA;;;AAyFA;EAtEJ,WC7DiB;ED8DjB,WC9DiB;;ADqIX;AAAA;AAAA;AAAA;EAxEN,WC7DiB;ED8DjB,WC9DiB;;AD4Ib;EAzFJ,WCnDiB;EDoDjB,WCpDiB;ED+IX;EACA;;AA5HN;EACE;IACE;IAEA;;EAEF;IACE;IACA;;;AAsHA;EA/FJ,WCnDiB;EDoDjB,WCpDiB;EDqJX;EACA;;AApHN;EACE;IACE;IAEA;;EAEF;IACE;IACA;;;AAyFA;EAtEJ,WC7DiB;ED8DjB,WC9DiB;;ADqIX;AAAA;AAAA;AAAA;EAxEN,WC7DiB;ED8DjB,WC9DiB;;AD4Ib;EAzFJ,WCnDiB;EDoDjB,WCpDiB;ED+IX;EACA;;AA5HN;EACE;IACE;IAEA;;EAEF;IACE;IACA;;;AAsHA;EA/FJ,WCnDiB;EDoDjB,WCpDiB;EDqJX;EACA;;AApHN;EACE;IACE;IAEA;;EAEF;IACE;IACA;;;AAiHE;EACE;;AAIF;EA9FN;EACA;EACA;EACA;EACA;EACA,kBbiiBkB;EahiBlB;EACA;;AA4FE;EACE;;AAEF;EACE;EACA;EACA;EACA;EAIA;EACA,kBbmNM;;AalNN;EAhHJ;EACA;EACA;EACA;EACA;EACA,kBbiiBkB;EahiBlB;EACA;;AA4GI;EACE,Kb8yBS;;Aa5yBX;EACE;;AAEF;EACE;EACA;;AAEF;EACE;;AAGJ;EACE;;AAEF;EAEE;;AAEF;EAEE;;AAEF;EAGE;;AAKF;EjBofA;EAAA;EAAA;EAAA;EiB7nBF;EACA;EACA,ebq5Be;Eap5Bf;EACA;EAyII;EACA;EACA,kBbwKM;EavKN;EAEA;;AAEF;EjByeA;EAAA;EAAA;EAAA;EiBteE;EACA,eb+uBW;Ea9uBX;EACA;EAEA;EACA;;AAEF;EjB8dA;EAAA;EAAA;EAAA;EiB7nBF;EACA;EACA,ebq5Be;Eap5Bf;EACA;EA+JI;EACA,KbmuBW;EaluBX;EAEA;;AAEF;EjBodA;EAAA;EAAA;EAAA;EiBjdE;EACA;EACA;EACA;EACA;;AAEF;EACE;EACA;EAEA;EACA,kBbgIM;;Aa7HR;EACE;;AAGF;EACE,abwsBW;EavsBX,ebutBW;;AaptBb;EACE;;AAGF;EACE;EACA,Kb8sBW;Ea7sBX;;AAGF;EACE;EACA;EAEA;EAKA;;AAGF;EACE;;AAKF;EACE;EAQA,ab+pBW;;Aa5pBb;EACE;EAEA;AAAA;AAAA;AAAA;EAIA;EACA;;AAGF;EAGE;AAAA;AAAA;AAAA;;AAMF;EACE;EACA,ebsoBW;;AapoBb;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA,ebonBW;EannBX,kBb2CM;Ea1CN;EACA;;AACA;EACE;;AACA;EACE;EACA,ObwDI;;AatDN;EACE,abymBO;;AavmBT;EACE,cbsmBO;;AajmBb;EACE;EACA;EACA;EACA;;AAEF;AAAA;EAEE;EACA;EACA,ObmCQ;;AajCV;EACE;EACA;EACA,KbklBW;EajlBX,ObylBW;EaxlBX;EACA;EACA;EACA,kBbKM;;AaHR;EAEE;;AAEF;EACE,Sb8kBW;Ea7kBX;;AAEF;EA5UF,WA8U0B;EA7U1B,WA6U0B;;AAExB;EACE;EACA;EACA;EACA,kBbbM;;AacN;EAaE;;AAZA;EACE;EACA;;AJ5QJ;EIyQA;IAOI;;EACA;IACE;;;AAMN;EACE,QbsnBQ;;AapnBV;EAEE,Qb8mBQ;;;AaxmBd;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAQE,kBbwBW;;;AarBb;EACE;IACE;;EAEF;IACE;;;AAIJ;EACE;IACE;;EAEF;IACE;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA,kBbwBa;EavBb;EACA;;;AEldF;EAEE;;;AAIA;EAEE;EAEA;EACA,ef66BW;;;Ae36Bb;EAEE;EAEA;EACA,gBfk7BW;Eej7BX;EACA,OfwXQ;;;AetYV;EAEE;EAEA;EACA,ef66BW;;;Ae36Bb;EAEE;EAEA;EACA,gBfk7BW;Eej7BX;EACA,OfwXQ;;;AetYV;EAEE;EAEA;EACA,ef66BW;;;Ae36Bb;EAEE;EAEA;EACA,gBfk7BW;Eej7BX;EACA,OfwXQ;;;AetYV;EAEE;EAEA;EACA,ef66BW;;;Ae36Bb;EAEE;EAEA;EACA,gBfk7BW;Eej7BX;EACA,OfwXQ;;;AetYV;EAEE;EAEA;EACA,ef66BW;;;Ae36Bb;EAEE;EAEA;EACA,gBfk7BW;Eej7BX;EACA,OfwXQ;;;AepXZ;EACE,af26Ba;;;Aex6Bf;EACE,af+5Ba;;;Ae55Bf;EACE,efm6Ba;;;Aeh6Bf;EnBspBE;EAAA;EAAA;EAAA;EmBnpBA,gBfq5Ba;;;Ael5Bf;EnBgpBE;EAAA;EAAA;EAAA;;;AmB5oBF;EAEE;;;AAGF;EnBuoBE;EAAA;EAAA;EAAA;EmBpoBA,efk4Ba;;;Ae/3Bf;EnBioBE;EAAA;EAAA;EAAA;EmB9nBA,efg4Ba;Ee/3Bb,Of+UU;;;Ae7UZ;EACE;EACA;EACA;EACA;EACA;EACA;;;ApBrEsC;AACnB;AACN;AEFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ADFyB;AACnB;AACN;ACFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AEFK;AACD;AFDW;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AEFK;AACD;ADDL;ADAgB;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ADFyB;AACnB;AACN;AEFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AEFK;AACD;ADDL;ADAgB;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;AMfjB;EACE;IACE;;EAEF;IACE;;;AAIJ;EACE;IACE;;;AAIJ;EACE;IACE;;;AAIJ;AACA;EACE;IACE;;EAEF;IACE;;;AAIJ;EACE;IACE;;EAEF;IACE;;;ACvCJ;EACE;IACE;;;AaqBA;EACE;EACA;EACA,OhB8XQ;EgB5XR;EAGA;EACA;;AAGF;EACE;EACA;EAEA;;AAKF;EACE;EAEA;;AAGF;EACE;EAEA;;AAGF;EACE;EAEA;;AAGF;EAGE;;AAGF;EACE;EACA;EACA;EAMA;;AAIF;EACE;;AAIF;EAEE;;AAGF;EACE;;AAGF;EACE;;AAGF;EAEE;AAAA;AAAA;;AAKF;EACE;;AAKF;EACE;;APwBA;EOpBA;IACE;;;AAIJ;EAEE;;AAGF;EACE;;AAGF;EACE;EACA;EACA;;AAGF;EACE;;AAGF;EACE,ShBs0BW;EgBr0BX;;AAGF;EACE,ehBi0BW;EgBh0BX,chBg1BW;;AgB70Bb;EACE;EACA;;AAGF;EACE;;AAGF;EACE;EACA,chBszBW;;AgBlzBb;EAGE,ahBmyBW;;AgBhyBb;EACE;;AAGF;EpB0hBA;EAAA;EAAA;EAAA;;AoBrhBA;EACE;EACA;EACA;EACA,YhB2xBW;EJ1Qb;EAAA;EAAA;EAAA;EoB9gBE;EACA;;APpDA;EO4CF;IAWI;;;AAIJ;EACE,YhBuwBW;;AgBpwBb;EACE;;AAGF;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EACE;;AAGF;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE,YhBqIc;;AgBlId;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAUE,kBhBgMO;;AgB5LT;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAQE,kBhBwLO;;AgBpLX;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EACE,YhB2Fc;;;AiB/WlB;AAAA;AAAA;EAGE;EACA;;;AAGF;EACE,YjB+6Ba;;;AiB56Bf;EACE;;;AAGF;EACE,SjBm7Ba;;;AiBh7Bf;EACE,ajB+6Ba;;;AiB56Bf;EACE,ejB26Ba;;AiB16Bb;EACE;;;AAIJ;ErB2pBE;EAAA;EAAA;EAAA;EqBxpBA,gBjB05Ba;;;AiBv5Bf;ErBqpBE;EAAA;EAAA;EAAA;;;AD1rBsC;AACnB;AACN;ACFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;ACFD;ADAgB;AACT;AACN;AUEe;AACd;AVLc;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AEFK;AACD;ADDL;ADAgB;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AEFK;AACD;AFDW;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AEFK;AACD;ADDL;ADAgB;AACT;AACN;AAFe;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;ACFD;ADAgB;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;ACFD;ADAgB;AACT;AACN;AEFK;AACD;AHDqB;AACnB;AACN;ACFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AEFK;AACD;AFDW;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AEFK;AACD;ADDL;ADAgB;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ADFyB;AACnB;AACN;AEFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AEFK;AACD;ADDL;ADAgB;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;AMfjB;EACE;IACE;;EAEF;IACE;;;AAIJ;EACE;IACE;;;AAIJ;EACE;IACE;;;AAIJ;AACA;EACE;IACE;;EAEF;IACE;;;AAIJ;EACE;IACE;;EAEF;IACE;;;ACvCJ;EACE;IACE;;;ARcsC;AACnB;AACN;ACFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AEFK;AACD;ADDL;ADAgB;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AEFK;AACD;AFDW;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AEFK;AACD;ADDL;ADAgB;AACT;AACN;AAFe;AACT;AACN;AsBAf;EACE;IACE;IAEA;;EAEF;IACE;IACA;;;AASJ;EACE;;;AAGF;AAAA;EAEE;;;AAGF;EACE;;;AAGF;EACE;EACA;EACA,2BCmCsB;EDlCtB;;;AAGF;EACE;IACE;IACA;;;AAIJ;EACE;EACA,SlBw5Ba;EkBv5Bb;;;AAGF;EACE;EACA;;;AAGF;EACE,gBlB84Ba;;;AkB34Bf;EAGE;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EAEA,kBlB6SQ;;;AkB1SV;AAAA;EAEE,elBg3Ba;;;AkB72Bf;AAAA;EtBmmBE;EAAA;EAAA;EAAA;EsB/lBA,elBi2Ba;;;AkB91Bf;AAAA;EtB4lBE;EAAA;EAAA;EAAA;EsBxlBA,elBs2Ba;;;AkBn2Bf;EACE;;;AAGF;EACE,elB01Ba;;;ALp8ByB;AACnB;AACN;AEFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AEFK;AACD;ADDL;ADAgB;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;AwBLf;EACE,OpB0YU;;AoBxYV;AAAA;EAEE,gBpBs7BW;EoBr7BX;;AAEF;ExBqrBA;EAAA;EAAA;EAAA;;AwBlrBA;ExBkrBA;EAAA;EAAA;EAAA;;;AwB5qBA;EACE,WpB68BW;EoB58BX,WpB48BW;;AoB18Bb;EACE,WpBq8BW;EoBp8BX,WpBo8BW;;;AoBh8Bf;AAAA;EAEE,YpB86Ba;;;AoB56Bf;EACE;;;AAEF;EACE;;;AzBhCsC;AACnB;AACN;AEFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AEFK;AACD;ADDL;ADAgB;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AEFK;AACD;AFDW;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AEFK;AACD;ADDL;ADAgB;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;AAFe;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AEFK;AACD;ADDL;ADAgB;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;AAFe;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AAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;ED0BA;EACA;EACA,K1Bw7Ba;E0Bv7Bb;EACA;EACA;EACA;EACA;EACA;EACA,kB1B6UgB;E0B5UhB,O1BoWU;E0BnWV;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA,kB1BkUc;;A0BjUd;EACE;EACA;EACA;;AAEF;EACE,Y1Bm4BS;;A0Bj4BX;EACE,O1BgVM;;A0B9UR;E9BgoBF;EAAA;EAAA;EAAA;E8B7nBI;;AAGJ;E9B0nBA;EAAA;EAAA;EAAA;EK7oBF;EyBuBI;EACA;EAEA;EACA;EACA,kB1B2SM;E0B1SN,O1BkUQ;;A0BhUV;AAAA;EAEE,kB1B8SM;;A0B7SN;AAAA;EACE;;AAGJ;EACE,c1BgaM;E0B/ZN;EACA;;AAEF;EACE;EACA;EACA;EACA;EACA;EACA,S1Bs2BW;E0Br2BX;EACA,kB1BgRc;E0B/Qd;EACA;EACA;EACA;;AACA;EACE,e1Bk1BS;E0Bj1BT,O1B6SM;ECvWZ;;AyB6DI;EACE,e1B60BS;E0B50BT,O1BwSM;ECvWZ;;AyBkEI;E9B2kBF;EAAA;EAAA;EAAA;;A8BxkBE;EACE;EACA,c1Bw0BS;;A0Bv0BT;EACE,M1BkVO;;A0BhVT;EACE,M1BmVO;;A0BjVT;EACE,M1BoVO;;A0BlVT;EACE,M1BqVO;;A0BjVT;EACE,e1BwzBO;;A0BtzBT;AAAA;E9BojBJ;EAAA;EAAA;EAAA;E8BhjBM,O1BkQI;;A0B/PJ;EACE;EACA;EACA;EACA;;AAEF;EACE;EACA;EACA;;AAGJ;AAAA;E9BiiBJ;EAAA;EAAA;EAAA;E8B7hBM;EACA;;AAEA;AAAA;EACE;;AAGA;AAAA;EACE;;AAIF;AAAA;EACE;;AAKR;EACE;EACA;EACA;EACA;EACA;EACA,O1BmNM;E0BlNN;;AACA;EAEE;;AAIN;AAAA;AAAA;EAGE;EACA;EACA;EACA;EACA;EACA,kB1BmLM;E0BlLN;EACA;EACA;;AAEF;AAAA;AAAA;EAME;;AAEF;EACE;EACA;EACA;EACA;EACA;EACA,Y1BwzBU;;A0BvzBV;E9BieF;EAAA;EAAA;EAAA;;A8B7dA;EACE;;AAEF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA,kB1BuIc;;A0BtId;EACE;EACA;EACA;EACA;EACA;EACA,O1BwJM;;A0BtJR;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA,O1B8IM;;A0B5IR;EACE;;;A/B7PkC;AACnB;AACN;ACFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;ACFD;ADAgB;AACT;AACN;AUEe;AACd;AVLc;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AEFK;AACD;AFDW;AACT;AACN;ACFD;ADAgB;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AEFK;AACD;ADDL;ADAgB;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;ADFyB;AACnB;AACN;AEFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AEFK;AACD;ADDL;ADAgB;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;AEFK;AACD;ADDL;ADAgB;AACT;AACN;AgCFb;EACE;;AAGF;EACE;EACA;EACA;;AAGF;EACE;;AAGF;EACE;;AAGF;EC3BF;EACA;EACA;EACA;EACA;EACA;EACA;;;AD4BE;EACE;;AAGF;EACE;EACA;EACA;;AAGF;EACE;;;AjCpCoC;AACnB;AACN;ACFe;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AEFK;AACD;AFDW;AACT;AACN;ACFD;ADAgB;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;AEFK;AACD;ADDL;ADAgB;AACT;AACN;AkCHb;EACE;;AAGF;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;;ArB6GA;EqB/GF;IAII;;;AAIJ;EACE;EACA;EACA;;AAGF;EDjCF;EACA;EACA;EACA;EACA;EACA;EACA;;ACgCE;EACE;;AAGF;EACE;EACA;;AAGF;EACE;EACA;EACA;EACA;;AAGF;EACE;;AAGF;EACE;EACA;;ArBsEA;EqBxEF;IAKI;;;;AnCtDkC;AACnB;AACN;ACFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AEFK;AACD;AFDW;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AEFK;AACD;ADDL;ADAgB;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AEFK;AACD;AFDW;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AEFK;AACD;ADDL;ADAgB;AACT;AACN;AAFe;AACT;AACN;AmCAb;EACE;EACA;;AAGF;EACE;EACA;EACA;EACA;;AAGF;EACE;;AAGF;EACE;;AAGF;EACE;EACA;;AAGF;EFpCF;EACA;EACA;EACA;EACA;EACA;EACA;;AEmCE;EACE;EACA;;AAGF;EACE;EACA;EACA;;;AAKF;EAEE;EACA;;AtByEA;EsBtEF;IAEI;IACA;;;AAIJ;EACE,Y/By4BW;E+Bx4BX;;AAGF;EACE;EACA,c/Bm4BW;E+Bl4BX,a/Bk4BW;;A+B/3Bb;EACE,gB/Bk4BW;;A+B/3Bb;EACE;EACA,c/By3BW;;A+Bt3Bb;EACE;EACA;EACA;EACA;EACA,Q/By3BW;E+Bx3BX;EACA;;;AAKF;EAEE;;AAGF;EACE;EACA;;AAGF;AAAA;EnCslBA;EAAA;EAAA;EAAA;EmCllBE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EAEE;;AAGF;EACE,kB/BsPc;E+BrPd,O/B6QQ;;A+B1QV;EACE,kB/ByZS;;A+BtZX;EACE;;;ApCnIoC;AACnB;AACN;AEFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AAC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ACT;AACN;AEFK;AACD;ADDL;ADAgB;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AEFK;AACD;AFDW;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AEFK;AACD;ADDL;ADAgB;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;AAFe;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AEFK;AACD;ADDL;ADAgB;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;AyCNf;EACE;;;AAGF;EACE,erCm8Ba;;;AqCh8Bf;EACE;;;AAGF;EACE;EACA,erC07Ba;;;ALp8ByB;AACnB;AACN;AEFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AEFK;AACD;ADDL;ADAgB;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;AMfjB;EACE;IACE;;EAEF;IACE;;;AAIJ;EACE;IACE;;;AAIJ;EACE;IACE;;;AAIJ;AACA;EACE;IACE;;EAEF;IACE;;;AAIJ;EACE;IACE;;EAEF;IACE;;;ACvCJ;EACE;IACE;;;AmCSF;EACE;;;AAGF;EACE,ctCo8Ba;;;AsCj8Bf;EACE,MtCweY;;;AsCred;E1CmrBE;EAAA;EAAA;EAAA;;;A0C/qBF;EACE;;;A3CZsC;AACnB;AACN;ACFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;ACFD;ADAgB;AACT;AACN;AUEe;AACd;ATLF;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AEFK;AACD;ADDL;ADAgB;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ADFyB;AACnB;AACN;AEFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AEFK;AACD;ADDL;ADAgB;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;AMfjB;EACE;IACE;;EAEF;IACE;;;AAIJ;EACE;IACE;;;AAIJ;EACE;IACE;;;AAIJ;AACA;EACE;IACE;;EAEF;IACE;;;AAIJ;EACE;IACE;;EAEF;IACE;;;ACvCJ;EACE;IACE;;;ARcsC;AACnB;AACN;A4CuDjB;EACE;IACE;;EAEF;IACE;;;AAIJ;EACE;EACA;;;AAGF;AAAA;EAGE,MCqpCoB;;;ADlpCtB;AAAA;AAAA;AAAA;EAOE,MCkkCmB;;;AD5jCf;EAeI;;AACA;EACE;IACE;;;;AAlBR;EAeI;;AACA;EACE;IACE;;;;AAlBR;EAeI;;AACA;EACE;IACE;;;;AAlBR;EAeI;;AACA;EACE;IACE;;;;AAlBR;EAeI;;AACA;EACE;IACE;;;;AAlBR;EAeI;;AACA;EACE;IACE;;;;AAlBR;EAeI;;AACA;EACE;IACE;;;;AAlBR;EAeI;;AACA;EACE;IACE;;;;AAlBR;EAeI;;AACA;EACE;IACE;;;;AAlBR;EAeI;;AACA;EACE;IACE;;;;AAlBR;EAeI;;AACA;EACE;IACE;;;;AAlBR;EAeI;;AACA;EACE;IACE;;;;AAlBR;EAeI;;AACA;EACE;IACE;;;;AAlBR;EAeI;;AACA;EACE;IACE;;;;AAlBR;EAeI;;AACA;EACE;IACE;;;;AAlBR;EAeI;;AACA;EACE;IACE;;;;AAlBR;EAMI;EAEA;;AANA;EAFJ;IAGM;;;;AAHN;EAMI;EAEA;;AANA;EAFJ;IAGM;;;;AAHN;EAWI;EACA;;;AAZJ;EAWI;EACA;;;AAZJ;EAeI;;AACA;EACE;IACE;;;;AAlBR;EAeI;;AACA;EACE;IACE;;;;AAlBR;EAeI;;AACA;EACE;IACE;;;;AAlBR;EAeI;;AACA;EACE;IACE;;;;AAlBR;EAeI;;AACA;EACE;IACE;;;;AAlBR;EAeI;;AACA;EACE;IACE;;;;AAlBR;EAeI;;AACA;EACE;IACE;;;;AAlBR;EAeI;;AACA;EACE;IACE;;;;AAlBR;EAeI;;AACA;EACE;IACE;;;;AAlBR;EAeI;;AACA;EACE;IACE;;;;AAlBR;EAeI;;AACA;EACE;IACE;;;;AAlBR;EAeI;;AACA;EACE;IACE;;;;AAlBR;EAeI;;AACA;EACE;IACE;;;;AAlBR;EAeI;;AACA;EACE;IACE;;;;AAlBR;EAeI;;AACA;EACE;IACE;;;;AAlBR;EAeI;;AACA;EACE;IACE;;;;AAlBR;EAeI;;AACA;EACE;IACE;;;;AAlBR;EAeI;;AACA;EACE;IACE;;;;AAlBR;EAMI;EAEA;;AANA;EAFJ;IAGM;;;;AAHN;EAMI;EAEA;;AANA;EAFJ;IAGM;;;;AAHN;EAWI;EACA;;;AAZJ;EAWI;EACA;;;AAZJ;EAeI;;AACA;EACE;IACE;;;;AAlBR;EAeI;;AACA;EACE;IACE;;;;A5C5G4B;AACnB;AACN;ACFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AEFK;AACD;AFDW;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AEFK;AACD;ADDL;ADAgB;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AEFK;AACD;AFDW;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AEFK;AACD;ADDL;ADAgB;AACT;AACN;AAFe;AACT;AACN;ADFyB;AACnB;AACN;ACFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AEFK;AACD;AFDW;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AEFK;AACD;ADDL;ADAgB;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ADFyB;AACnB;AACN;AEFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AEFK;AACD;ADDL;ADAgB;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;AMfjB;EACE;IACE;;EAEF;IACE;;;AAIJ;EACE;IACE;;;AAIJ;EACE;IACE;;;AAIJ;AACA;EACE;IACE;;EAEF;IACE;;;AAIJ;EACE;IACE;;EAEF;IACE;;;ACvCJ;EACE;IACE;;;ARcsC;AACnB;AACN;ACFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AEFK;AACD;AFDW;AACT;AACN;ACFD;ADAgB;AACT;AACN;AAFe;AACT;AACN;ACFD;ADAgB;AACT;AACN;AEFK;AACD;ADDL;ADAgB;AACT;AACN;AAFe;AACT;AACN;A6C8Bb;EACE,OzCmVM;;;AyC/UJ;EAEE;;;AAFF;EAEE;;;AAFF;EAEE;;;AAFF;EAEE;;;AAFF;EAEE;;;AAFF;EAEE;;;AAFF;EAEE;;;AAFF;EAEE;;;AAFF;EAEE;;;AAFF;EAEE;;;AAFF;EAEE;;;AAFF;EAEE;;;AAPN;EACE,OzCmVM;;;AyC/UJ;EAEE;;;AAFF;EAEE;;;AAFF;EAEE;;;AAFF;EAEE;;;AAFF;EAEE;;;AAFF;EAEE;;;AAFF;EAEE;;;AAFF;EAEE;;;AAFF;EAEE;;;AAFF;EAEE;;;AAFF;EAEE;;;AAFF;EAEE;;;AAMR;EACE;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE,MzC6TQ;;;AyC1TV;EACE;EACA;;;AAGF;EA1DA,OAFQ;EAGR,QAHQ;;;AAgER;EA9DA,OAFQ;EAGR,QAHQ;;;AAoER;EAlEA,OAFQ;EAGR,QAHQ;;;AAuER;EArEA,OAFQ;EAGR,QAHQ;;;AA2ER;EAzEA,OAFQ;EAGR,QAHQ;;;AA+ER;EA7EA,OAFQ;EAGR,QAHQ;E7CurBN;EAAA;EAAA;EAAA;;;A6CnmBF;EAlFA,OAFQ;EAGR,QAHQ;E7CurBN;EAAA;EAAA;EAAA;;;A6C9lBF;EAvFA,OAFQ;EAGR,QAHQ;E7CurBN;EAAA;EAAA;EAAA;EK7oBF;;;AwCqDA;EA7FA,OAFQ;EAGR,QAHQ;E7CurBN;EAAA;EAAA;EAAA;EK7oBF;;;AwC2DA;EAnGA,OAFQ;EAGR,QAHQ;E7CurBN;EAAA;EAAA;EAAA;EK7oBF","file":"index-without-carbon-released-only.css"}
@@ -0,0 +1,9 @@
1
+ .c4p--about-modal .bx--modal-container{grid-template-rows:auto auto 1fr auto}.c4p--about-modal .c4p--about-modal__logo{margin:var(--cds-spacing-05, 1rem)}.c4p--about-modal .c4p--about-modal__header{padding:0 20% var(--cds-spacing-03, 0.5rem) var(--cds-spacing-05, 1rem);margin-bottom:0;grid-row:auto}.c4p--about-modal .c4p--about-modal__title{font-size:var(--cds-productive-heading-04-font-size, 1.75rem);font-weight:var(--cds-productive-heading-04-font-weight, 400);line-height:var(--cds-productive-heading-04-line-height, 1.28572);letter-spacing:var(--cds-productive-heading-04-letter-spacing, 0);color:var(--cds-text-01, #161616)}.c4p--about-modal .c4p--about-modal__body{font-size:var(--cds-body-short-02-font-size, 1rem);font-weight:var(--cds-body-short-02-font-weight, 400);line-height:var(--cds-body-short-02-line-height, 1.375);letter-spacing:var(--cds-body-short-02-letter-spacing, 0);min-height:var(--cds-layout-05, 4rem);padding:0 20% 0 var(--cds-spacing-05, 1rem);grid-row:auto;overflow-x:hidden;overflow-y:auto}.c4p--about-modal.c4p--about-modal--with-tabs .c4p--about-modal__body{min-height:calc(var(--cds-layout-05, 4rem) + var(--cds-spacing-08, 2.5rem));margin-bottom:calc(var(--cds-spacing-09, 3rem) + var(--cds-spacing-08, 2.5rem))}.c4p--about-modal.c4p--about-modal--with-tabs .bx--modal-content--overflow-indicator{bottom:calc(var(--cds-spacing-09, 3rem) + var(--cds-spacing-08, 2.5rem))}.c4p--about-modal .c4p--about-modal__links-container{margin-top:var(--cds-spacing-05, 1rem)}.c4p--about-modal .c4p--about-modal__links-container a+a{padding-left:var(--cds-spacing-03, 0.5rem);border-left:1px solid var(--cds-text-01, #161616);margin-left:var(--cds-spacing-03, 0.5rem)}.c4p--about-modal .c4p--about-modal__legal-text,.c4p--about-modal .c4p--about-modal__copyright-text{margin-top:var(--cds-spacing-07, 2rem);margin-bottom:0;color:var(--cds-text-02, #525252)}.c4p--about-modal .c4p--about-modal__copyright-text{margin-top:var(--cds-spacing-05, 1rem)}.c4p--about-modal .c4p--about-modal__footer{position:relative;height:4.5rem;flex-direction:column;justify-content:center;background-color:var(--cds-inverse-02, #393939);color:var(--cds-inverse-01, #ffffff)}.c4p--about-modal .c4p--about-modal__tab-container{position:absolute;bottom:100%}.c4p--about-modal .c4p--about-modal__version-label,.c4p--about-modal .c4p--about-modal__version-number{font-size:var(--cds-body-short-01-font-size, 0.875rem);font-weight:var(--cds-body-short-01-font-weight, 400);line-height:var(--cds-body-short-01-line-height, 1.28572);letter-spacing:var(--cds-body-short-01-letter-spacing, 0.16px);padding-left:var(--cds-spacing-05, 1rem);margin-top:0;margin-bottom:0;color:var(--cds-inverse-01, #ffffff)}.c4p--about-modal .c4p--about-modal__version-label{font-weight:600}@keyframes rotate{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}@keyframes rotate-end-p1{100%{transform:rotate(360deg)}}@keyframes rotate-end-p2{100%{transform:rotate(-360deg)}}@keyframes init-stroke{0%{stroke-dashoffset:276.4608}100%{stroke-dashoffset:52.527552}}@keyframes stroke-end{0%{stroke-dashoffset:52.527552}100%{stroke-dashoffset:276.4608}}@keyframes stroke{100%{stroke-dashoffset:0}}.c4p--apikey-modal .bx--modal-close{display:none}.c4p--apikey-modal .bx--inline-loading{min-height:3rem}.c4p--apikey-modal .bx--modal-content{padding-right:var(--cds-spacing-05, 1rem)}.c4p--apikey-modal__body{padding-right:calc(20% - var(--cds-spacing-05, 1rem));margin-bottom:var(--cds-spacing-05, 1rem)}.c4p--apikey-modal__messaging{display:flex;padding-right:calc(20% - var(--cds-spacing-05, 1rem));margin-top:var(--cds-spacing-03, 0.5rem)}.c4p--apikey-modal__messaging-text{flex:1;margin-left:var(--cds-spacing-03, 0.5rem);font-size:var(--cds-label-01-font-size, 0.75rem);font-weight:var(--cds-label-01-font-weight, 400);line-height:var(--cds-label-01-line-height, 1.33333);letter-spacing:var(--cds-label-01-letter-spacing, 0.32px)}.c4p--apikey-modal__messaging-text>*{font:inherit}.c4p--apikey-modal__error-icon svg{fill:var(--cds-danger-01, #da1e28)}@keyframes rotate{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}@keyframes rotate-end-p1{100%{transform:rotate(360deg)}}@keyframes rotate-end-p2{100%{transform:rotate(-360deg)}}@keyframes init-stroke{0%{stroke-dashoffset:276.4608}100%{stroke-dashoffset:52.527552}}@keyframes stroke-end{0%{stroke-dashoffset:52.527552}100%{stroke-dashoffset:276.4608}}@keyframes stroke{100%{stroke-dashoffset:0}}.c4p--action-set{align-items:stretch;justify-content:flex-end;background-color:var(--cds-ui-01, #f4f4f4)}.c4p--action-set .c4p--action-set__action-button{font-size:var(--cds-body-short-01-font-size, 0.875rem);font-weight:var(--cds-body-short-01-font-weight, 400);line-height:var(--cds-body-short-01-line-height, 1.28572);letter-spacing:var(--cds-body-short-01-letter-spacing, 0.16px);height:var(--cds-spacing-10, 4rem);align-items:center;padding-top:var(--cds-spacing-05, 1rem);padding-bottom:var(--cds-spacing-07, 2rem);margin:0}.c4p--action-set.bx--btn-set .c4p--action-set__action-button.bx--btn.bx--btn--expressive{max-width:none}.c4p--action-set:not(.c4p--action-set--stacking) .c4p--action-set__action-button--ghost{padding-left:var(--cds-spacing-07, 2rem)}.c4p--action-set.c4p--action-set--row-single.c4p--action-set--md .c4p--action-set__action-button,.c4p--action-set.c4p--action-set--row-single .c4p--action-set__action-button--ghost{flex:0 0 100%}.c4p--action-set.c4p--action-set--row-double .c4p--action-set__action-button--ghost{flex:1 1 75%}.c4p--action-set.c4p--action-set--row-single.c4p--action-set--lg .c4p--action-set__action-button:not(.c4p--action-set__action-button--ghost),.c4p--action-set.c4p--action-set--row-double.c4p--action-set--md .c4p--action-set__action-button,.c4p--action-set.c4p--action-set--row-double.c4p--action-set--lg .c4p--action-set__action-button,.c4p--action-set.c4p--action-set--row-triple .c4p--action-set__action-button--ghost{flex:0 1 50%}.c4p--action-set.c4p--action-set--row-triple .c4p--action-set__action-button--ghost{flex:1 1 50%}.c4p--action-set.bx--btn-set.c4p--action-set--row-triple.c4p--action-set--lg .c4p--action-set__action-button:not(.c4p--action-set__action-button--ghost),.c4p--action-set.bx--btn-set.c4p--action-set--xlg .c4p--action-set__action-button:not(.c4p--action-set__action-button--ghost),.c4p--action-set.bx--btn-set.c4p--action-set--max .c4p--action-set__action-button:not(.c4p--action-set__action-button--ghost),.c4p--action-set.bx--btn-set.c4p--action-set--row-quadruple .c4p--action-set__action-button:not(.c4p--action-set__action-button--ghost){max-width:14.5rem;flex:0 1 25%}.c4p--action-set.bx--btn-set.c4p--action-set--row-quadruple .c4p--action-set__action-button--ghost{flex:1 1 25%}.c4p--action-set .c4p--action-set__action-button .bx--inline-loading{position:absolute;top:0;right:0;width:var(--cds-spacing-07, 2rem)}@keyframes fade{0%{opacity:0;transform:translateY(3rem)}100%{opacity:1;transform:translateY(0)}}@media(prefers-reduced-motion: no-preference){.c4p--cascade__element,.c4p--cascade__col{animation:240ms cubic-bezier(0.2, 0, 0.38, 0.9) 0s 1 fade;animation-fill-mode:forwards;opacity:0}}.c4p--cascade__element:nth-child(n+1),.c4p--cascade__col-1{animation-delay:60ms}.c4p--cascade__element:nth-child(n+2),.c4p--cascade__col-2{animation-delay:120ms}.c4p--cascade__element:nth-child(n+3),.c4p--cascade__col-3{animation-delay:180ms}.c4p--cascade__element:nth-child(n+4),.c4p--cascade__col-4{animation-delay:240ms}.c4p--cascade__element:nth-child(n+5),.c4p--cascade__col-5{animation-delay:300ms}.c4p--cascade__element:nth-child(n+6),.c4p--cascade__col-6{animation-delay:360ms}.c4p--cascade__element:nth-child(n+7),.c4p--cascade__col-7{animation-delay:420ms}.c4p--cascade__element:nth-child(n+8),.c4p--cascade__col-8{animation-delay:480ms}.c4p--create-modal{background-color:var(--cds-ui-background, #ffffff)}.c4p--create-modal .bx--modal-close{display:none}@media(min-width: 42rem){.c4p--create-modal .bx--modal-container{max-height:95%}}@media(min-width: 66rem){.c4p--create-modal .bx--modal-container{max-height:95%}}.c4p--create-modal .bx--modal-header{padding-right:20%;padding-bottom:var(--cds-spacing-03, 0.5rem);border-bottom:1px solid var(--cds-ui-03, #e0e0e0);margin-bottom:0}.c4p--create-modal .bx--modal-footer .bx--btn{max-width:none}.c4p--create-modal__title{font-size:var(--cds-productive-heading-03-font-size, 1.25rem);font-weight:var(--cds-productive-heading-03-font-weight, 400);line-height:var(--cds-productive-heading-03-line-height, 1.4);letter-spacing:var(--cds-productive-heading-03-letter-spacing, 0);margin-bottom:var(--cds-spacing-02, 0.25rem)}.c4p--create-modal__subtitle{font-size:var(--cds-body-short-01-font-size, 0.875rem);font-weight:var(--cds-body-short-01-font-weight, 400);line-height:var(--cds-body-short-01-line-height, 1.28572);letter-spacing:var(--cds-body-short-01-letter-spacing, 0.16px);margin-bottom:var(--cds-spacing-03, 0.5rem);color:var(--cds-text-02, #525252)}.c4p--create-modal__description{font-size:var(--cds-body-long-01-font-size, 0.875rem);font-weight:var(--cds-body-long-01-font-weight, 400);line-height:var(--cds-body-long-01-line-height, 1.42857);letter-spacing:var(--cds-body-long-01-letter-spacing, 0.16px);padding-right:calc(20% - var(--cds-spacing-05, 1rem));margin:var(--cds-spacing-03, 0.5rem) 0 var(--cds-spacing-05, 1rem) 0}.c4p--create-modal__form .bx--fieldset{min-width:100%;margin-bottom:0}.c4p--create-modal__form>*{margin-bottom:var(--cds-spacing-05, 1rem)}.c4p--create-modal__form>*:last-child{margin-bottom:0}@keyframes influencerMenuEntrance{0%{opacity:0;transform:translateX(calc(-1 * var(--cds-spacing-05, 1rem)))}100%{opacity:1;transform:translateX(0)}}@keyframes influencerMenuExit{0%{opacity:1;transform:translateX(0)}100%{opacity:0;transform:translateX(calc(-1 * var(--cds-spacing-05, 1rem)))}}.c4p--create-influencer{display:grid;height:100%;grid-template-columns:100%;grid-template-rows:1fr auto}.c4p--create-influencer__left-nav{grid-column:1/-1;grid-row:1/-1;overflow-y:auto}.c4p--create-influencer__progress-indicator{padding:var(--cds-spacing-06, 1.5rem)}.c4p--create-influencer__view-all-toggle{padding:var(--cds-spacing-06, 1.5rem);grid-column:1/-1;grid-row:-1/-1}.c4p--create-influencer__side-nav-opening,.c4p--create-influencer__progress-indicator-opening{animation:influencerMenuEntrance 240ms 1;animation-fill-mode:forwards;transition-timing-function:cubic-bezier(0, 0, 0.38, 0.9)}.c4p--create-influencer__side-nav-closing,.c4p--create-influencer__progress-indicator-closing{animation:influencerMenuExit 240ms 1;animation-fill-mode:forwards;transition-timing-function:cubic-bezier(0.2, 0, 1, 0.9)}@media(prefers-reduced-motion){.c4p--create-influencer__side-nav-opening,.c4p--create-influencer__progress-indicator-opening,.c4p--create-influencer__side-nav-closing,.c4p--create-influencer__progress-indicator-closing{animation:none;opacity:1}}@keyframes rotate{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}@keyframes rotate-end-p1{100%{transform:rotate(360deg)}}@keyframes rotate-end-p2{100%{transform:rotate(-360deg)}}@keyframes init-stroke{0%{stroke-dashoffset:276.4608}100%{stroke-dashoffset:52.527552}}@keyframes stroke-end{0%{stroke-dashoffset:52.527552}100%{stroke-dashoffset:276.4608}}@keyframes stroke{100%{stroke-dashoffset:0}}.c4p--create-full-page .c4p--create-full-page{color:var(--cds-text-01, #161616)}.c4p--create-full-page .c4p--create-full-page__content .bx--grid{padding-top:var(--cds-spacing-06, 1.5rem);margin-right:0;margin-left:0}.c4p--create-full-page .c4p--create-full-page__step--hidden-step,.c4p--create-full-page .c4p--create-full-page__step--hidden-section{display:none}.c4p--create-full-page .c4p--create-full-page__step--visible-section{display:block}.c4p--create-full-page .c4p--create-full-page__step--visible-step{opacity:1}.c4p--create-full-page .c4p--create-full-page__section-subtitle,.c4p--create-full-page .c4p--create-full-page__step-subtitle{font-size:var(--cds-productive-heading-01-font-size, 0.875rem);font-weight:var(--cds-productive-heading-01-font-weight, 600);line-height:var(--cds-productive-heading-01-line-height, 1.28572);letter-spacing:var(--cds-productive-heading-01-letter-spacing, 0.16px);max-width:50%;margin-bottom:var(--cds-spacing-03, 0.5rem)}.c4p--create-full-page .c4p--create-full-page__section-description,.c4p--create-full-page .c4p--create-full-page__step-description{font-size:var(--cds-body-long-01-font-size, 0.875rem);font-weight:var(--cds-body-long-01-font-weight, 400);line-height:var(--cds-body-long-01-line-height, 1.42857);letter-spacing:var(--cds-body-long-01-letter-spacing, 0.16px);max-width:50%;margin-bottom:var(--cds-spacing-06, 1.5rem)}.c4p--create-full-page .bx--fieldset{margin-bottom:0}.c4p--create-full-page .c4p--create-full-page__step-fieldset>*{margin-bottom:var(--cds-spacing-05, 1rem)}.c4p--create-full-page .bx--modal-close{display:none}.c4p--create-full-page{display:flex;height:100vh;padding:0;margin:0}.c4p--create-full-page .c4p--create-full-page__left-nav{grid-column:1/-1;grid-row:1/-1;overflow-y:auto}.c4p--create-full-page .c4p--create-full-page__body{display:flex;flex-direction:column;flex-grow:1}.c4p--create-full-page .c4p--create-full-page__main{display:flex;max-height:100%;flex-direction:column;flex-grow:1}.c4p--create-full-page .c4p--create-full-page__content{overflow:auto;flex-grow:1;background-color:var(--cds-ui-background, #ffffff);color:var(--cds-text-01, #161616);overflow-x:hidden}.c4p--create-full-page .c4p--create-full-page__step{position:relative;padding-bottom:var(--cds-spacing-07, 2rem)}.c4p--create-full-page .bx--side-nav--ux{top:0;height:min-content;padding-top:0;border-right:1px solid var(--cds-ui-03, #e0e0e0);background-color:transparent;grid-row:1;overflow-x:auto}.c4p--create-full-page .c4p--create-full-page__section-divider{position:relative;display:block;width:0;height:1px;margin:var(--cds-spacing-07, 2rem) calc(-1 * var(--cds-spacing-08, 2.5rem)) var(--cds-spacing-07, 2rem) calc(-1 * var(--cds-spacing-08, 2.5rem))}.c4p--create-full-page .c4p--create-full-page__section-divider::after{position:absolute;top:0;left:0;width:100vw;height:1px;background-color:var(--cds-ui-03, #e0e0e0);content:""}.c4p--create-full-page .c4p--create-full-page__step-title,.c4p--create-full-page .c4p--create-full-page__section-title{font-size:var(--cds-productive-heading-04-font-size, 1.75rem);font-weight:var(--cds-productive-heading-04-font-weight, 400);line-height:var(--cds-productive-heading-04-line-height, 1.28572);letter-spacing:var(--cds-productive-heading-04-letter-spacing, 0);max-width:50%;margin-bottom:var(--cds-spacing-05, 1rem)}.c4p--create-full-page .c4p--create-full-page__influencer{display:grid;flex:0 0 257px;border-right:1px solid var(--cds-ui-03, #e0e0e0);background-color:var(--cds-ui-01, #f4f4f4);grid-template-columns:100%;grid-template-rows:1fr auto}.c4p--create-full-page .c4p--create-full-page__progress-indicator{padding:var(--cds-spacing-06, 1.5rem)}.c4p--create-full-page .c4p--create-full-page__influencer-toggle{padding:var(--cds-spacing-06, 1.5rem);grid-column:1/-1;grid-row:-1/-1}.c4p--create-full-page .c4p--create-full-page__buttons{border-top:1px solid var(--cds-ui-03, #e0e0e0)}@keyframes rotate{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}@keyframes rotate-end-p1{100%{transform:rotate(360deg)}}@keyframes rotate-end-p2{100%{transform:rotate(-360deg)}}@keyframes init-stroke{0%{stroke-dashoffset:276.4608}100%{stroke-dashoffset:52.527552}}@keyframes stroke-end{0%{stroke-dashoffset:52.527552}100%{stroke-dashoffset:276.4608}}@keyframes stroke{100%{stroke-dashoffset:0}}@keyframes sidePanelExitLeft{0%{opacity:1;transform:translateX(0)}100%{opacity:0;transform:translateX(calc(-1 * 30rem))}}@keyframes sidePanelExitRight{0%{opacity:1;transform:translateX(0)}100%{opacity:0;transform:translateX(30rem)}}.c4p--side-panel__container{--c4p--side-panel--subtitle-opacity: 1;--c4p--side-panel--title-container-height: 0;--c4p--side-panel--title-text-height: 0;--c4p--side-panel--subtitle-container-height: 0;--c4p--side-panel--action-bar-container-height: 0;--c4p--side-panel--divider-opacity: 0;--c4p--side-panel--title-y-position: 0;--c4p--side-panel--content-bottom-padding: var(--cds-spacing-10, 4rem);--c4p--side-panel--collapsed-title-y-position: 1rem;--c4p--side-panel--label-text-height: 0;position:fixed;z-index:9000;top:var(--cds-spacing-09, 3rem);height:calc(100% - 3rem);box-sizing:border-box;background-color:var(--cds-ui-01, #f4f4f4);color:var(--cds-text-01, #161616);transition:transform 240ms;transition-timing-function:cubic-bezier(0.2, 0, 0.38, 0.9)}.c4p--side-panel__container.c4p--side-panel__container--xs{min-width:16rem;max-width:16rem}.c4p--side-panel__container.c4p--side-panel__container--xs .c4p--side-panel__title-container.c4p--side-panel__title-container--no-title-animation,.c4p--side-panel__container.c4p--side-panel__container--xs .c4p--side-panel__subtitle-text.c4p--side-panel__subtitle-text-no-animation,.c4p--side-panel__container.c4p--side-panel__container--xs .c4p--side-panel__action-toolbar.c4p--side-panel__action-toolbar-no-animation,.c4p--side-panel__container.c4p--side-panel__container--xs .c4p--side-panel__actions-container.c4p--action-set--xs{min-width:16rem;max-width:16rem}.c4p--side-panel__container.c4p--side-panel__container-right-placement.c4p--side-panel__container--xs{min-width:16rem;max-width:16rem;right:0;border-left:1px solid var(--cds-decorative-01, #e0e0e0)}@keyframes sidePanelEntranceRight{0%{opacity:0;transform:translateX(16rem)}100%{opacity:1;transform:translateX(0)}}.c4p--side-panel__container.c4p--side-panel__container-left-placement.c4p--side-panel__container--xs{min-width:16rem;max-width:16rem;left:0;border-right:1px solid var(--cds-decorative-01, #e0e0e0)}@keyframes sidePanelEntranceLeft{0%{opacity:0;transform:translateX(-16rem)}100%{opacity:1;transform:translateX(0)}}.c4p--side-panel__container.c4p--side-panel__container--sm{min-width:20rem;max-width:20rem}.c4p--side-panel__container.c4p--side-panel__container--sm .c4p--side-panel__title-container.c4p--side-panel__title-container--no-title-animation,.c4p--side-panel__container.c4p--side-panel__container--sm .c4p--side-panel__subtitle-text.c4p--side-panel__subtitle-text-no-animation,.c4p--side-panel__container.c4p--side-panel__container--sm .c4p--side-panel__action-toolbar.c4p--side-panel__action-toolbar-no-animation,.c4p--side-panel__container.c4p--side-panel__container--sm .c4p--side-panel__actions-container.c4p--action-set--sm{min-width:20rem;max-width:20rem}.c4p--side-panel__container.c4p--side-panel__container-right-placement.c4p--side-panel__container--sm{min-width:20rem;max-width:20rem;right:0;border-left:1px solid var(--cds-decorative-01, #e0e0e0)}@keyframes sidePanelEntranceRight{0%{opacity:0;transform:translateX(20rem)}100%{opacity:1;transform:translateX(0)}}.c4p--side-panel__container.c4p--side-panel__container-left-placement.c4p--side-panel__container--sm{min-width:20rem;max-width:20rem;left:0;border-right:1px solid var(--cds-decorative-01, #e0e0e0)}@keyframes sidePanelEntranceLeft{0%{opacity:0;transform:translateX(-20rem)}100%{opacity:1;transform:translateX(0)}}.c4p--side-panel__container.c4p--side-panel__container--md{min-width:30rem;max-width:30rem}.c4p--side-panel__container.c4p--side-panel__container--md .c4p--side-panel__title-container.c4p--side-panel__title-container--no-title-animation,.c4p--side-panel__container.c4p--side-panel__container--md .c4p--side-panel__subtitle-text.c4p--side-panel__subtitle-text-no-animation,.c4p--side-panel__container.c4p--side-panel__container--md .c4p--side-panel__action-toolbar.c4p--side-panel__action-toolbar-no-animation,.c4p--side-panel__container.c4p--side-panel__container--md .c4p--side-panel__actions-container.c4p--action-set--md{min-width:30rem;max-width:30rem}.c4p--side-panel__container.c4p--side-panel__container-right-placement.c4p--side-panel__container--md{min-width:30rem;max-width:30rem;right:0;border-left:1px solid var(--cds-decorative-01, #e0e0e0)}@keyframes sidePanelEntranceRight{0%{opacity:0;transform:translateX(30rem)}100%{opacity:1;transform:translateX(0)}}.c4p--side-panel__container.c4p--side-panel__container-left-placement.c4p--side-panel__container--md{min-width:30rem;max-width:30rem;left:0;border-right:1px solid var(--cds-decorative-01, #e0e0e0)}@keyframes sidePanelEntranceLeft{0%{opacity:0;transform:translateX(-30rem)}100%{opacity:1;transform:translateX(0)}}.c4p--side-panel__container.c4p--side-panel__container--lg{min-width:40rem;max-width:40rem}.c4p--side-panel__container.c4p--side-panel__container--lg .c4p--side-panel__title-container.c4p--side-panel__title-container--no-title-animation,.c4p--side-panel__container.c4p--side-panel__container--lg .c4p--side-panel__subtitle-text.c4p--side-panel__subtitle-text-no-animation,.c4p--side-panel__container.c4p--side-panel__container--lg .c4p--side-panel__action-toolbar.c4p--side-panel__action-toolbar-no-animation,.c4p--side-panel__container.c4p--side-panel__container--lg .c4p--side-panel__actions-container.c4p--action-set--lg{min-width:40rem;max-width:40rem}.c4p--side-panel__container.c4p--side-panel__container-right-placement.c4p--side-panel__container--lg{min-width:40rem;max-width:40rem;right:0;border-left:1px solid var(--cds-decorative-01, #e0e0e0)}@keyframes sidePanelEntranceRight{0%{opacity:0;transform:translateX(40rem)}100%{opacity:1;transform:translateX(0)}}.c4p--side-panel__container.c4p--side-panel__container-left-placement.c4p--side-panel__container--lg{min-width:40rem;max-width:40rem;left:0;border-right:1px solid var(--cds-decorative-01, #e0e0e0)}@keyframes sidePanelEntranceLeft{0%{opacity:0;transform:translateX(-40rem)}100%{opacity:1;transform:translateX(0)}}.c4p--side-panel__container.c4p--side-panel__container--max{min-width:75%;max-width:75%}.c4p--side-panel__container.c4p--side-panel__container--max .c4p--side-panel__title-container.c4p--side-panel__title-container--no-title-animation,.c4p--side-panel__container.c4p--side-panel__container--max .c4p--side-panel__subtitle-text.c4p--side-panel__subtitle-text-no-animation,.c4p--side-panel__container.c4p--side-panel__container--max .c4p--side-panel__action-toolbar.c4p--side-panel__action-toolbar-no-animation,.c4p--side-panel__container.c4p--side-panel__container--max .c4p--side-panel__actions-container.c4p--action-set--max{min-width:75%;max-width:75%}.c4p--side-panel__container.c4p--side-panel__container-right-placement.c4p--side-panel__container--max{min-width:75%;max-width:75%;right:0;border-left:1px solid var(--cds-decorative-01, #e0e0e0)}@keyframes sidePanelEntranceRight{0%{opacity:0;transform:translateX(75%)}100%{opacity:1;transform:translateX(0)}}.c4p--side-panel__container.c4p--side-panel__container-left-placement.c4p--side-panel__container--max{min-width:75%;max-width:75%;left:0;border-right:1px solid var(--cds-decorative-01, #e0e0e0)}@keyframes sidePanelEntranceLeft{0%{opacity:0;transform:translateX(-75%)}100%{opacity:1;transform:translateX(0)}}.c4p--side-panel__container.c4p--side-panel__container-with-action-toolbar.c4p--side-panel__with-condensed-header .c4p--side-panel__title-container::before{content:none}.c4p--side-panel__container.c4p--side-panel__container-with-action-toolbar.c4p--side-panel__with-condensed-header .c4p--side-panel__action-toolbar::before{position:absolute;bottom:0;left:0;width:100%;height:1px;background-color:var(--cds-decorative-01, #e0e0e0);content:"";opacity:var(--c4p--side-panel--divider-opacity)}.c4p--side-panel__container.c4p--side-panel__container-without-overlay{box-shadow:0 var(--cds-spacing-01, 0.125rem) var(--cds-spacing-02, 0.25rem) var(--cds-overlay-01, rgba(22, 22, 22, 0.5))}.c4p--side-panel__container .c4p--side-panel__title-container{position:sticky;z-index:4;top:0;height:calc(var(--c4p--side-panel--title-container-height) - var(--c4p--side-panel--label-text-height));padding:var(--cds-spacing-05, 1rem) var(--cds-spacing-05, 1rem) var(--cds-spacing-03, 0.5rem) var(--cds-spacing-05, 1rem);background-color:var(--cds-ui-01, #f4f4f4)}.c4p--side-panel__container .c4p--side-panel__title-container::before{position:absolute;bottom:0;left:0;width:100%;height:1px;background-color:var(--cds-decorative-01, #e0e0e0);content:"";opacity:var(--c4p--side-panel--divider-opacity)}.c4p--side-panel__container .c4p--side-panel__title-container.c4p--side-panel__on-detail-step .c4p--side-panel__collapsed-title-text{top:var(--cds-spacing-09, 3rem)}.c4p--side-panel__container .c4p--side-panel__title-container.c4p--side-panel__title-container-without-title{padding:0}.c4p--side-panel__container .c4p--side-panel__title-container.c4p--side-panel__title-container-without-title.c4p--side-panel__on-detail-step-without-title{height:calc(var(--cds-spacing-08, 2.5rem) + var(--cds-spacing-02, 0.25rem));padding:var(--cds-spacing-05, 1rem) var(--cds-spacing-05, 1rem) var(--cds-spacing-03, 0.5rem) var(--cds-spacing-05, 1rem)}.c4p--side-panel__container .c4p--side-panel__title-container.c4p--side-panel__title-container-without-title::before{background-color:transparent}.c4p--side-panel__container.c4p--side-panel__container-is-animating{pointer-events:none}.c4p--side-panel__container.c4p--side-panel__container-is-animating .c4p--side-panel__title-container.c4p--side-panel__title-container--no-title-animation{top:0}.c4p--side-panel__container.c4p--side-panel__container-is-animating .c4p--side-panel__subtitle-text.c4p--side-panel__subtitle-text-no-animation{top:var(--c4p--side-panel--title-text-height)}.c4p--side-panel__container.c4p--side-panel__container-is-animating .c4p--side-panel__action-toolbar.c4p--side-panel__action-toolbar-no-animation{top:calc(var(--c4p--side-panel--title-text-height) + var(--c4p--side-panel--subtitle-container-height))}.c4p--side-panel__container .c4p--side-panel__title-text{font-size:var(--cds-productive-heading-03-font-size, 1.25rem);font-weight:var(--cds-productive-heading-03-font-weight, 400);line-height:var(--cds-productive-heading-03-line-height, 1.4);letter-spacing:var(--cds-productive-heading-03-letter-spacing, 0);display:-webkit-box;overflow:hidden;padding-right:var(--cds-spacing-09, 3rem);-webkit-box-orient:vertical;-webkit-line-clamp:2;position:inherit;z-index:4;background-color:var(--cds-ui-01, #f4f4f4);opacity:var(--c4p--side-panel--subtitle-opacity);transform:translateY(var(--c4p--side-panel--title-y-position))}.c4p--side-panel__container .c4p--side-panel__label-text{font-size:var(--cds-label-01-font-size, 0.75rem);font-weight:var(--cds-label-01-font-weight, 400);line-height:var(--cds-label-01-line-height, 1.33333);letter-spacing:var(--cds-label-01-letter-spacing, 0.32px);overflow:hidden;padding-right:var(--cds-spacing-05, 1rem);opacity:var(--c4p--side-panel--subtitle-opacity);text-overflow:ellipsis;transform:translateY(var(--c4p--side-panel--title-y-position));white-space:nowrap}.c4p--side-panel__container .c4p--side-panel__collapsed-title-text{font-size:var(--cds-productive-heading-02-font-size, 1rem);font-weight:var(--cds-productive-heading-02-font-weight, 600);line-height:var(--cds-productive-heading-02-line-height, 1.375);letter-spacing:var(--cds-productive-heading-02-letter-spacing, 0);display:-webkit-box;overflow:hidden;padding-right:var(--cds-spacing-09, 3rem);-webkit-box-orient:vertical;-webkit-line-clamp:2;position:absolute;top:var(--cds-spacing-05, 1rem);opacity:var(--c4p--side-panel--divider-opacity);transform:translateY(var(--c4p--side-panel--collapsed-title-y-position))}.c4p--side-panel__container .c4p--side-panel__subtitle-text{font-size:var(--cds-body-short-01-font-size, 0.875rem);font-weight:var(--cds-body-short-01-font-weight, 400);line-height:var(--cds-body-short-01-line-height, 1.28572);letter-spacing:var(--cds-body-short-01-letter-spacing, 0.16px);overflow:hidden;padding:0 var(--cds-spacing-09, 3rem) var(--cds-spacing-05, 1rem) var(--cds-spacing-05, 1rem);-webkit-box-orient:vertical;-webkit-line-clamp:3;opacity:var(--c4p--side-panel--subtitle-opacity)}.c4p--side-panel__container .c4p--side-panel__subtitle-text.c4p--side-panel__subtitle-text-no-animation{position:fixed;z-index:2;top:calc(var(--c4p--side-panel--title-text-height) + var(--cds-spacing-09, 3rem));background-color:var(--cds-ui-01, #f4f4f4)}.c4p--side-panel__container .c4p--side-panel__subtitle-text.c4p--side-panel__subtitle-text-no-animation.c4p--side-panel__subtitle-text-is-animating{top:var(--c4p--side-panel--title-text-height)}.c4p--side-panel__container .c4p--side-panel__subtitle-text.c4p--side-panel__subtitle-without-title{padding-top:var(--cds-spacing-05, 1rem);padding-right:var(--cds-spacing-09, 3rem)}.c4p--side-panel__container .c4p--side-panel__title-container.c4p--side-panel__title-container--no-title-animation.c4p--side-panel__title-container-is-animating{top:0}.c4p--side-panel__container .c4p--side-panel__title-container.c4p--side-panel__title-container--no-title-animation{position:fixed;top:var(--cds-spacing-09, 3rem);height:var(--c4p--side-panel--title-text-height)}.c4p--side-panel__container .c4p--side-panel__inner-content{overflow:auto;height:calc(100vh - 3rem);margin-top:calc(var(--c4p--side-panel--title-text-height) + var(--c4p--side-panel--subtitle-container-height) + var(--c4p--side-panel--action-bar-container-height));overflow-x:hidden}.c4p--side-panel__container .c4p--side-panel__inner-content-with-actions{height:calc(100vh - (var(--c4p--side-panel--content-bottom-padding) + 2rem))}.c4p--side-panel__container .c4p--side-panel__inner-content.c4p--side-panel__static-inner-content{height:calc(100vh - (var(--c4p--side-panel--title-text-height) + var(--c4p--side-panel--subtitle-container-height) + var(--c4p--side-panel--action-bar-container-height)) + -1*(var(--cds-spacing-09, 3rem) + var(--cds-spacing-10, 4rem)));padding-top:var(--cds-spacing-05, 1rem)}.c4p--side-panel__container .c4p--side-panel__action-toolbar.c4p--side-panel__action-toolbar-no-animation{position:fixed;top:calc(
2
+ var(--c4p--side-panel--title-text-height) +
3
+ var(--c4p--side-panel--subtitle-container-height) + var(--cds-spacing-09, 3rem)
4
+ );width:100%;border-bottom:1px solid var(--cds-decorative-01, #e0e0e0)}.c4p--side-panel__container .c4p--side-panel__action-toolbar.c4p--side-panel__action-toolbar-no-animation+.c4p--side-panel__body-content{margin-top:calc(
5
+ var(--c4p--side-panel--title-text-height) +
6
+ var(--c4p--side-panel--subtitle-container-height) + var(--cds-spacing-09, 3rem)
7
+ )}.c4p--side-panel__container .c4p--side-panel__subtitle-text.c4p--side-panel__subtitle-text-no-animation.c4p--side-panel__subtitle-text-no-animation-no-action-toolbar{border-bottom:1px solid var(--cds-decorative-01, #e0e0e0);margin-bottom:var(--cds-spacing-05, 1rem)}.c4p--side-panel__container .c4p--side-panel__action-toolbar{position:sticky;z-index:4;top:var(--c4p--side-panel--title-height);display:flex;align-items:center;justify-content:flex-start;padding:0 var(--cds-spacing-05, 1rem);margin-bottom:var(--cds-spacing-03, 0.5rem);background-color:var(--cds-ui-01, #f4f4f4);transition:transform 150ms;transition-timing-function:cubic-bezier(0.2, 0, 0.38, 0.9)}.c4p--side-panel__container .c4p--side-panel__action-toolbar .c4p--side-panel__action-toolbar-button{min-width:2rem}.c4p--side-panel__container .c4p--side-panel__action-toolbar .c4p--side-panel__action-toolbar-button.c4p--side-panel__action-toolbar-icon-only-button{padding:0;color:var(--cds-text-01, #161616)}.c4p--side-panel__container .c4p--side-panel__action-toolbar .c4p--side-panel__action-toolbar-button.c4p--side-panel__action-toolbar-icon-only-button svg{margin-left:var(--cds-spacing-03, 0.5rem)}.c4p--side-panel__container .c4p--side-panel__action-toolbar .c4p--side-panel__action-toolbar-button.c4p--side-panel__action-toolbar-leading-button{margin-right:var(--cds-spacing-03, 0.5rem)}.c4p--side-panel__container .bx--btn.c4p--side-panel__navigation-back-button{position:relative;z-index:5;top:calc(-1 * var(--cds-spacing-03, 0.5rem));left:calc(-1 * var(--cds-spacing-03, 0.5rem))}.c4p--side-panel__container .bx--btn.c4p--side-panel__navigation-back-button,.c4p--side-panel__container .bx--btn.c4p--side-panel__close-button{min-width:2rem;padding:0;color:var(--cds-text-01, #161616)}.c4p--side-panel__container .bx--btn.c4p--side-panel__close-button{position:absolute;z-index:5;top:var(--cds-spacing-03, 0.5rem);right:var(--cds-spacing-05, 1rem);display:flex;align-items:center;justify-content:center;background-color:var(--cds-ui-01, #f4f4f4)}.c4p--side-panel__container .bx--btn.c4p--side-panel__close-button .bx--btn__icon{margin:0}.c4p--side-panel__container .c4p--side-panel__body-content{padding:var(--cds-spacing-05, 1rem);padding-top:0}.c4p--side-panel__container.c4p--side-panel__container-is-animating .c4p--side-panel__actions-container.c4p--action-set--max{min-width:100%;max-width:100%}.c4p--side-panel__container .c4p--side-panel__actions-container{position:fixed;bottom:0;border-top:1px solid var(--cds-decorative-01, #e0e0e0);background-color:var(--cds-ui-01, #f4f4f4)}.c4p--side-panel__container .c4p--side-panel__actions-container.c4p--action-set--max{flex-direction:column}.c4p--side-panel__container .c4p--side-panel__actions-container.c4p--action-set--max .c4p--action-set__action-button{width:100%;max-width:100%}@media(min-width: 42rem){.c4p--side-panel__container .c4p--side-panel__actions-container.c4p--action-set--max{flex-direction:row}.c4p--side-panel__container .c4p--side-panel__actions-container.c4p--action-set--max .c4p--action-set__action-button{width:25%}}.c4p--side-panel__container .c4p--side-panel__actions-container .c4p--action-set__action-button{height:var(--cds-layout-05, 4rem)}.c4p--side-panel__container .c4p--side-panel__actions-container.c4p--side-panel__actions-container-condensed .c4p--action-set__action-button{height:var(--cds-layout-04, 3rem)}.c4p--side-panel__container .bx--text-input,.c4p--side-panel__container .bx--text-area,.c4p--side-panel__container .bx--search-input,.c4p--side-panel__container .bx--select-input,.c4p--side-panel__container .bx--dropdown,.c4p--side-panel__container .bx--dropdown-list,.c4p--side-panel__container .bx--number input[type=number],.c4p--side-panel__container .bx--date-picker__input{background-color:var(--cds-field-02, #ffffff)}@keyframes sidePanelOverlayEntrance{0%{opacity:0}100%{opacity:1}}@keyframes sidePanelOverlayExit{0%{opacity:1}100%{opacity:0}}.c4p--side-panel__visually-hidden{position:absolute;overflow:hidden;width:1px;height:1px;padding:0;border:0;margin:-1px;clip:rect(0, 0, 0, 0);visibility:inherit;white-space:nowrap}.c4p--side-panel__overlay{position:fixed;z-index:6000;top:0;right:0;bottom:0;left:0;width:100%;height:100%;background-color:var(--cds-overlay-01, rgba(22, 22, 22, 0.5));transition:background-color 240ms;transition-timing-function:cubic-bezier(0.2, 0, 0.38, 0.9)}.c4p--create-side-panel.c4p--side-panel__container .c4p--create-side-panel__content-text{padding-right:calc(20% - var(--cds-spacing-05, 1rem))}.c4p--create-side-panel.c4p--side-panel__container--xs .c4p--side-panel__title-text{width:calc(16rem - var(--cds-spacing-05, 1rem));padding-right:calc((16rem * 0.2) - var(--cds-spacing-05, 1rem));margin-bottom:var(--cds-spacing-02, 0.25rem)}.c4p--create-side-panel.c4p--side-panel__container--xs .c4p--side-panel__subtitle-text{width:calc(16rem - var(--cds-spacing-05, 1rem));padding-right:calc((16rem * 0.2) - var(--cds-spacing-05, 1rem));padding-bottom:var(--cds-spacing-05, 1rem);border-bottom:1px solid var(--cds-ui-03, #e0e0e0);color:var(--cds-text-02, #525252)}.c4p--create-side-panel.c4p--side-panel__container--sm .c4p--side-panel__title-text{width:calc(20rem - var(--cds-spacing-05, 1rem));padding-right:calc((20rem * 0.2) - var(--cds-spacing-05, 1rem));margin-bottom:var(--cds-spacing-02, 0.25rem)}.c4p--create-side-panel.c4p--side-panel__container--sm .c4p--side-panel__subtitle-text{width:calc(20rem - var(--cds-spacing-05, 1rem));padding-right:calc((20rem * 0.2) - var(--cds-spacing-05, 1rem));padding-bottom:var(--cds-spacing-05, 1rem);border-bottom:1px solid var(--cds-ui-03, #e0e0e0);color:var(--cds-text-02, #525252)}.c4p--create-side-panel.c4p--side-panel__container--md .c4p--side-panel__title-text{width:calc(30rem - var(--cds-spacing-05, 1rem));padding-right:calc((30rem * 0.2) - var(--cds-spacing-05, 1rem));margin-bottom:var(--cds-spacing-02, 0.25rem)}.c4p--create-side-panel.c4p--side-panel__container--md .c4p--side-panel__subtitle-text{width:calc(30rem - var(--cds-spacing-05, 1rem));padding-right:calc((30rem * 0.2) - var(--cds-spacing-05, 1rem));padding-bottom:var(--cds-spacing-05, 1rem);border-bottom:1px solid var(--cds-ui-03, #e0e0e0);color:var(--cds-text-02, #525252)}.c4p--create-side-panel.c4p--side-panel__container--lg .c4p--side-panel__title-text{width:calc(40rem - var(--cds-spacing-05, 1rem));padding-right:calc((40rem * 0.2) - var(--cds-spacing-05, 1rem));margin-bottom:var(--cds-spacing-02, 0.25rem)}.c4p--create-side-panel.c4p--side-panel__container--lg .c4p--side-panel__subtitle-text{width:calc(40rem - var(--cds-spacing-05, 1rem));padding-right:calc((40rem * 0.2) - var(--cds-spacing-05, 1rem));padding-bottom:var(--cds-spacing-05, 1rem);border-bottom:1px solid var(--cds-ui-03, #e0e0e0);color:var(--cds-text-02, #525252)}.c4p--create-side-panel.c4p--side-panel__container--max .c4p--side-panel__title-text{width:calc(75% - var(--cds-spacing-05, 1rem));padding-right:calc((75% * 0.2) - var(--cds-spacing-05, 1rem));margin-bottom:var(--cds-spacing-02, 0.25rem)}.c4p--create-side-panel.c4p--side-panel__container--max .c4p--side-panel__subtitle-text{width:calc(75% - var(--cds-spacing-05, 1rem));padding-right:calc((75% * 0.2) - var(--cds-spacing-05, 1rem));padding-bottom:var(--cds-spacing-05, 1rem);border-bottom:1px solid var(--cds-ui-03, #e0e0e0);color:var(--cds-text-02, #525252)}.bx--form.c4p--create-side-panel__form{padding-top:var(--cds-spacing-05, 1rem)}.c4p--create-side-panel__form.bx--fieldset{padding-top:var(--cds-spacing-03, 0.5rem)}.c4p--create-side-panel__form>*{margin-bottom:var(--cds-spacing-05, 1rem)}.c4p--create-side-panel__form-title-text{font-size:var(--cds-productive-heading-02-font-size, 1rem);font-weight:var(--cds-productive-heading-02-font-weight, 600);line-height:var(--cds-productive-heading-02-line-height, 1.375);letter-spacing:var(--cds-productive-heading-02-letter-spacing, 0);padding-bottom:var(--cds-spacing-03, 0.5rem)}.c4p--create-side-panel__form-description-text{font-size:var(--cds-body-long-01-font-size, 0.875rem);font-weight:var(--cds-body-long-01-font-weight, 400);line-height:var(--cds-body-long-01-line-height, 1.42857);letter-spacing:var(--cds-body-long-01-letter-spacing, 0.16px)}.c4p--create-side-panel.c4p--side-panel .bx--btn.c4p--side-panel__close-button{display:none}.c4p--create-side-panel__title{font-size:var(--cds-productive-heading-03-font-size, 1.25rem);font-weight:var(--cds-productive-heading-03-font-weight, 400);line-height:var(--cds-productive-heading-03-line-height, 1.4);letter-spacing:var(--cds-productive-heading-03-letter-spacing, 0);margin-bottom:var(--cds-spacing-02, 0.25rem)}.c4p--create-side-panel__subtitle{font-size:var(--cds-body-short-01-font-size, 0.875rem);font-weight:var(--cds-body-short-01-font-weight, 400);line-height:var(--cds-body-short-01-line-height, 1.28572);letter-spacing:var(--cds-body-short-01-letter-spacing, 0.16px);margin-bottom:var(--cds-spacing-03, 0.5rem);color:var(--cds-text-02, #525252)}.c4p--side-panel .c4p--create-side-panel__actions-container{position:absolute;z-index:4;bottom:0;left:0;width:100%;margin-bottom:0}@keyframes rotate{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}@keyframes rotate-end-p1{100%{transform:rotate(360deg)}}@keyframes rotate-end-p2{100%{transform:rotate(-360deg)}}@keyframes init-stroke{0%{stroke-dashoffset:276.4608}100%{stroke-dashoffset:52.527552}}@keyframes stroke-end{0%{stroke-dashoffset:52.527552}100%{stroke-dashoffset:276.4608}}@keyframes stroke{100%{stroke-dashoffset:0}}.c4p--tearsheet.c4p--tearsheet{z-index:9001;align-items:flex-end;color:var(--cds-text-01, #161616);transition:visibility 0s linear 240ms,background-color 240ms cubic-bezier(0.4, 0.14, 1, 1),opacity 240ms cubic-bezier(0.4, 0.14, 1, 1);--c4p--tearsheet--stacking-scale-factor-single: 0.95;--c4p--tearsheet--stacking-scale-factor-double: 0.9}.c4p--tearsheet.is-visible{z-index:9000;align-items:flex-end;transition:visibility 0s linear,background-color 240ms cubic-bezier(0, 0, 0.3, 1),opacity 240ms cubic-bezier(0, 0, 0.3, 1)}.c4p--tearsheet.c4p--tearsheet--stacked-1-of-2{z-index:8999;background-color:rgba(22,22,22,.33)}.c4p--tearsheet.c4p--tearsheet--stacked-1-of-3{z-index:8998;background-color:rgba(22,22,22,.11)}.c4p--tearsheet.c4p--tearsheet--stacked-2-of-3{z-index:8999;background-color:rgba(22,22,22,.25)}.c4p--tearsheet.c4p--tearsheet--stacked-2-of-2,.c4p--tearsheet.c4p--tearsheet--stacked-3-of-3{background-color:rgba(22,22,22,.25)}.c4p--tearsheet .c4p--tearsheet__container{top:auto;height:100%;max-height:calc(100% - var(--cds-spacing-09, 3rem));transform:translate3d(0, min(95vh, 500px), 0)}.c4p--tearsheet.c4p--tearsheet.c4p--tearsheet .c4p--tearsheet__container{transition:transform 240ms cubic-bezier(0, 0, 0.3, 1),max-height 240ms cubic-bezier(0, 0, 0.3, 1)}.c4p--tearsheet.c4p--tearsheet--stacked-1-of-2 .c4p--tearsheet__container,.c4p--tearsheet.c4p--tearsheet--stacked-2-of-3 .c4p--tearsheet__container{max-height:calc(100% - var(--cds-spacing-09, 3rem) + var(--cds-spacing-05, 1rem))}.c4p--tearsheet.c4p--tearsheet--stacked-1-of-3 .c4p--tearsheet__container{max-height:calc(100% - var(--cds-spacing-09, 3rem) + (2 * var(--cds-spacing-05, 1rem)))}.c4p--tearsheet .c4p--tearsheet__container--lower{max-height:calc(100% - (var(--cds-spacing-09, 3rem) + var(--cds-spacing-08, 2.5rem)))}.c4p--tearsheet.c4p--tearsheet--stacked-1-of-2 .c4p--tearsheet__container--lower,.c4p--tearsheet.c4p--tearsheet--stacked-2-of-3 .c4p--tearsheet__container--lower{max-height:calc(
8
+ 100% - (var(--cds-spacing-09, 3rem) + var(--cds-spacing-08, 2.5rem)) + var(--cds-spacing-05, 1rem)
9
+ )}.c4p--tearsheet.c4p--tearsheet--stacked-1-of-3 .c4p--tearsheet__container--lower{max-height:calc(100% - (var(--cds-spacing-09, 3rem) + var(--cds-spacing-08, 2.5rem)) + (2 * var(--cds-spacing-05, 1rem)))}.c4p--tearsheet.c4p--tearsheet--wide .c4p--tearsheet__container{width:100%}@media(min-width: 42rem){.c4p--tearsheet.c4p--tearsheet--wide .c4p--tearsheet__container{width:calc(100% - (2 * var(--cds-spacing-10, 4rem)))}}.c4p--tearsheet.c4p--tearsheet--stacked-1-of-2.is-visible .c4p--tearsheet__container,.c4p--tearsheet.c4p--tearsheet--stacked-2-of-3.is-visible .c4p--tearsheet__container{transform:scale(var(--c4p--tearsheet--stacking-scale-factor-single))}.c4p--tearsheet.c4p--tearsheet--stacked-1-of-3.is-visible .c4p--tearsheet__container{transform:scale(var(--c4p--tearsheet--stacking-scale-factor-double))}.c4p--tearsheet.c4p--tearsheet--wide .c4p--tearsheet__header{padding:var(--cds-spacing-06, 1.5rem) var(--cds-spacing-07, 2rem);border-bottom:1px solid var(--cds-ui-03, #e0e0e0);margin:0}.c4p--tearsheet.c4p--tearsheet--wide .c4p--tearsheet__header--with-nav{padding-bottom:0}.c4p--tearsheet.c4p--tearsheet--narrow .c4p--tearsheet__header{padding:var(--cds-spacing-05, 1rem);margin:0}.c4p--tearsheet.c4p--tearsheet--wide .c4p--tearsheet__header--with-close-icon{padding-right:var(--cds-spacing-05, 1rem);margin-right:var(--cds-spacing-09, 3rem)}.c4p--tearsheet .c4p--tearsheet__header-content{display:flex;justify-content:space-between}.c4p--tearsheet .c4p--tearsheet__header-fields{flex:1 1 100%}.c4p--tearsheet .c4p--tearsheet__header-actions{flex:0 0 auto;padding-left:var(--cds-spacing-06, 1.5rem)}.c4p--tearsheet .c4p--tearsheet__header-actions .bx--btn-set .bx--btn:not(:first-of-type){margin-left:var(--cds-spacing-03, 0.5rem)}.c4p--tearsheet .c4p--tearsheet__header--no-close-icon{display:none}.c4p--tearsheet.c4p--tearsheet--wide .bx--modal-header__heading.c4p--tearsheet__heading{font-size:var(--cds-productive-heading-04-font-size, 1.75rem);font-weight:var(--cds-productive-heading-04-font-weight, 400);line-height:var(--cds-productive-heading-04-line-height, 1.28572);letter-spacing:var(--cds-productive-heading-04-letter-spacing, 0)}.c4p--tearsheet .c4p--tearsheet__header-description{display:-webkit-box;overflow:hidden;max-width:100%;margin-top:var(--cds-spacing-05, 1rem);font-size:var(--cds-body-short-01-font-size, 0.875rem);font-weight:var(--cds-body-short-01-font-weight, 400);line-height:var(--cds-body-short-01-line-height, 1.28572);letter-spacing:var(--cds-body-short-01-letter-spacing, 0.16px);-webkit-box-orient:vertical;-webkit-line-clamp:2}@media(min-width: 42rem){.c4p--tearsheet .c4p--tearsheet__header-description{max-width:60%}}.c4p--tearsheet.c4p--tearsheet--wide .c4p--tearsheet__header-description{margin-top:var(--cds-spacing-03, 0.5rem)}.c4p--tearsheet .c4p--tearsheet__header-navigation{margin:var(--cds-spacing-04, 0.75rem) 0 0}.c4p--tearsheet.c4p--tearsheet .c4p--tearsheet__body{display:flex;flex-direction:row;padding:0;margin:0}.c4p--tearsheet .c4p--tearsheet__resize-detector{width:100%;height:0}.c4p--tearsheet .c4p--tearsheet__influencer{flex:0 0 257px;border-right:1px solid var(--cds-ui-03, #e0e0e0);overflow-y:auto}.c4p--tearsheet .c4p--tearsheet__influencer--wide{flex-basis:321px}.c4p--tearsheet .c4p--tearsheet__right{display:grid;flex-grow:1;grid-template-columns:100%;grid-template-rows:1fr auto}.c4p--tearsheet .c4p--tearsheet__main{display:flex;flex-direction:row;grid-column:1/-1;grid-row:1/-1}.c4p--tearsheet .c4p--tearsheet__main .c4p--tearsheet__influencer{border-right:none;border-left:1px solid var(--cds-ui-03, #e0e0e0)}.c4p--tearsheet .c4p--tearsheet__content{overflow:auto;flex-grow:1}.c4p--tearsheet.c4p--tearsheet--wide .c4p--tearsheet__content{background:var(--cds-ui-background, #ffffff)}.c4p--tearsheet.c4p--tearsheet--wide .c4p--tearsheet__content .bx--pagination,.c4p--tearsheet.c4p--tearsheet--wide .c4p--tearsheet__content .bx--pagination__control-buttons,.c4p--tearsheet.c4p--tearsheet--wide .c4p--tearsheet__content .bx--text-input,.c4p--tearsheet.c4p--tearsheet--wide .c4p--tearsheet__content .bx--text-area,.c4p--tearsheet.c4p--tearsheet--wide .c4p--tearsheet__content .bx--search-input,.c4p--tearsheet.c4p--tearsheet--wide .c4p--tearsheet__content .bx--select-input,.c4p--tearsheet.c4p--tearsheet--wide .c4p--tearsheet__content .bx--dropdown,.c4p--tearsheet.c4p--tearsheet--wide .c4p--tearsheet__content .bx--dropdown-list,.c4p--tearsheet.c4p--tearsheet--wide .c4p--tearsheet__content .bx--number input[type=number],.c4p--tearsheet.c4p--tearsheet--wide .c4p--tearsheet__content .bx--date-picker__input{background-color:var(--cds-field-01, #f4f4f4)}.c4p--tearsheet.c4p--tearsheet--wide .c4p--tearsheet__content .bx--text-input--light,.c4p--tearsheet.c4p--tearsheet--wide .c4p--tearsheet__content .bx--text-area--light,.c4p--tearsheet.c4p--tearsheet--wide .c4p--tearsheet__content .bx--search--light .bx--search-input,.c4p--tearsheet.c4p--tearsheet--wide .c4p--tearsheet__content .bx--select--light .bx--select-input,.c4p--tearsheet.c4p--tearsheet--wide .c4p--tearsheet__content .bx--dropdown--light,.c4p--tearsheet.c4p--tearsheet--wide .c4p--tearsheet__content .bx--dropdown--light .bx--dropdown-list,.c4p--tearsheet.c4p--tearsheet--wide .c4p--tearsheet__content .bx--number--light input[type=number],.c4p--tearsheet.c4p--tearsheet--wide .c4p--tearsheet__content .bx--date-picker--light .bx--date-picker__input{background-color:var(--cds-field-02, #ffffff)}.c4p--tearsheet .c4p--tearsheet__button-container{grid-column:1/-1;grid-row:-1/-1;overflow-x:auto}.c4p--tearsheet .c4p--tearsheet__buttons{display:inline-flex;min-width:100%;border-top:1px solid var(--cds-ui-03, #e0e0e0)}.c4p--tearsheet.c4p--tearsheet--wide .c4p--tearsheet__buttons{background:var(--cds-ui-background, #ffffff)}.c4p--create-tearsheet-narrow .bx--modal-header__heading,.c4p--create-tearsheet-narrow .bx--modal-header__label,.c4p--create-tearsheet-narrow .c4p--tearsheet__header-description{max-width:100%;padding-right:calc(20% - var(--cds-spacing-05, 1rem))}.c4p--create-tearsheet-narrow .c4p--tearsheet__header-description{margin-top:var(--cds-spacing-02, 0.25rem)}.c4p--create-tearsheet-narrow .c4p--tearsheet__header{border-bottom:1px solid var(--cds-decorative-01, #e0e0e0)}.c4p--create-tearsheet-narrow .c4p--tearsheet__content{padding:var(--cds-spacing-05, 1rem)}.c4p--create-tearsheet-narrow .c4p--create-tearsheet-narrow__form{padding-top:var(--cds-spacing-05, 1rem)}.c4p--create-tearsheet-narrow .c4p--create-tearsheet-narrow__form>*{margin-bottom:var(--cds-spacing-05, 1rem)}.c4p--create-tearsheet-narrow .c4p--create-tearsheet-narrow__form>*:last-child{margin-bottom:0}.c4p--create-tearsheet-narrow .c4p--create-tearsheet-narrow__form-title-text{font-size:var(--cds-productive-heading-02-font-size, 1rem);font-weight:var(--cds-productive-heading-02-font-weight, 600);line-height:var(--cds-productive-heading-02-line-height, 1.375);letter-spacing:var(--cds-productive-heading-02-letter-spacing, 0);padding-bottom:var(--cds-spacing-03, 0.5rem)}.c4p--create-tearsheet-narrow .c4p--create-tearsheet-narrow__form-description-text{font-size:var(--cds-body-long-01-font-size, 0.875rem);font-weight:var(--cds-body-long-01-font-weight, 400);line-height:var(--cds-body-long-01-line-height, 1.42857);letter-spacing:var(--cds-body-long-01-letter-spacing, 0.16px)}@keyframes rotate{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}@keyframes rotate-end-p1{100%{transform:rotate(360deg)}}@keyframes rotate-end-p2{100%{transform:rotate(-360deg)}}@keyframes init-stroke{0%{stroke-dashoffset:276.4608}100%{stroke-dashoffset:52.527552}}@keyframes stroke-end{0%{stroke-dashoffset:52.527552}100%{stroke-dashoffset:276.4608}}@keyframes stroke{100%{stroke-dashoffset:0}}@keyframes stepContentEntrance{0%{opacity:0;transform:translateY(-0.75rem)}100%{opacity:1;transform:translateY(0)}}.c4p--tearsheet-create{--c4p--tearsheet-create--total-width: 0}.c4p--tearsheet-create .c4p--tearsheet-create__step--hidden-step,.c4p--tearsheet-create .c4p--tearsheet-create__step--hidden-section{display:none}.c4p--tearsheet-create .c4p--tearsheet-create__step--visible-section{display:block}.c4p--tearsheet-create .c4p--tearsheet-create__step--visible-step{animation:400ms stepContentEntrance;animation-fill-mode:forwards;animation-timing-function:cubic-bezier(0.2, 0, 0.38, 0.9);opacity:0}@media(prefers-reduced-motion){.c4p--tearsheet-create .c4p--tearsheet-create__step--visible-step{animation:none;opacity:1}}.c4p--tearsheet-create .c4p--tearsheet-create__content{height:100%;padding:var(--cds-spacing-06, 1.5rem);overflow-x:hidden}.c4p--tearsheet-create .c4p--tearsheet-create__content .bx--grid{padding:0;margin:0}.c4p--tearsheet-create .c4p--tearsheet-create__step--heading{padding-bottom:var(--cds-spacing-06, 1.5rem)}.c4p--tearsheet-create .bx--btn-set .bx--btn.bx--btn--disabled{box-shadow:-0.0625rem 0 0 0 var(--cds-button-separator, #e0e0e0)}.c4p--tearsheet-create .bx--side-nav--ux{position:initial;background-color:transparent}.c4p--tearsheet-create .c4p--tearsheet-create__section--divider{position:relative;display:block;width:var(--c4p--tearsheet-create--total-width);height:1px;margin:var(--cds-spacing-06, 1.5rem) calc(-1 * var(--cds-spacing-08, 2.5rem)) var(--cds-spacing-07, 2rem) calc(-1 * var(--cds-spacing-06, 1.5rem));background-color:var(--cds-ui-03, #e0e0e0)}.c4p--tearsheet-create .c4p--tearsheet-create__step--title,.c4p--tearsheet-create .c4p--tearsheet-create__section--title{margin-bottom:var(--cds-spacing-05, 1rem)}.c4p--tearsheet-create .c4p--tearsheet-create__section--subtitle,.c4p--tearsheet-create .c4p--tearsheet-create__step--subtitle{font-size:var(--cds-productive-heading-01-font-size, 0.875rem);font-weight:var(--cds-productive-heading-01-font-weight, 600);line-height:var(--cds-productive-heading-01-line-height, 1.28572);letter-spacing:var(--cds-productive-heading-01-letter-spacing, 0.16px);margin-bottom:var(--cds-spacing-03, 0.5rem)}.c4p--tearsheet-create .c4p--tearsheet-create__section--description,.c4p--tearsheet-create .c4p--tearsheet-create__step--description{font-size:var(--cds-body-long-01-font-size, 0.875rem);font-weight:var(--cds-body-long-01-font-weight, 400);line-height:var(--cds-body-long-01-line-height, 1.42857);letter-spacing:var(--cds-body-long-01-letter-spacing, 0.16px);margin-bottom:var(--cds-spacing-06, 1.5rem)}.c4p--tearsheet-create .bx--fieldset{margin-bottom:0}.c4p--tearsheet-create .c4p--tearsheet-create__step--fieldset>*{margin-bottom:var(--cds-spacing-05, 1rem)}.c4p--empty-state{color:var(--cds-text-01, #161616)}.c4p--empty-state .c4p--empty-state__header,.c4p--empty-state .c4p--empty-state__subtitle{padding-bottom:var(--cds-spacing-02, 0.25rem);margin:0}.c4p--empty-state .c4p--empty-state__header--small{font-size:var(--cds-productive-heading-03-font-size, 1.25rem);font-weight:var(--cds-productive-heading-03-font-weight, 400);line-height:var(--cds-productive-heading-03-line-height, 1.4);letter-spacing:var(--cds-productive-heading-03-letter-spacing, 0)}.c4p--empty-state .c4p--empty-state__subtitle--small{font-size:var(--cds-body-short-01-font-size, 0.875rem);font-weight:var(--cds-body-short-01-font-weight, 400);line-height:var(--cds-body-short-01-line-height, 1.28572);letter-spacing:var(--cds-body-short-01-letter-spacing, 0.16px)}.c4p--empty-state__illustration.c4p--empty-state__illustration--lg{min-width:var(--cds-spacing-11, 5rem);max-width:var(--cds-spacing-11, 5rem)}.c4p--empty-state__illustration.c4p--empty-state__illustration--sm{min-width:var(--cds-spacing-10, 4rem);max-width:var(--cds-spacing-10, 4rem)}.c4p--empty-state__action-button,.c4p--empty-state__link{margin-top:var(--cds-spacing-06, 1.5rem)}.c4p--empty-state .c4p--empty-state__action-button{display:block}.c4p--empty-state .c4p--empty-state__link{display:block}@keyframes rotate{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}@keyframes rotate-end-p1{100%{transform:rotate(360deg)}}@keyframes rotate-end-p2{100%{transform:rotate(-360deg)}}@keyframes init-stroke{0%{stroke-dashoffset:276.4608}100%{stroke-dashoffset:52.527552}}@keyframes stroke-end{0%{stroke-dashoffset:52.527552}100%{stroke-dashoffset:276.4608}}.c4p--export-modal .bx--modal-footer .bx--btn{max-width:none}.c4p--export-modal.bx--modal .bx--modal-content{padding-right:var(--cds-spacing-05, 1rem)}.c4p--export-modal .bx--modal-close{display:none}.c4p--export-modal__body{padding-right:calc(20% - var(--cds-spacing-05, 1rem));margin-bottom:var(--cds-spacing-05, 1rem)}.c4p--export-modal__messaging{display:flex;align-items:center}.c4p--export-modal__messaging p{margin-left:var(--cds-spacing-03, 0.5rem)}.c4p--export-modal__checkmark-icon{fill:var(--cds-interactive-01, #0f62fe)}.c4p--export-modal__error-icon{fill:var(--cds-danger, #da1e28)}.c4p--card{background:var(--cds-ui-01, #f4f4f4);color:var(--cds-text-01, #161616)}.c4p--card__clickable{cursor:pointer;transition:background 110ms}.c4p--card__clickable:hover{background:var(--cds-hover-ui, #e5e5e5)}.c4p--card__media-left{display:flex;flex-direction:row}.c4p--card__media-left .c4p--card__content-container{display:flex;flex:1;flex-direction:column}.c4p--card__media-left .c4p--card__footer{align-self:flex-end;margin-top:auto}.c4p--card__media>*{display:block;max-width:100%}.c4p--card__header{padding:var(--cds-spacing-05, 1rem)}.c4p--card__header-label-only{padding-bottom:var(--cds-spacing-03, 0.5rem)}.c4p--card__header-label-only .c4p--card__label{margin-bottom:0}.c4p--card__header-container{display:flex;flex-direction:row;align-items:center;justify-content:space-between}.c4p--card__label{font-size:var(--cds-label-01-font-size, 0.75rem);font-weight:var(--cds-label-01-font-weight, 400);line-height:var(--cds-label-01-line-height, 1.33333);letter-spacing:var(--cds-label-01-letter-spacing, 0.32px);margin-bottom:var(--cds-spacing-01, 0.125rem)}.c4p--card__description{font-size:var(--cds-caption-01-font-size, 0.75rem);font-weight:var(--cds-caption-01-font-weight, 400);line-height:var(--cds-caption-01-line-height, 1.33333);letter-spacing:var(--cds-caption-01-letter-spacing, 0.32px);margin-top:var(--cds-spacing-01, 0.125rem)}.c4p--card__body{font-size:var(--cds-body-short-01-font-size, 0.875rem);font-weight:var(--cds-body-short-01-font-weight, 400);line-height:var(--cds-body-short-01-line-height, 1.28572);letter-spacing:var(--cds-body-short-01-letter-spacing, 0.16px);padding:var(--cds-spacing-05, 1rem);padding-top:0}.c4p--card__footer{display:flex;justify-content:flex-end}.c4p--card__actions{display:flex;flex-direction:row;margin:var(--cds-spacing-05, 1rem);margin-top:0}.c4p--card__icon{cursor:pointer}.c4p--card__link{color:inherit;text-decoration:inherit}.c4p--card__pictogram{padding-top:var(--cds-spacing-05, 1rem);padding-left:var(--cds-spacing-05, 1rem)}.c4p--card__title{font-size:var(--cds-productive-heading-03-font-size, 1.25rem);font-weight:var(--cds-productive-heading-03-font-weight, 400);line-height:var(--cds-productive-heading-03-line-height, 1.4);letter-spacing:var(--cds-productive-heading-03-letter-spacing, 0)}.c4p--http-errors .c4p--http-errors__content{position:fixed;z-index:2;top:50%;left:50%;transform:translate(-50%, -150%)}@media(min-width: 42rem){.c4p--http-errors .c4p--http-errors__content{transform:translate(-50%, -50%)}}.c4p--http-errors .c4p--http-errors__error-code-label{font-size:var(--cds-productive-heading-02-font-size, 1rem);font-weight:var(--cds-productive-heading-02-font-weight, 600);line-height:var(--cds-productive-heading-02-line-height, 1.375);letter-spacing:var(--cds-productive-heading-02-letter-spacing, 0);margin-bottom:var(--cds-spacing-02, 0.25rem)}.c4p--http-errors .c4p--http-errors__title{font-size:var(--cds-productive-heading-05-font-size, 2rem);font-weight:var(--cds-productive-heading-05-font-weight, 400);line-height:var(--cds-productive-heading-05-line-height, 1.25);letter-spacing:var(--cds-productive-heading-05-letter-spacing, 0);margin-bottom:var(--cds-spacing-04, 0.75rem)}.c4p--http-errors .c4p--http-errors__description{font-size:var(--cds-body-short-01-font-size, 0.875rem);font-weight:var(--cds-body-short-01-font-weight, 400);line-height:var(--cds-body-short-01-line-height, 1.28572);letter-spacing:var(--cds-body-short-01-letter-spacing, 0.16px);margin-bottom:var(--cds-spacing-06, 1.5rem)}.c4p--http-errors .c4p--http-errors__error-code-label,.c4p--http-errors .c4p--http-errors__title,.c4p--http-errors .c4p--http-errors__description{color:var(--cds-text-01, #161616)}.c4p--http-errors .c4p--http-errors__link{display:block;margin-bottom:var(--cds-spacing-02, 0.25rem)}.c4p--http-errors .c4p--http-errors__image{position:fixed;top:50%;left:50%;width:100%;transform:translate(-50%, -40%)}@media(min-width: 42rem){.c4p--http-errors .c4p--http-errors__image{transform:translate(-50%, -50%)}}@keyframes rotate{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}@keyframes rotate-end-p1{100%{transform:rotate(360deg)}}@keyframes rotate-end-p2{100%{transform:rotate(-360deg)}}@keyframes init-stroke{0%{stroke-dashoffset:276.4608}100%{stroke-dashoffset:52.527552}}@keyframes stroke-end{0%{stroke-dashoffset:52.527552}100%{stroke-dashoffset:276.4608}}.c4p--import-modal .bx--modal-close{display:none}.c4p--import-modal .bx--modal-footer .bx--btn{max-width:none}.c4p--import-modal.bx--modal .bx--modal-content{padding-right:var(--cds-spacing-05, 1rem)}.bx--file .bx--file-container,.bx--file~.bx--file-container{margin-top:0}.bx--modal-container--sm .bx--modal-header{padding-right:calc(20% - var(--cds-spacing-05, 1rem))}.c4p--import-modal__input-group{display:flex}.c4p--import-modal__import-button.bx--btn{margin-left:var(--cds-spacing-03, 0.5rem)}.c4p--import-modal__file-container{width:100%}.c4p--import-modal .c4p--import-modal__file-drop-header,.c4p--import-modal .c4p--import-modal__label{margin-bottom:var(--cds-spacing-03, 0.5rem);font-size:var(--cds-productive-heading-01-font-size, 0.875rem);font-weight:var(--cds-productive-heading-01-font-weight, 600);line-height:var(--cds-productive-heading-01-line-height, 1.28572);letter-spacing:var(--cds-productive-heading-01-letter-spacing, 0.16px)}.c4p--import-modal__helper-text{margin-top:var(--cds-spacing-06, 1.5rem);margin-bottom:var(--cds-spacing-03, 0.5rem);font-size:var(--cds-helper-text-01-font-size, 0.75rem);line-height:var(--cds-helper-text-01-line-height, 1.33333);letter-spacing:var(--cds-helper-text-01-letter-spacing, 0.32px)}.c4p--import-modal__body{padding-right:calc(20% - var(--cds-spacing-05, 1rem));margin-bottom:var(--cds-spacing-06, 1.5rem)}.c4p--import-modal .bx--file__selected-file{max-width:none;background:var(--cds-ui-02, #ffffff)}.c4p--import-modal .bx--file{margin-bottom:var(--cds-spacing-05, 1rem)}.c4p--import-modal .bx--text-input:disabled{background:var(--cds-ui-02, #ffffff)}@keyframes fadeIn{0%{opacity:0;transform:translateY(-38.5rem)}100%{opacity:1;transform:translateY(0)}}@keyframes fadeOut{0%{opacity:1;transform:translateY(0)}100%{opacity:0;transform:translateY(-38.5rem)}}.c4p--notifications-panel__container{--cds-interactive-01: #0f62fe;--cds-interactive-02: #6f6f6f;--cds-interactive-03: #ffffff;--cds-interactive-04: #4589ff;--cds-ui-background: #161616;--cds-ui-01: #262626;--cds-ui-02: #393939;--cds-ui-03: #393939;--cds-ui-04: #6f6f6f;--cds-ui-05: #f4f4f4;--cds-text-01: #f4f4f4;--cds-text-02: #c6c6c6;--cds-text-03: #6f6f6f;--cds-text-04: #ffffff;--cds-text-05: #8d8d8d;--cds-text-error: #ff8389;--cds-icon-01: #f4f4f4;--cds-icon-02: #c6c6c6;--cds-icon-03: #ffffff;--cds-link-01: #78a9ff;--cds-link-02: #a6c8ff;--cds-inverse-link: #0f62fe;--cds-field-01: #262626;--cds-field-02: #393939;--cds-inverse-01: #161616;--cds-inverse-02: #f4f4f4;--cds-support-01: #fa4d56;--cds-support-02: #42be65;--cds-support-03: #f1c21b;--cds-support-04: #4589ff;--cds-inverse-support-01: #da1e28;--cds-inverse-support-02: #24a148;--cds-inverse-support-03: #f1c21b;--cds-inverse-support-04: #0f62fe;--cds-overlay-01: rgba(0, 0, 0, 0.65);--cds-danger-01: #da1e28;--cds-danger-02: #fa4d56;--cds-focus: #ffffff;--cds-inverse-focus-ui: #0f62fe;--cds-hover-primary: #0353e9;--cds-active-primary: #002d9c;--cds-hover-primary-text: #a6c8ff;--cds-hover-secondary: #606060;--cds-active-secondary: #393939;--cds-hover-tertiary: #f4f4f4;--cds-active-tertiary: #c6c6c6;--cds-hover-ui: #353535;--cds-hover-light-ui: #4c4c4c;--cds-hover-selected-ui: #4c4c4c;--cds-active-ui: #525252;--cds-active-light-ui: #6f6f6f;--cds-selected-ui: #393939;--cds-selected-light-ui: #525252;--cds-inverse-hover-ui: #e5e5e5;--cds-hover-danger: #b81921;--cds-active-danger: #750e13;--cds-hover-row: #353535;--cds-visited-link: #be95ff;--cds-disabled-01: #262626;--cds-disabled-02: #525252;--cds-disabled-03: #8d8d8d;--cds-highlight: #002d9c;--cds-decorative-01: #525252;--cds-button-separator: #161616;--cds-skeleton-01: #353535;--cds-skeleton-02: #525252;--cds-background: #161616;--cds-layer: #262626;--cds-layer-accent: #393939;--cds-layer-accent-hover: #474747;--cds-layer-accent-active: #6f6f6f;--cds-field: #262626;--cds-background-inverse: #f4f4f4;--cds-background-brand: #0f62fe;--cds-interactive: #4589ff;--cds-border-subtle: #393939;--cds-border-strong: #6f6f6f;--cds-border-inverse: #f4f4f4;--cds-border-interactive: #4589ff;--cds-text-primary: #f4f4f4;--cds-text-secondary: #c6c6c6;--cds-text-placeholder: #6f6f6f;--cds-text-helper: #8d8d8d;--cds-text-on-color: #ffffff;--cds-text-inverse: #161616;--cds-link-primary: #78a9ff;--cds-link-secondary: #a6c8ff;--cds-link-visited: #be95ff;--cds-link-inverse: #0f62fe;--cds-icon-primary: #f4f4f4;--cds-icon-secondary: #c6c6c6;--cds-icon-on-color: #ffffff;--cds-icon-inverse: #161616;--cds-support-error: #fa4d56;--cds-support-success: #42be65;--cds-support-warning: #f1c21b;--cds-support-info: #4589ff;--cds-support-error-inverse: #da1e28;--cds-support-success-inverse: #24a148;--cds-support-warning-inverse: #f1c21b;--cds-support-info-inverse: #0f62fe;--cds-overlay: rgba(0, 0, 0, 0.65);--cds-toggle-off: #6f6f6f;--cds-shadow: rgba(0, 0, 0, 0.8);--cds-button-primary: #0f62fe;--cds-button-secondary: #6f6f6f;--cds-button-tertiary: #ffffff;--cds-button-danger-primary: #da1e28;--cds-button-danger-secondary: #fa4d56;--cds-background-active: #525252;--cds-layer-active: #525252;--cds-button-danger-active: #750e13;--cds-button-primary-active: #002d9c;--cds-button-secondary-active: #393939;--cds-button-tertiary-active: #c6c6c6;--cds-focus-inset: #161616;--cds-focus-inverse: #0f62fe;--cds-background-hover: #353535;--cds-layer-hover: #353535;--cds-field-hover: #353535;--cds-background-inverse-hover: #e5e5e5;--cds-link-primary-hover: #a6c8ff;--cds-button-danger-hover: #b81921;--cds-button-primary-hover: #0353e9;--cds-button-secondary-hover: #606060;--cds-button-tertiary-hover: #f4f4f4;--cds-background-selected: #393939;--cds-background-selected-hover: #4c4c4c;--cds-layer-selected: #393939;--cds-layer-selected-hover: #4c4c4c;--cds-layer-selected-inverse: #f4f4f4;--cds-border-subtle-selected: #525252;--cds-layer-disabled: #262626;--cds-field-disabled: #262626;--cds-border-disabled: #262626;--cds-text-disabled: #525252;--cds-button-disabled: #525252;--cds-icon-disabled: #525252;--cds-text-on-color-disabled: #8d8d8d;--cds-icon-on-color-disabled: #8d8d8d;--cds-layer-selected-disabled: #8d8d8d;--cds-skeleton-background: #353535;--cds-skeleton-element: #525252;--cds-brand-01: #0f62fe;--cds-brand-02: #6f6f6f;--cds-brand-03: #ffffff;--cds-active-01: #525252;--cds-hover-field: #353535;--cds-danger: #da1e28;--cds-caption-01-font-size: 0.75rem;--cds-caption-01-font-weight: 400;--cds-caption-01-line-height: 1.33333;--cds-caption-01-letter-spacing: 0.32px;--cds-caption-02-font-size: 0.875rem;--cds-caption-02-font-weight: 400;--cds-caption-02-line-height: 1.28572;--cds-caption-02-letter-spacing: 0.32px;--cds-label-01-font-size: 0.75rem;--cds-label-01-font-weight: 400;--cds-label-01-line-height: 1.33333;--cds-label-01-letter-spacing: 0.32px;--cds-label-02-font-size: 0.875rem;--cds-label-02-font-weight: 400;--cds-label-02-line-height: 1.28572;--cds-label-02-letter-spacing: 0.16px;--cds-helper-text-01-font-size: 0.75rem;--cds-helper-text-01-line-height: 1.33333;--cds-helper-text-01-letter-spacing: 0.32px;--cds-helper-text-02-font-size: 0.875rem;--cds-helper-text-02-line-height: 1.28572;--cds-helper-text-02-letter-spacing: 0.16px;--cds-body-short-01-font-size: 0.875rem;--cds-body-short-01-font-weight: 400;--cds-body-short-01-line-height: 1.28572;--cds-body-short-01-letter-spacing: 0.16px;--cds-body-long-01-font-size: 0.875rem;--cds-body-long-01-font-weight: 400;--cds-body-long-01-line-height: 1.42857;--cds-body-long-01-letter-spacing: 0.16px;--cds-body-short-02-font-size: 1rem;--cds-body-short-02-font-weight: 400;--cds-body-short-02-line-height: 1.375;--cds-body-short-02-letter-spacing: 0;--cds-body-long-02-font-size: 1rem;--cds-body-long-02-font-weight: 400;--cds-body-long-02-line-height: 1.5;--cds-body-long-02-letter-spacing: 0;--cds-code-01-font-family: 'IBM Plex Mono', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', Courier, monospace;--cds-code-01-font-size: 0.75rem;--cds-code-01-font-weight: 400;--cds-code-01-line-height: 1.33333;--cds-code-01-letter-spacing: 0.32px;--cds-code-02-font-family: 'IBM Plex Mono', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', Courier, monospace;--cds-code-02-font-size: 0.875rem;--cds-code-02-font-weight: 400;--cds-code-02-line-height: 1.42857;--cds-code-02-letter-spacing: 0.32px;--cds-heading-01-font-size: 0.875rem;--cds-heading-01-font-weight: 600;--cds-heading-01-line-height: 1.42857;--cds-heading-01-letter-spacing: 0.16px;--cds-productive-heading-01-font-size: 0.875rem;--cds-productive-heading-01-font-weight: 600;--cds-productive-heading-01-line-height: 1.28572;--cds-productive-heading-01-letter-spacing: 0.16px;--cds-heading-02-font-size: 1rem;--cds-heading-02-font-weight: 600;--cds-heading-02-line-height: 1.5;--cds-heading-02-letter-spacing: 0;--cds-productive-heading-02-font-size: 1rem;--cds-productive-heading-02-font-weight: 600;--cds-productive-heading-02-line-height: 1.375;--cds-productive-heading-02-letter-spacing: 0;--cds-productive-heading-03-font-size: 1.25rem;--cds-productive-heading-03-font-weight: 400;--cds-productive-heading-03-line-height: 1.4;--cds-productive-heading-03-letter-spacing: 0;--cds-productive-heading-04-font-size: 1.75rem;--cds-productive-heading-04-font-weight: 400;--cds-productive-heading-04-line-height: 1.28572;--cds-productive-heading-04-letter-spacing: 0;--cds-productive-heading-05-font-size: 2rem;--cds-productive-heading-05-font-weight: 400;--cds-productive-heading-05-line-height: 1.25;--cds-productive-heading-05-letter-spacing: 0;--cds-productive-heading-06-font-size: 2.625rem;--cds-productive-heading-06-font-weight: 300;--cds-productive-heading-06-line-height: 1.199;--cds-productive-heading-06-letter-spacing: 0;--cds-productive-heading-07-font-size: 3.375rem;--cds-productive-heading-07-font-weight: 300;--cds-productive-heading-07-line-height: 1.199;--cds-productive-heading-07-letter-spacing: 0;--cds-expressive-heading-01-font-size: 0.875rem;--cds-expressive-heading-01-font-weight: 600;--cds-expressive-heading-01-line-height: 1.25;--cds-expressive-heading-01-letter-spacing: 0.16px;--cds-expressive-heading-02-font-size: 1rem;--cds-expressive-heading-02-font-weight: 600;--cds-expressive-heading-02-line-height: 1.5;--cds-expressive-heading-02-letter-spacing: 0;--cds-expressive-heading-03-font-size: 1.25rem;--cds-expressive-heading-03-font-weight: 400;--cds-expressive-heading-03-line-height: 1.4;--cds-expressive-heading-03-letter-spacing: 0;--cds-expressive-heading-04-font-size: 1.75rem;--cds-expressive-heading-04-font-weight: 400;--cds-expressive-heading-04-line-height: 1.28572;--cds-expressive-heading-04-letter-spacing: 0;--cds-expressive-heading-05-font-size: 2rem;--cds-expressive-heading-05-font-weight: 400;--cds-expressive-heading-05-line-height: 1.25;--cds-expressive-heading-05-letter-spacing: 0;--cds-expressive-heading-06-font-size: 2rem;--cds-expressive-heading-06-font-weight: 600;--cds-expressive-heading-06-line-height: 1.25;--cds-expressive-heading-06-letter-spacing: 0;--cds-expressive-paragraph-01-font-size: 1.5rem;--cds-expressive-paragraph-01-font-weight: 300;--cds-expressive-paragraph-01-line-height: 1.334;--cds-expressive-paragraph-01-letter-spacing: 0;--cds-quotation-01-font-family: 'IBM Plex Serif', 'Georgia', Times, serif;--cds-quotation-01-font-size: 1.25rem;--cds-quotation-01-font-weight: 400;--cds-quotation-01-line-height: 1.3;--cds-quotation-01-letter-spacing: 0;--cds-quotation-02-font-family: 'IBM Plex Serif', 'Georgia', Times, serif;--cds-quotation-02-font-size: 2rem;--cds-quotation-02-font-weight: 300;--cds-quotation-02-line-height: 1.25;--cds-quotation-02-letter-spacing: 0;--cds-display-01-font-size: 2.625rem;--cds-display-01-font-weight: 300;--cds-display-01-line-height: 1.19;--cds-display-01-letter-spacing: 0;--cds-display-02-font-size: 2.625rem;--cds-display-02-font-weight: 600;--cds-display-02-line-height: 1.19;--cds-display-02-letter-spacing: 0;--cds-display-03-font-size: 2.625rem;--cds-display-03-font-weight: 300;--cds-display-03-line-height: 1.19;--cds-display-03-letter-spacing: 0;--cds-display-04-font-size: 2.625rem;--cds-display-04-font-weight: 600;--cds-display-04-line-height: 1.19;--cds-display-04-letter-spacing: 0;--cds-legal-01-font-size: 0.75rem;--cds-legal-01-font-weight: 400;--cds-legal-01-line-height: 1.33333;--cds-legal-01-letter-spacing: 0.32px;--cds-legal-02-font-size: 0.875rem;--cds-legal-02-font-weight: 400;--cds-legal-02-line-height: 1.28572;--cds-legal-02-letter-spacing: 0.16px;--cds-body-compact-01-font-size: 0.875rem;--cds-body-compact-01-font-weight: 400;--cds-body-compact-01-line-height: 1.28572;--cds-body-compact-01-letter-spacing: 0.16px;--cds-body-compact-02-font-size: 1rem;--cds-body-compact-02-font-weight: 400;--cds-body-compact-02-line-height: 1.375;--cds-body-compact-02-letter-spacing: 0;--cds-body-01-font-size: 0.875rem;--cds-body-01-font-weight: 400;--cds-body-01-line-height: 1.42857;--cds-body-01-letter-spacing: 0.16px;--cds-body-02-font-size: 1rem;--cds-body-02-font-weight: 400;--cds-body-02-line-height: 1.5;--cds-body-02-letter-spacing: 0;--cds-heading-compact-01-font-size: 0.875rem;--cds-heading-compact-01-font-weight: 600;--cds-heading-compact-01-line-height: 1.28572;--cds-heading-compact-01-letter-spacing: 0.16px;--cds-heading-compact-02-font-size: 1rem;--cds-heading-compact-02-font-weight: 600;--cds-heading-compact-02-line-height: 1.375;--cds-heading-compact-02-letter-spacing: 0;--cds-heading-03-font-size: 1.25rem;--cds-heading-03-font-weight: 400;--cds-heading-03-line-height: 1.4;--cds-heading-03-letter-spacing: 0;--cds-heading-04-font-size: 1.75rem;--cds-heading-04-font-weight: 400;--cds-heading-04-line-height: 1.28572;--cds-heading-04-letter-spacing: 0;--cds-heading-05-font-size: 2rem;--cds-heading-05-font-weight: 400;--cds-heading-05-line-height: 1.25;--cds-heading-05-letter-spacing: 0;--cds-heading-06-font-size: 2.625rem;--cds-heading-06-font-weight: 300;--cds-heading-06-line-height: 1.199;--cds-heading-06-letter-spacing: 0;--cds-heading-07-font-size: 3.375rem;--cds-heading-07-font-weight: 300;--cds-heading-07-line-height: 1.199;--cds-heading-07-letter-spacing: 0;--cds-fluid-heading-03-font-size: 1.25rem;--cds-fluid-heading-03-font-weight: 400;--cds-fluid-heading-03-line-height: 1.4;--cds-fluid-heading-03-letter-spacing: 0;--cds-fluid-heading-04-font-size: 1.75rem;--cds-fluid-heading-04-font-weight: 400;--cds-fluid-heading-04-line-height: 1.28572;--cds-fluid-heading-04-letter-spacing: 0;--cds-fluid-heading-05-font-size: 2rem;--cds-fluid-heading-05-font-weight: 400;--cds-fluid-heading-05-line-height: 1.25;--cds-fluid-heading-05-letter-spacing: 0;--cds-fluid-heading-06-font-size: 2rem;--cds-fluid-heading-06-font-weight: 600;--cds-fluid-heading-06-line-height: 1.25;--cds-fluid-heading-06-letter-spacing: 0;--cds-fluid-paragraph-01-font-size: 1.5rem;--cds-fluid-paragraph-01-font-weight: 300;--cds-fluid-paragraph-01-line-height: 1.334;--cds-fluid-paragraph-01-letter-spacing: 0;--cds-fluid-quotation-01-font-family: 'IBM Plex Serif', 'Georgia', Times, serif;--cds-fluid-quotation-01-font-size: 1.25rem;--cds-fluid-quotation-01-font-weight: 400;--cds-fluid-quotation-01-line-height: 1.3;--cds-fluid-quotation-01-letter-spacing: 0;--cds-fluid-quotation-02-font-family: 'IBM Plex Serif', 'Georgia', Times, serif;--cds-fluid-quotation-02-font-size: 2rem;--cds-fluid-quotation-02-font-weight: 300;--cds-fluid-quotation-02-line-height: 1.25;--cds-fluid-quotation-02-letter-spacing: 0;--cds-fluid-display-01-font-size: 2.625rem;--cds-fluid-display-01-font-weight: 300;--cds-fluid-display-01-line-height: 1.19;--cds-fluid-display-01-letter-spacing: 0;--cds-fluid-display-02-font-size: 2.625rem;--cds-fluid-display-02-font-weight: 600;--cds-fluid-display-02-line-height: 1.19;--cds-fluid-display-02-letter-spacing: 0;--cds-fluid-display-03-font-size: 2.625rem;--cds-fluid-display-03-font-weight: 300;--cds-fluid-display-03-line-height: 1.19;--cds-fluid-display-03-letter-spacing: 0;--cds-fluid-display-04-font-size: 2.625rem;--cds-fluid-display-04-font-weight: 600;--cds-fluid-display-04-line-height: 1.19;--cds-fluid-display-04-letter-spacing: 0;--cds-spacing-01: 0.125rem;--cds-spacing-02: 0.25rem;--cds-spacing-03: 0.5rem;--cds-spacing-04: 0.75rem;--cds-spacing-05: 1rem;--cds-spacing-06: 1.5rem;--cds-spacing-07: 2rem;--cds-spacing-08: 2.5rem;--cds-spacing-09: 3rem;--cds-spacing-10: 4rem;--cds-spacing-11: 5rem;--cds-spacing-12: 6rem;--cds-spacing-13: 10rem;--cds-fluid-spacing-01: 0;--cds-fluid-spacing-02: 2vw;--cds-fluid-spacing-03: 5vw;--cds-fluid-spacing-04: 10vw;--cds-layout-01: 1rem;--cds-layout-02: 1.5rem;--cds-layout-03: 2rem;--cds-layout-04: 3rem;--cds-layout-05: 4rem;--cds-layout-06: 6rem;--cds-layout-07: 10rem;--cds-container-01: 1.5rem;--cds-container-02: 2rem;--cds-container-03: 2.5rem;--cds-container-04: 3rem;--cds-container-05: 4rem;--cds-size-xsmall: 1.5rem;--cds-size-small: 2rem;--cds-size-medium: 2.5rem;--cds-size-large: 3rem;--cds-size-xlarge: 4rem;--cds-size-2XLarge: 5rem;--cds-icon-size-01: 1rem;--cds-icon-size-02: 1.25rem;position:fixed;z-index:2;top:var(--cds-spacing-09, 3rem);right:0;overflow:auto;min-width:22.75rem;max-width:22.75rem;min-height:38.5rem;max-height:38.5rem;background-color:var(--cds-ui-background, #ffffff);color:var(--cds-text-01, #161616);transition:transform 110ms;transition-timing-function:cubic-bezier(0.2, 0, 0.38, 0.9)}.c4p--notifications-panel__container .c4p--notifications-panel__header-container{position:sticky;z-index:2;top:0;padding:var(--cds-spacing-03, 0.5rem) var(--cds-spacing-05, 1rem) var(--cds-spacing-05, 1rem);border-bottom:1px solid var(--cds-ui-02, #ffffff);background-color:var(--cds-ui-background, #ffffff)}.c4p--notifications-panel__container .c4p--notifications-panel__header-container .c4p--notifications-panel__header-flex{display:flex;align-items:center;justify-content:space-between}.c4p--notifications-panel__container .c4p--notifications-panel__header-container .c4p--notifications-panel__do-not-disturb-toggle .bx--toggle__switch{margin-top:var(--cds-spacing-02, 0.25rem)}.c4p--notifications-panel__container .c4p--notifications-panel__header-container .c4p--notifications-panel__dismiss-button{color:var(--cds-text-01, #161616)}.c4p--notifications-panel__container .c4p--notifications-panel__header-container .c4p--notifications-panel__header{font-size:var(--cds-productive-heading-01-font-size, 0.875rem);font-weight:var(--cds-productive-heading-01-font-weight, 600);line-height:var(--cds-productive-heading-01-line-height, 1.28572);letter-spacing:var(--cds-productive-heading-01-letter-spacing, 0.16px);margin:0}.c4p--notifications-panel__container .c4p--notifications-panel__time-section-label{font-size:var(--cds-label-01-font-size, 0.75rem);font-weight:var(--cds-label-01-font-weight, 400);line-height:var(--cds-label-01-line-height, 1.33333);letter-spacing:var(--cds-label-01-letter-spacing, 0.32px);font-weight:600;position:sticky;z-index:2;top:4.8125rem;padding:var(--cds-spacing-03, 0.5rem) var(--cds-spacing-05, 1rem);background-color:var(--cds-ui-01, #f4f4f4);color:var(--cds-text-02, #525252)}.c4p--notifications-panel__container .c4p--notifications-panel__notification:hover,.c4p--notifications-panel__container .c4p--notifications-panel__notification:focus{background-color:var(--cds-ui-03, #e0e0e0)}.c4p--notifications-panel__container .c4p--notifications-panel__notification:hover .c4p--notifications-panel__dismiss-single-button,.c4p--notifications-panel__container .c4p--notifications-panel__notification:focus .c4p--notifications-panel__dismiss-single-button{opacity:1}.c4p--notifications-panel__container .c4p--notifications-panel__notification:focus{border-color:var(--cds-focus, #0f62fe);box-shadow:inset 0 0 0 2px var(--cds-focus, #0f62fe),inset 0 0 0 2px var(--cds-ui-background, #ffffff);outline:0}.c4p--notifications-panel__container .c4p--notifications-panel__notification{position:relative;display:flex;width:100%;min-height:6.25rem;align-items:flex-start;padding:var(--cds-spacing-05, 1rem);border:0;background-color:var(--cds-ui-background, #ffffff);cursor:pointer;text-align:left;transition:background-color 240ms;transition-timing-function:cubic-bezier(0.2, 0, 0.38, 0.9)}.c4p--notifications-panel__container .c4p--notifications-panel__notification .c4p--notifications-panel__notification-title{margin-bottom:var(--cds-spacing-02, 0.25rem);color:var(--cds-text-04, #ffffff);font-weight:400}.c4p--notifications-panel__container .c4p--notifications-panel__notification .c4p--notifications-panel__notification-title.c4p--notifications-panel__notification-title-unread{margin-bottom:var(--cds-spacing-02, 0.25rem);color:var(--cds-text-04, #ffffff);font-weight:600}.c4p--notifications-panel__container .c4p--notifications-panel__notification .c4p--notifications-panel__notifications-link{font-size:var(--cds-label-01-font-size, 0.75rem);font-weight:var(--cds-label-01-font-weight, 400);line-height:var(--cds-label-01-line-height, 1.33333);letter-spacing:var(--cds-label-01-letter-spacing, 0.32px)}.c4p--notifications-panel__container .c4p--notifications-panel__notification .c4p--notifications-panel__notification-status-icon{min-width:1rem;margin-right:var(--cds-spacing-03, 0.5rem)}.c4p--notifications-panel__container .c4p--notifications-panel__notification .c4p--notifications-panel__notification-status-icon.c4p--notifications-panel__notification-status-icon-error{fill:var(--cds-support-01, #da1e28)}.c4p--notifications-panel__container .c4p--notifications-panel__notification .c4p--notifications-panel__notification-status-icon.c4p--notifications-panel__notification-status-icon-success{fill:var(--cds-support-02, #198038)}.c4p--notifications-panel__container .c4p--notifications-panel__notification .c4p--notifications-panel__notification-status-icon.c4p--notifications-panel__notification-status-icon-warning{fill:var(--cds-support-03, #f1c21b)}.c4p--notifications-panel__container .c4p--notifications-panel__notification .c4p--notifications-panel__notification-status-icon.c4p--notifications-panel__notification-status-icon-informational{fill:var(--cds-support-04, #0043ce)}.c4p--notifications-panel__container .c4p--notifications-panel__notification .c4p--notifications-panel__notification-content .c4p--notifications-panel__notification-time-label{margin-bottom:var(--cds-spacing-03, 0.5rem)}.c4p--notifications-panel__container .c4p--notifications-panel__notification .c4p--notifications-panel__notification-content .c4p--notifications-panel__notification-time-label,.c4p--notifications-panel__container .c4p--notifications-panel__notification .c4p--notifications-panel__notification-content .c4p--notifications-panel__notification-description{font-size:var(--cds-label-01-font-size, 0.75rem);font-weight:var(--cds-label-01-font-weight, 400);line-height:var(--cds-label-01-line-height, 1.33333);letter-spacing:var(--cds-label-01-letter-spacing, 0.32px);color:var(--cds-text-02, #525252)}.c4p--notifications-panel__container .c4p--notifications-panel__notification .c4p--notifications-panel__notification-content .c4p--notifications-panel__notification-description.c4p--notifications-panel__notification-short-description{display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:2}.c4p--notifications-panel__container .c4p--notifications-panel__notification .c4p--notifications-panel__notification-content .c4p--notifications-panel__notification-description.c4p--notifications-panel__notification-long-description{display:block;overflow:initial;-webkit-line-clamp:initial}.c4p--notifications-panel__container .c4p--notifications-panel__notification .c4p--notifications-panel__notification-content .c4p--notifications-panel__notification-read-more-button,.c4p--notifications-panel__container .c4p--notifications-panel__notification .c4p--notifications-panel__notification-content .c4p--notifications-panel__notification-read-less-button{font-size:var(--cds-label-01-font-size, 0.75rem);font-weight:var(--cds-label-01-font-weight, 400);line-height:var(--cds-label-01-line-height, 1.33333);letter-spacing:var(--cds-label-01-letter-spacing, 0.32px);min-width:5.5rem;padding:0}.c4p--notifications-panel__container .c4p--notifications-panel__notification .c4p--notifications-panel__notification-content .c4p--notifications-panel__notification-read-more-button .bx--btn__icon,.c4p--notifications-panel__container .c4p--notifications-panel__notification .c4p--notifications-panel__notification-content .c4p--notifications-panel__notification-read-less-button .bx--btn__icon{transition:transform 240ms ease}.c4p--notifications-panel__container .c4p--notifications-panel__notification .c4p--notifications-panel__notification-content .c4p--notifications-panel__notification-read-more-button.c4p--notifications-panel__notification-read-more-button .bx--btn__icon,.c4p--notifications-panel__container .c4p--notifications-panel__notification .c4p--notifications-panel__notification-content .c4p--notifications-panel__notification-read-less-button.c4p--notifications-panel__notification-read-more-button .bx--btn__icon{transform:rotate(0deg)}.c4p--notifications-panel__container .c4p--notifications-panel__notification .c4p--notifications-panel__notification-content .c4p--notifications-panel__notification-read-more-button.c4p--notifications-panel__notification-read-less-button .bx--btn__icon,.c4p--notifications-panel__container .c4p--notifications-panel__notification .c4p--notifications-panel__notification-content .c4p--notifications-panel__notification-read-less-button.c4p--notifications-panel__notification-read-less-button .bx--btn__icon{transform:rotate(180deg)}.c4p--notifications-panel__container .c4p--notifications-panel__notification .c4p--notifications-panel__dismiss-single-button{position:absolute;top:0;right:0;min-width:2rem;padding:0;color:var(--cds-text-01, #161616);opacity:0}.c4p--notifications-panel__container .c4p--notifications-panel__notification .c4p--notifications-panel__dismiss-single-button:hover,.c4p--notifications-panel__container .c4p--notifications-panel__notification .c4p--notifications-panel__dismiss-single-button:focus{opacity:1}.c4p--notifications-panel__container .c4p--notifications-panel__notification-today:not(:first-of-type):before,.c4p--notifications-panel__container .c4p--notifications-panel__notification-yesterday:not(:first-of-type):before,.c4p--notifications-panel__container .c4p--notifications-panel__notification-previous:not(:first-of-type):before{position:absolute;top:0;width:calc(100% - (2 * var(--cds-spacing-05, 1rem)));height:1px;margin:0 auto;background-color:var(--cds-ui-02, #ffffff);content:"";transition:background-color 240ms;transition-timing-function:cubic-bezier(0.2, 0, 0.38, 0.9)}.c4p--notifications-panel__container .c4p--notifications-panel__notification-today:hover+.c4p--notifications-panel__notification-today:not(:first-of-type):before,.c4p--notifications-panel__container .c4p--notifications-panel__notification-yesterday:hover+.c4p--notifications-panel__notification-yesterday:not(:first-of-type):before,.c4p--notifications-panel__container .c4p--notifications-panel__notification-previous:hover+.c4p--notifications-panel__notification-previous:not(:first-of-type):before{background-color:transparent}.c4p--notifications-panel__container .c4p--notifications-panel__main-section-empty.c4p--notifications-panel__main-section{display:flex;height:100%;min-height:initial;align-items:center;justify-content:center;margin-top:var(--cds-layout-07, 10rem)}.c4p--notifications-panel__container .c4p--notifications-panel__main-section-empty.c4p--notifications-panel__main-section .c4p-subtext{font-size:var(--cds-body-short-01-font-size, 0.875rem);font-weight:var(--cds-body-short-01-font-weight, 400);line-height:var(--cds-body-short-01-line-height, 1.28572);letter-spacing:var(--cds-body-short-01-letter-spacing, 0.16px)}.c4p--notifications-panel__container .c4p--notifications-panel__main-section{min-height:498px}.c4p--notifications-panel__container .c4p--notifications-panel__bottom-actions{position:sticky;z-index:2;bottom:0;display:flex;height:2.5rem;min-height:2.5rem;align-items:center;border-top:1px solid var(--cds-ui-02, #ffffff);background-color:var(--cds-ui-background, #ffffff)}.c4p--notifications-panel__container .c4p--notifications-panel__bottom-actions .c4p--notifications-panel__view-all-button{width:100%;max-width:calc(100% - 2.5rem);height:2.5rem;min-height:2.5rem;border-right:1px solid var(--cds-ui-02, #ffffff);color:var(--cds-text-01, #161616)}.c4p--notifications-panel__container .c4p--notifications-panel__bottom-actions .c4p--notifications-panel__settings-button{display:flex;min-width:2.5rem;height:2.5rem;min-height:2.5rem;align-items:center;justify-content:center;padding:0;color:var(--cds-text-01, #161616)}.c4p--notifications-panel__container .c4p--notifications-panel__bottom-actions .c4p--notifications-panel__settings-button .bx--btn__icon{margin:0}.c4p--action-bar.c4p--action-bar{display:block}.c4p--action-bar .c4p--action-bar__displayed-items{display:inline-flex;width:100%;white-space:nowrap}.c4p--action-bar .c4p--action-bar__displayed-items--right{justify-content:flex-end}.c4p--action-bar .c4p--action-bar-overflow-items{display:inline-block}.c4p--action-bar .c4p--action-bar__hidden-sizing-items{position:absolute;top:-100vh;left:-100vw;overflow:hidden;max-width:100vw;pointer-events:none;visibility:hidden}.c4p--action-bar-overflow-items__options .c4p--action-bar-overflow-items__item{padding:0 var(--cds-spacing-03, 0.5rem)}.c4p--action-bar-overflow-items__options .c4p--action-bar-overflow-items__item-content{display:flex;width:100%;justify-content:space-between}.c4p--action-bar-overflow-items__options .c4p--action-bar-overflow-items__item svg{margin:0 var(--cds-spacing-02, 0.25rem)}.c4p--breadcrumb-with-overflow.c4p--breadcrumb-with-overflow{display:block}.c4p--breadcrumb-with-overflow .c4p--breadcrumb-with-overflow__space{position:relative;display:block;width:100%;white-space:nowrap}.c4p--breadcrumb-with-overflow .c4p--breadcrumb-with-overflow__breadcrumb-container.c4p--breadcrumb-with-overflow__breadcrumb-container-with-items{display:none;width:100%}@media(min-width: 42rem){.c4p--breadcrumb-with-overflow .c4p--breadcrumb-with-overflow__breadcrumb-container.c4p--breadcrumb-with-overflow__breadcrumb-container-with-items{display:inline-flex}}.c4p--breadcrumb-with-overflow .c4p--breadcrumb-with-overflow__breadcrumb-container .bx--breadcrumb{width:100%;flex-wrap:nowrap;align-items:flex-start}.c4p--breadcrumb-with-overflow .c4p--breadcrumb-with-overflow__breadcrumb-container--hidden{position:absolute;top:-100vh;left:-100vw;overflow:hidden;max-width:100vw;pointer-events:none;visibility:hidden}.c4p--breadcrumb-with-overflow .bx--breadcrumb-item:last-child{display:inline}.c4p--breadcrumb-with-overflow .c4p--breadcrumb-with-overflow__displayed-breadcrumb:last-child{display:inline;overflow:hidden}.c4p--breadcrumb-with-overflow .c4p--breadcrumb-with-overflow__displayed-breadcrumb:last-child .bx--link{display:inline-block;overflow:hidden;width:100%;text-overflow:ellipsis}.c4p--breadcrumb-with-overflow .bx--link{max-height:18px}.c4p--breadcrumb-with-overflow .c4p--breadcrumb-with-overflow__breadcrumb-back-button.bx--btn.bx--btn--icon-only.bx--tooltip__trigger{display:inline-flex;margin-top:calc(-1 * var(--cds-spacing-04, 0.75rem))}@media(min-width: 42rem){.c4p--breadcrumb-with-overflow .c4p--breadcrumb-with-overflow__breadcrumb-back-button.bx--btn.bx--btn--icon-only.bx--tooltip__trigger{display:none}}.c4p--tag-set.c4p--tag-set{display:block;width:100%}.c4p--tag-set .c4p--tag-set__space{position:relative;display:block;width:100%;white-space:nowrap}.c4p--tag-set .c4p--tag-set__space--align-end{text-align:end}.c4p--tag-set .c4p--tag-set__space--align-center{text-align:center}.c4p--tag-set .c4p--tag-set__tag-container{display:inline-flex;white-space:nowrap}.c4p--tag-set .c4p--tag-set__tag-container--hidden{position:absolute;top:-100vh;left:-100vw;overflow:hidden;max-width:100vw;pointer-events:none;visibility:hidden}.c4p--tag-set .c4p--tag-set-overflow{display:inline-block;vertical-align:bottom}.c4p--tag-set .c4p--tag-set-overflow--hidden{overflow:hidden;max-width:0;visibility:hidden}.c4p--tag-set-modal.c4p--tag-set-modal{text-align:initial;white-space:initial}@media(min-width: 42rem){.c4p--tag-set-modal .c4p--tag-set-modal__container{height:90%;max-height:450px}}.c4p--tag-set-modal .c4p--tag-set-modal__search{margin-top:var(--cds-spacing-05, 1rem);margin-bottom:0}.c4p--tag-set-modal.c4p--tag-set-modal .c4p--tag-set-modal__fade{position:relative;margin-right:var(--cds-spacing-05, 1rem);margin-left:var(--cds-spacing-05, 1rem)}.c4p--tag-set-modal .c4p--tag-set-modal__body{padding-bottom:var(--cds-spacing-06, 1.5rem)}.c4p--tag-set-modal .c4p--tag-set-modal__header{padding-right:0;margin-right:var(--cds-spacing-05, 1rem)}.c4p--tag-set-modal.c4p--tag-set-modal .c4p--tag-set-modal__fade::after{position:absolute;top:calc(-1 * var(--cds-spacing-11, 5rem));left:0;width:100%;height:var(--cds-spacing-07, 2rem);background:linear-gradient(to bottom, transparent, var(--cds-ui-01, #f4f4f4));content:""}.c4p--tag-set-overflow__tooltip.c4p--tag-set-overflow__tooltip{min-width:initial}.c4p--tag-set-overflow__tooltip .c4p--tag-set-overflow__show-all-tags-link{display:inline-block;margin:var(--cds-spacing-03, 0.5rem) 0 var(--cds-spacing-02, 0.25rem)}.c4p--tag-set-overflow__tooltip .c4p--tag-set-overflow__tag-item,.c4p--tag-set-overflow__tooltip .c4p--tag-set-overflow__tag-item .bx--tag{font-size:var(--cds-body-short-01-font-size, 0.875rem);font-weight:var(--cds-body-short-01-font-weight, 400);line-height:var(--cds-body-short-01-line-height, 1.28572);letter-spacing:var(--cds-body-short-01-letter-spacing, 0.16px);display:block;overflow:hidden;min-width:initial;min-height:initial;padding:0;margin:0;background-color:inherit;color:inherit;text-overflow:ellipsis;white-space:nowrap}.c4p--tag-set-overflow__tooltip .c4p--tag-set-overflow__tag .bx--tag__close-icon{padding:0}.c4p--tag-set-overflow__tooltip .c4p--tag-set-overflow__tag .bx--tag--high-contrast{background-color:var(--cds-ui-background, #ffffff);color:var(--cds-text-01, #161616)}.c4p--tag-set-overflow__tooltip .c4p--tag-set-overflow__tag .bx--tag__close-icon:hover{background-color:var(--cds-hover-ui, #e5e5e5)}.c4p--tag-set-overflow__tooltip .c4p--tag-set-overflow__tag .bx--tag__close-icon:focus{box-shadow:inset 0 0 0 var(--cds-spacing-01, 0.125rem) var(--cds-focus, #0f62fe)}.c4p--button-menu{min-width:160px}.c4p--button-menu .c4p--button-menu__trigger{width:100%;padding:0 var(--cds-spacing-05, 1rem)}.c4p--button-menu__options.bx--overflow-menu-options::after{content:initial}.c4p--button-set-with-overflow.c4p--button-set-with-overflow{display:flex;width:100%}.c4p--button-set-with-overflow .c4p--button-set-with-overflow__space{position:relative;display:block;width:100%;white-space:nowrap}.c4p--button-set-with-overflow .c4p--button-set-with-overflow__button-container{display:inline-flex}.c4p--button-set-with-overflow .c4p--button-set-with-overflow__button-container--hidden{position:absolute;top:-100vh;left:-100vw;overflow:hidden;max-width:100vw;pointer-events:none;visibility:hidden}.c4p--button-set-with-overflow.c4p--button-set-with-overflow--right{justify-content:flex-end}@keyframes background-appear{from{background-color:var(--from-color)}to{background-color:var(--to-color)}}@keyframes background-and-shadow-appear{from{background-color:var(--from-color);box-shadow:0 1px 0 var(--from-color)}to{background-color:var(--to-color);box-shadow:0 1px 0 var(--to-color-shadow)}}.c4p--page-header.c4p--page-header{position:sticky;z-index:7999;top:var(--c4p--page-header--header-top);display:inline-block;width:100%;background-color:var(--cds-ui-background, #ffffff);color:var(--cds-text-01, #161616);--c4p--page-header--breadcrumb-title-visibility: hidden;--c4p--page-header--breadcrumb-title-opacity: 1;--c4p--page-header--breadcrumb-top: 0;--c4p--page-header--background-opacity: 1;--c4p--page-header--breadcrumb-title-top: initial;--c4p--page-header--button-set-in-breadcrumb-width-px: initial;--c4p--page-header--navigation-buffer-top: $spacing-06}.c4p--page-header.c4p--page-header--has-navigation-tags-only{--c4p--page-header--navigation-buffer-top: $spacing-04}.c4p--page-header::before{--from-color: var(--cds-ui-background, #ffffff);--to-color: var(--cds-ui-01, #f4f4f4);--to-color-shadow: var(--cds-ui-03, #e0e0e0);position:absolute;top:0;left:0;display:block;width:100%;height:100%;animation:background-and-shadow-appear 1000ms calc(-1000ms*var(--c4p--page-header--background-opacity)) linear paused forwards;content:"";z-index:-1}.c4p--page-header .c4p--page-header--width--xl{padding-right:var(--cds-spacing-07, 2rem);padding-left:var(--cds-spacing-07, 2rem)}.c4p--page-header .c4p--page-header__breadcrumb-row{position:sticky;z-index:99;top:var(--c4p--page-header--breadcrumb-top);min-height:var(--cds-spacing-08, 2.5rem)}.c4p--page-header .c4p--page-header__breadcrumb-row+.c4p--page-header__last-row-buffer--active{height:var(--cds-spacing-02, 0.25rem)}.c4p--page-header .c4p--page-header__breadcrumb-row:not(.c4p--page-header__breadcrumb-row--has-action-bar){margin-bottom:calc(-1 * var(--cds-spacing-03, 0.5rem))}.c4p--page-header .c4p--page-header__breadcrumb-row--container{display:flex;min-width:100%;flex-wrap:nowrap}.c4p--page-header .c4p--page-header__has-page-actions-without-action-bar{min-width:calc(.6*(100% + 2 * var(--cds-spacing-05, 1rem)));max-width:calc(.6*(100% + 2 * var(--cds-spacing-05, 1rem)))}.c4p--page-header .c4p--page-header__has-page-actions-without-action-bar .c4p--page-header__has-page-actions-without-action-bar{min-width:100%}.c4p--page-header .c4p--page-header__breadcrumb-row--has-action-bar .c4p--page-header__breadcrumb-row--container{min-width:calc(100% + (var(--c4p--page-header--width-px) - var(--c4p--page-header--breadcrumb-row-width-px))/2)}.c4p--page-header .c4p--page-header__breadcrumb-row::after{position:absolute;bottom:0;left:50%;display:block;width:50vw;height:1px;box-shadow:0 1px 0 0 var(--cds-ui-03, #e0e0e0),0 1px 0 0 var(--cds-ui-03, #e0e0e0);content:"";opacity:0;transform:translateX(-50%) scaleX(1);transition:all 150ms ease-out}.c4p--page-header .c4p--page-header__breadcrumb-row--next-to-tabs::after,.c4p--page-header .c4p--page-header__breadcrumb-row--has-action-bar::after{box-shadow:25vw 1px 0 0 var(--cds-ui-03, #e0e0e0),-25vw 1px 0 0 var(--cds-ui-03, #e0e0e0);opacity:1}.c4p--page-header .c4p--page-header__breadcrumb-container{width:100%}.c4p--page-header .c4p--page-header__action-bar-column{display:none}.c4p--page-header .c4p--page-header__breadcrumb-row--has-breadcrumbs .c4p--page-header__action-bar-column{max-width:75%;flex:0 1 75%}@media(min-width: 42rem){.c4p--page-header .c4p--page-header__breadcrumb-row--has-breadcrumbs .c4p--page-header__action-bar-column{max-width:40%;flex:1 0 40%}}.c4p--page-header .c4p--page-header__breadcrumb-row--has-action-bar .c4p--page-header__action-bar-column{display:initial}.c4p--page-header .c4p--page-header__action-bar-column-content{display:flex;justify-content:flex-end;white-space:nowrap}@media(min-width: 66rem){.c4p--page-header .c4p--page-header__action-bar-column-content{flex-wrap:nowrap}}.c4p--page-header .c4p--page-header__breadcrumb-row .c4p--page-header__page-actions{position:relative;display:inline-block;width:100%;max-width:var(--c4p--page-header--button-set-in-breadcrumb-width-px);flex:1 1 var(--c4p--page-header--button-set-in-breadcrumb-width-px);opacity:0;transition:opacity 240ms cubic-bezier(0, 0, 0.38, 0.9);visibility:hidden;white-space:nowrap}.c4p--page-header .c4p--page-header__breadcrumb-row .c4p--page-header__page-actions--in-breadcrumb{opacity:1;visibility:visible}.c4p--page-header .c4p--page-header__breadcrumb-column{max-width:100%;flex:0 0 100%}@media(min-width: 42rem){.c4p--page-header .c4p--page-header__breadcrumb-column{overflow:hidden}}.c4p--page-header .c4p--page-header__breadcrumb-row--has-action-bar.c4p--page-header__breadcrumb-row .c4p--page-header__breadcrumb-column{max-width:75%;flex:0 1 75%}@media(min-width: 42rem){.c4p--page-header .c4p--page-header__breadcrumb-row--has-action-bar.c4p--page-header__breadcrumb-row .c4p--page-header__breadcrumb-column{max-width:60%;flex:0 1 60%}}.c4p--page-header .c4p--page-header__has-page-actions-without-action-bar.c4p--page-header__breadcrumb-row .c4p--page-header__breadcrumb-column{max-width:100%;flex:0 1 100%}.c4p--page-header .c4p--page-header__breadcrumb-column--background,.c4p--page-header .c4p--page-header__action-bar-column--background{position:relative}.c4p--page-header .c4p--page-header__breadcrumb-column--background::before,.c4p--page-header .c4p--page-header__action-bar-column--background::before{--from-color: var(--cds-ui-background, #ffffff);--to-color: var(--cds-ui-01, #f4f4f4);--to-color-shadow: var(--cds-ui-03, #e0e0e0);position:absolute;top:0;left:0;display:block;width:100%;height:100%;animation:background-appear 1000ms calc(-1000ms*var(--c4p--page-header--background-opacity)) linear paused forwards;content:""}.c4p--page-header .c4p--page-header__action-bar-column--influenced-by-collapse-button{padding-right:var(--cds-spacing-08, 2.5rem)}.c4p--page-header .c4p--page-header__breadcrumb{font-size:var(--cds-label-01-font-size, 0.75rem);font-weight:var(--cds-label-01-font-weight, 400);line-height:var(--cds-label-01-line-height, 1.33333);letter-spacing:var(--cds-label-01-letter-spacing, 0.32px);padding-top:var(--cds-spacing-04, 0.75rem)}.c4p--page-header .c4p--page-header--breadcrumb.c4p--breadcrumb-with-overflow__with-items{padding-top:0}@media(min-width: 42rem){.c4p--page-header .c4p--page-header--breadcrumb.c4p--breadcrumb-with-overflow__with-items{padding-top:var(--cds-spacing-04, 0.75rem)}}.c4p--page-header .c4p--page-header__breadcrumb .bx--breadcrumb-item{margin-right:var(--cds-spacing-02, 0.25rem)}.c4p--page-header .c4p--page-header__breadcrumb .bx--breadcrumb-item::after{margin-left:var(--cds-spacing-02, 0.25rem)}.c4p--page-header .c4p--page-header__breadcrumb .bx--breadcrumb-item,.c4p--page-header .c4p--page-header__breadcrumb .bx--breadcrumb-item .bx--link{font-size:var(--cds-label-01-font-size, 0.75rem);font-weight:var(--cds-label-01-font-weight, 400);line-height:var(--cds-label-01-line-height, 1.33333);letter-spacing:var(--cds-label-01-letter-spacing, 0.32px)}.c4p--page-header .c4p--page-header__breadcrumb-title{position:relative}.c4p--page-header .c4p--page-header__breadcrumb-title:not(.c4p--page-header__breadcrumb-title--pre-collapsed){opacity:var(--c4p--page-header--breadcrumb-title-opacity);transform:translateY(var(--c4p--page-header--breadcrumb-title-top));visibility:var(--c4p--page-header--breadcrumb-title-visibility)}.c4p--page-header .c4p--page-header__breadcrumb-container--hidden .c4p--page-header__breadcrumb-title.c4p--page-header__breadcrumb-title{overflow:initial}.c4p--page-header .c4p--page-header__action-bar{width:100%;max-width:var(--c4p--page-header--max-action-bar-width-px);flex:1 1 var(--c4p--page-header--max-action-bar-width-px);padding-top:var(--cds-spacing-04, 0.75rem);margin-top:calc(-1 * var(--cds-spacing-04, 0.75rem));vertical-align:top;white-space:nowrap}.c4p--page-header .c4p--page-header__title-row{margin-top:0;margin-bottom:0}@media(min-width: 42rem){.c4p--page-header .c4p--page-header__title-row{flex-wrap:nowrap}}.c4p--page-header .c4p--page-header__title-row.c4p--page-header__title-row--under-action-bar{margin-top:var(--cds-spacing-05, 1rem)}.c4p--page-header .c4p--page-header__title-row+.c4p--page-header__last-row-buffer--active{height:var(--cds-spacing-07, 2rem)}.c4p--page-header .c4p--page-header__title-row.c4p--page-header__title-row--spacing-below-03{margin-bottom:var(--cds-spacing-03, 0.5rem)}.c4p--page-header .c4p--page-header__title-row.c4p--page-header__title-row--spacing-below-05+.c4p--page-header__last-row-buffer--active{height:var(--cds-spacing-05, 1rem)}.c4p--page-header .c4p--page-header__title-row.c4p--page-header__title-row--spacing-below-06{margin-bottom:var(--cds-spacing-06, 1.5rem)}.c4p--page-header .c4p--page-header__title-row.c4p--page-header__title-row--no-breadcrumb-row{margin-top:var(--cds-spacing-07, 2rem)}.c4p--page-header.c4p--page-header--has-navigation .c4p--page-header__title-row+.c4p--page-header__last-row-buffer--active{height:calc(var(--cds-spacing-06, 1.5rem))}.c4p--page-header.c4p--page-header--has-navigation-tags-only .c4p--page-header__title-row+.c4p--page-header__last-row-buffer--active{height:calc(var(--cds-spacing-05, 1rem))}.c4p--page-header .c4p--page-header__title-row--sticky{position:sticky}.c4p--page-header .c4p--page-header__breadcrumb-row--has-breadcrumbs+.c4p--page-header__title-row--sticky{top:var(--c4p--page-header--breadcrumb-top)}.c4p--page-header .c4p--page-header__title-column{overflow:hidden;min-height:40px;flex:0 0 100%}@media(min-width: 42rem){.c4p--page-header .c4p--page-header__title-column{max-width:60%;flex:1 0 60%}}.c4p--page-header .c4p--page-header__title{font-size:var(--cds-productive-heading-04-font-size, 1.75rem);font-weight:var(--cds-productive-heading-04-font-weight, 400);line-height:var(--cds-productive-heading-04-line-height, 1.28572);letter-spacing:var(--cds-productive-heading-04-letter-spacing, 0);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.c4p--page-header .c4p--page-header__title-skeleton{height:var(--cds-spacing-07, 2rem)}.c4p--page-header .c4p--page-header__title--fades{opacity:calc(1 - var(--c4p--page-header--breadcrumb-title-opacity))}.c4p--page-header .c4p--page-header__title-icon{margin-right:var(--cds-spacing-04, 0.75rem);transform:translateY(-2px);vertical-align:middle}.c4p--page-header .c4p--page-header__page-actions{flex:0 0 100%;margin-top:var(--cds-spacing-05, 1rem);white-space:nowrap}@media(min-width: 42rem){.c4p--page-header .c4p--page-header__page-actions{max-width:40%;flex:0 1 40%;margin-top:0}}.c4p--page-header .c4p--page-header__page-actions .bx--btn-set .bx--btn{width:initial}.c4p--page-header .c4p--page-header__action-bar-column .c4p--page-header__page-actions{margin-top:0}.c4p--page-header .c4p--page-header__page-actions-container{justify-content:flex-start}@media(min-width: 42rem){.c4p--page-header .c4p--page-header__page-actions-container{justify-content:flex-end}}.c4p--page-header .c4p--page-header__title-row .c4p--page-header__page-actions{position:relative;opacity:1;transition:all 110ms cubic-bezier(0, 0, 0.38, 0.9);transition-property:opacity,visibility;visibility:visible}.c4p--page-header .c4p--page-header__title-row .c4p--page-header__page-actions::before{--from-color: var(--cds-ui-background, #ffffff);--to-color: var(--cds-ui-01, #f4f4f4);--to-color-shadow: var(--cds-ui-03, #e0e0e0);position:absolute;top:0;left:0;display:block;width:100%;height:100%;animation:background-appear 1000ms calc(-1000ms*var(--c4p--page-header--background-opacity)) linear paused forwards;content:""}.c4p--page-header .c4p--page-header__page-actions-content{position:relative;display:flex;overflow:hidden;width:100%;height:100%;justify-content:flex-end}.c4p--page-header .c4p--page-header__title-row .c4p--page-header__page-actions--in-breadcrumb{opacity:0;visibility:hidden}.c4p--page-header .c4p--page-header__subtitle-row{display:-webkit-box;overflow:hidden;max-width:100%;margin-top:var(--cds-spacing-03, 0.5rem);-webkit-box-orient:vertical;-webkit-line-clamp:2}@media(min-width: 42rem){.c4p--page-header .c4p--page-header__subtitle-row{max-width:60%}}.c4p--page-header .c4p--page-header__subtitle-row+.c4p--page-header__last-row-buffer--active{height:var(--cds-spacing-05, 1rem)}.c4p--page-header .c4p--page-header__subtitle{font-size:var(--cds-body-long-01-font-size, 0.875rem);font-weight:var(--cds-body-long-01-font-weight, 400);line-height:var(--cds-body-long-01-line-height, 1.42857);letter-spacing:var(--cds-body-long-01-letter-spacing, 0.16px)}.c4p--page-header .c4p--page-header__available-row{font-size:var(--cds-body-long-01-font-size, 0.875rem);font-weight:var(--cds-body-long-01-font-weight, 400);line-height:var(--cds-body-long-01-line-height, 1.42857);letter-spacing:var(--cds-body-long-01-letter-spacing, 0.16px);margin-top:var(--cds-spacing-03, 0.5rem)}.c4p--page-header .c4p--page-header__available-row+.c4p--page-header__last-row-buffer--active{height:var(--cds-spacing-05, 1rem)}.c4p--page-header .c4p--page-header__title-row+.c4p--page-header__available-row{margin-top:var(--cds-spacing-05, 1rem)}.c4p--page-header .c4p--page-header__available-row *{font-size:var(--cds-body-long-01-font-size, 0.875rem);font-weight:var(--cds-body-long-01-font-weight, 400);line-height:var(--cds-body-long-01-line-height, 1.42857);letter-spacing:var(--cds-body-long-01-letter-spacing, 0.16px)}.c4p--page-header .c4p--page-header__navigation-row{flex-wrap:wrap-reverse;margin-top:0}.c4p--page-header .c4p--page-header__navigation-row .bx--content-switcher{box-sizing:content-box;padding-bottom:var(--cds-spacing-05, 1rem)}.c4p--page-header .c4p--page-header__navigation-row .bx--tab-content{display:none}.c4p--page-header .c4p--page-header__navigation-tabs{margin-left:calc(-1 * var(--cds-spacing-05, 1rem))}.c4p--page-header .c4p--page-header__navigation-row--has-tags .c4p--page-header__navigation-tabs{max-width:75%;flex:0 1 75%}.c4p--page-header .c4p--page-header__navigation-tags{display:flex;max-width:25%;flex:1 0 25%;align-items:center;justify-content:flex-end;padding-top:var(--cds-spacing-02, 0.25rem);padding-right:var(--cds-spacing-07, 2rem);padding-bottom:var(--cds-spacing-02, 0.25rem);text-align:right;white-space:nowrap}@media(min-width: 42rem){.c4p--page-header .c4p--page-header__navigation-tags{padding-right:var(--cds-spacing-05, 1rem)}}.c4p--page-header .c4p--page-header__navigation-tags--tags-only{justify-content:flex-start;padding-top:0;padding-bottom:var(--cds-spacing-04, 0.75rem);margin-left:calc(-1 * var(--cds-spacing-02, 0.25rem));text-align:initial}.c4p--page-header .c4p--page-header__navigation-row .bx--content-switcher-btn{background-color:var(--cds-ui-background, #ffffff)}.c4p--page-header .bx--btn.bx--btn--icon-only.c4p--page-header__collapse-expand-toggle{position:absolute;z-index:100;right:0;bottom:0}.c4p--page-header .c4p--page-header__collapse-expand-toggle .bx--btn__icon{transition:all 400ms cubic-bezier(0.2, 0, 0.38, 0.9)}.c4p--page-header .c4p--page-header__collapse-expand-toggle--collapsed .bx--btn__icon{transform:scaleY(-1)}:root{--c4p--page-header--tagset-tooltip-offset: 0}.c4p--page-header__tagset-tooltip.c4p--page-header__tagset-tooltip{position:var(--c4p--page-header--tagset-tooltip-position) !important;top:var(--c4p--page-header--tagset-tooltip-offset) !important}.c4p--page-header__navigation-tags-overflow.bx--tooltip{z-index:7999}.c4p--page-header__action-bar-menu-options.bx--overflow-menu-options,.bx--breadcrumb-menu-options.bx--overflow-menu-options,.c4p--page-header__button-set-menu-options.bx--overflow-menu-options{z-index:7999}.c4p--card__productive .c4p--card__header{padding-right:0}.c4p--card__productive .c4p--card__title{font-size:var(--cds-productive-heading-02-font-size, 1rem);font-weight:var(--cds-productive-heading-02-font-weight, 600);line-height:var(--cds-productive-heading-02-line-height, 1.375);letter-spacing:var(--cds-productive-heading-02-letter-spacing, 0)}.c4p--card__productive .c4p--card__title-lg .c4p--card__title{font-size:var(--cds-productive-heading-03-font-size, 1.25rem);font-weight:var(--cds-productive-heading-03-font-weight, 400);line-height:var(--cds-productive-heading-03-line-height, 1.4);letter-spacing:var(--cds-productive-heading-03-letter-spacing, 0)}.c4p--card__productive .c4p--card__body{padding-top:var(--cds-spacing-03, 0.5rem)}.c4p--card__productive .c4p--card__footer{align-items:center;justify-content:space-between;border-top:1px solid var(--cds-ui-03, #e0e0e0)}.c4p--card__productive .c4p--card__footer-no-button{justify-content:flex-end}.c4p--card__productive .c4p--card__actions{margin:0}.c4p--card__productive .c4p--card__actions-header{margin-top:calc(-1 * var(--cds-spacing-02, 0.25rem));margin-right:var(--cds-spacing-03, 0.5rem)}.c4p--card__productive .c4p--card__title-lg .c4p--card__actions-header,.c4p--card__productive .c4p--card__header-has-label .c4p--card__actions-header{margin-top:0}.c4p--card__productive .c4p--card__icon{margin-right:var(--cds-spacing-05, 1rem)}.c4p--card__productive .c4p--card__header-container{align-items:start}.c4p--remove-modal .bx--modal-footer .bx--btn{max-width:none}.c4p--remove-modal .bx--modal-content{padding-right:var(--cds-spacing-05, 1rem)}.c4p--remove-modal .bx--modal-close{display:none}.c4p--remove-modal__body{padding-right:20%;margin-bottom:var(--cds-spacing-05, 1rem)}@keyframes rotate{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}@keyframes rotate-end-p1{100%{transform:rotate(360deg)}}@keyframes rotate-end-p2{100%{transform:rotate(-360deg)}}@keyframes init-stroke{0%{stroke-dashoffset:276.4608}100%{stroke-dashoffset:52.527552}}@keyframes stroke-end{0%{stroke-dashoffset:52.527552}100%{stroke-dashoffset:276.4608}}@keyframes stroke{100%{stroke-dashoffset:0}}.c4p--saving__message{display:flex}.c4p--saving__error-icon{margin-right:var(--cds-spacing-05, 1rem)}.c4p--saving__error-icon svg{fill:var(--cds-danger-01, #da1e28)}.c4p--saving__text{font-size:var(--cds-body-short-01-font-size, 0.875rem);font-weight:var(--cds-body-short-01-font-weight, 400);line-height:var(--cds-body-short-01-line-height, 1.28572);letter-spacing:var(--cds-body-short-01-letter-spacing, 0.16px)}.c4p--saving__buttons{display:flex}@keyframes rotate{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}@keyframes rotate-end-p1{100%{transform:rotate(360deg)}}@keyframes rotate-end-p2{100%{transform:rotate(-360deg)}}@keyframes init-stroke{0%{stroke-dashoffset:276.4608}100%{stroke-dashoffset:52.527552}}@keyframes stroke-end{0%{stroke-dashoffset:52.527552}100%{stroke-dashoffset:276.4608}}@keyframes stroke{100%{stroke-dashoffset:0}}@keyframes rotating{0%{transform:scaleY(-1) rotate(360deg)}100%{transform:scaleY(-1) rotate(0deg)}}.c4p--status-icon{display:flex;justify-content:flex-end}.c4p--status-icon--light.c4p--status-icon--light-minor-warning,.c4p--status-icon--dark.c4p--status-icon--dark-minor-warning{fill:#fddc69}.c4p--status-icon--light.c4p--status-icon--light-major-warning path:nth-of-type(1),.c4p--status-icon--dark.c4p--status-icon--dark-major-warning path:nth-of-type(1),.c4p--status-icon--light.c4p--status-icon--light-minor-warning path:nth-of-type(1),.c4p--status-icon--dark.c4p--status-icon--dark-minor-warning path:nth-of-type(1){fill:#161616}.c4p--status-icon--light.c4p--status-icon--light-fatal{fill:#000}@media(prefers-reduced-motion){.c4p--status-icon--light.c4p--status-icon--light-fatal .c4p--status-icon--light.c4p--status-icon--light-in-progress{animation:none}}.c4p--status-icon--light.c4p--status-icon--dark-fatal{fill:#000}@media(prefers-reduced-motion){.c4p--status-icon--light.c4p--status-icon--dark-fatal .c4p--status-icon--light.c4p--status-icon--dark-in-progress{animation:none}}.c4p--status-icon--light.c4p--status-icon--light-critical{fill:#da1e28}@media(prefers-reduced-motion){.c4p--status-icon--light.c4p--status-icon--light-critical .c4p--status-icon--light.c4p--status-icon--light-in-progress{animation:none}}.c4p--status-icon--light.c4p--status-icon--dark-critical{fill:#da1e28}@media(prefers-reduced-motion){.c4p--status-icon--light.c4p--status-icon--dark-critical .c4p--status-icon--light.c4p--status-icon--dark-in-progress{animation:none}}.c4p--status-icon--light.c4p--status-icon--light-major-warning{fill:#ff832b}@media(prefers-reduced-motion){.c4p--status-icon--light.c4p--status-icon--light-major-warning .c4p--status-icon--light.c4p--status-icon--light-in-progress{animation:none}}.c4p--status-icon--light.c4p--status-icon--dark-major-warning{fill:#ff832b}@media(prefers-reduced-motion){.c4p--status-icon--light.c4p--status-icon--dark-major-warning .c4p--status-icon--light.c4p--status-icon--dark-in-progress{animation:none}}.c4p--status-icon--light.c4p--status-icon--light-minor-warning{fill:#fddc69}@media(prefers-reduced-motion){.c4p--status-icon--light.c4p--status-icon--light-minor-warning .c4p--status-icon--light.c4p--status-icon--light-in-progress{animation:none}}.c4p--status-icon--light.c4p--status-icon--dark-minor-warning{fill:#fddc69}@media(prefers-reduced-motion){.c4p--status-icon--light.c4p--status-icon--dark-minor-warning .c4p--status-icon--light.c4p--status-icon--dark-in-progress{animation:none}}.c4p--status-icon--light.c4p--status-icon--light-undefined{fill:#8a3ffc}@media(prefers-reduced-motion){.c4p--status-icon--light.c4p--status-icon--light-undefined .c4p--status-icon--light.c4p--status-icon--light-in-progress{animation:none}}.c4p--status-icon--light.c4p--status-icon--dark-undefined{fill:#8a3ffc}@media(prefers-reduced-motion){.c4p--status-icon--light.c4p--status-icon--dark-undefined .c4p--status-icon--light.c4p--status-icon--dark-in-progress{animation:none}}.c4p--status-icon--light.c4p--status-icon--light-unknown{fill:#6f6f6f}@media(prefers-reduced-motion){.c4p--status-icon--light.c4p--status-icon--light-unknown .c4p--status-icon--light.c4p--status-icon--light-in-progress{animation:none}}.c4p--status-icon--light.c4p--status-icon--dark-unknown{fill:#6f6f6f}@media(prefers-reduced-motion){.c4p--status-icon--light.c4p--status-icon--dark-unknown .c4p--status-icon--light.c4p--status-icon--dark-in-progress{animation:none}}.c4p--status-icon--light.c4p--status-icon--light-normal{fill:#198038}@media(prefers-reduced-motion){.c4p--status-icon--light.c4p--status-icon--light-normal .c4p--status-icon--light.c4p--status-icon--light-in-progress{animation:none}}.c4p--status-icon--light.c4p--status-icon--dark-normal{fill:#198038}@media(prefers-reduced-motion){.c4p--status-icon--light.c4p--status-icon--dark-normal .c4p--status-icon--light.c4p--status-icon--dark-in-progress{animation:none}}.c4p--status-icon--light.c4p--status-icon--light-info{fill:#0f62fe}@media(prefers-reduced-motion){.c4p--status-icon--light.c4p--status-icon--light-info .c4p--status-icon--light.c4p--status-icon--light-in-progress{animation:none}}.c4p--status-icon--light.c4p--status-icon--dark-info{fill:#0f62fe}@media(prefers-reduced-motion){.c4p--status-icon--light.c4p--status-icon--dark-info .c4p--status-icon--light.c4p--status-icon--dark-in-progress{animation:none}}.c4p--status-icon--light.c4p--status-icon--light-in-progress{animation:rotating 8000ms infinite linear;fill:#0f62fe}@media(prefers-reduced-motion: reduce){.c4p--status-icon--light.c4p--status-icon--light-in-progress{animation:none}}.c4p--status-icon--light.c4p--status-icon--dark-in-progress{animation:rotating 8000ms infinite linear;fill:#0f62fe}@media(prefers-reduced-motion: reduce){.c4p--status-icon--light.c4p--status-icon--dark-in-progress{animation:none}}.c4p--status-icon--light.c4p--status-icon--light-running{fill:#198038;transform:scaleY(-1)}.c4p--status-icon--light.c4p--status-icon--dark-running{fill:#198038;transform:scaleY(-1)}.c4p--status-icon--light.c4p--status-icon--light-pending{fill:#6f6f6f}@media(prefers-reduced-motion){.c4p--status-icon--light.c4p--status-icon--light-pending .c4p--status-icon--light.c4p--status-icon--light-in-progress{animation:none}}.c4p--status-icon--light.c4p--status-icon--dark-pending{fill:#6f6f6f}@media(prefers-reduced-motion){.c4p--status-icon--light.c4p--status-icon--dark-pending .c4p--status-icon--light.c4p--status-icon--dark-in-progress{animation:none}}.c4p--status-icon--dark.c4p--status-icon--light-fatal{fill:#8d8d8d}@media(prefers-reduced-motion){.c4p--status-icon--dark.c4p--status-icon--light-fatal .c4p--status-icon--dark.c4p--status-icon--light-in-progress{animation:none}}.c4p--status-icon--dark.c4p--status-icon--dark-fatal{fill:#8d8d8d}@media(prefers-reduced-motion){.c4p--status-icon--dark.c4p--status-icon--dark-fatal .c4p--status-icon--dark.c4p--status-icon--dark-in-progress{animation:none}}.c4p--status-icon--dark.c4p--status-icon--light-critical{fill:#fa4d56}@media(prefers-reduced-motion){.c4p--status-icon--dark.c4p--status-icon--light-critical .c4p--status-icon--dark.c4p--status-icon--light-in-progress{animation:none}}.c4p--status-icon--dark.c4p--status-icon--dark-critical{fill:#fa4d56}@media(prefers-reduced-motion){.c4p--status-icon--dark.c4p--status-icon--dark-critical .c4p--status-icon--dark.c4p--status-icon--dark-in-progress{animation:none}}.c4p--status-icon--dark.c4p--status-icon--light-major-warning{fill:#ff832b}@media(prefers-reduced-motion){.c4p--status-icon--dark.c4p--status-icon--light-major-warning .c4p--status-icon--dark.c4p--status-icon--light-in-progress{animation:none}}.c4p--status-icon--dark.c4p--status-icon--dark-major-warning{fill:#ff832b}@media(prefers-reduced-motion){.c4p--status-icon--dark.c4p--status-icon--dark-major-warning .c4p--status-icon--dark.c4p--status-icon--dark-in-progress{animation:none}}.c4p--status-icon--dark.c4p--status-icon--light-minor-warning{fill:#fddc69}@media(prefers-reduced-motion){.c4p--status-icon--dark.c4p--status-icon--light-minor-warning .c4p--status-icon--dark.c4p--status-icon--light-in-progress{animation:none}}.c4p--status-icon--dark.c4p--status-icon--dark-minor-warning{fill:#fddc69}@media(prefers-reduced-motion){.c4p--status-icon--dark.c4p--status-icon--dark-minor-warning .c4p--status-icon--dark.c4p--status-icon--dark-in-progress{animation:none}}.c4p--status-icon--dark.c4p--status-icon--light-undefined{fill:#a56eff}@media(prefers-reduced-motion){.c4p--status-icon--dark.c4p--status-icon--light-undefined .c4p--status-icon--dark.c4p--status-icon--light-in-progress{animation:none}}.c4p--status-icon--dark.c4p--status-icon--dark-undefined{fill:#a56eff}@media(prefers-reduced-motion){.c4p--status-icon--dark.c4p--status-icon--dark-undefined .c4p--status-icon--dark.c4p--status-icon--dark-in-progress{animation:none}}.c4p--status-icon--dark.c4p--status-icon--light-unknown{fill:#8d8d8d}@media(prefers-reduced-motion){.c4p--status-icon--dark.c4p--status-icon--light-unknown .c4p--status-icon--dark.c4p--status-icon--light-in-progress{animation:none}}.c4p--status-icon--dark.c4p--status-icon--dark-unknown{fill:#8d8d8d}@media(prefers-reduced-motion){.c4p--status-icon--dark.c4p--status-icon--dark-unknown .c4p--status-icon--dark.c4p--status-icon--dark-in-progress{animation:none}}.c4p--status-icon--dark.c4p--status-icon--light-normal{fill:#24a148}@media(prefers-reduced-motion){.c4p--status-icon--dark.c4p--status-icon--light-normal .c4p--status-icon--dark.c4p--status-icon--light-in-progress{animation:none}}.c4p--status-icon--dark.c4p--status-icon--dark-normal{fill:#24a148}@media(prefers-reduced-motion){.c4p--status-icon--dark.c4p--status-icon--dark-normal .c4p--status-icon--dark.c4p--status-icon--dark-in-progress{animation:none}}.c4p--status-icon--dark.c4p--status-icon--light-info{fill:#4589ff}@media(prefers-reduced-motion){.c4p--status-icon--dark.c4p--status-icon--light-info .c4p--status-icon--dark.c4p--status-icon--light-in-progress{animation:none}}.c4p--status-icon--dark.c4p--status-icon--dark-info{fill:#4589ff}@media(prefers-reduced-motion){.c4p--status-icon--dark.c4p--status-icon--dark-info .c4p--status-icon--dark.c4p--status-icon--dark-in-progress{animation:none}}.c4p--status-icon--dark.c4p--status-icon--light-in-progress{animation:rotating 8000ms infinite linear;fill:#4589ff}@media(prefers-reduced-motion: reduce){.c4p--status-icon--dark.c4p--status-icon--light-in-progress{animation:none}}.c4p--status-icon--dark.c4p--status-icon--dark-in-progress{animation:rotating 8000ms infinite linear;fill:#4589ff}@media(prefers-reduced-motion: reduce){.c4p--status-icon--dark.c4p--status-icon--dark-in-progress{animation:none}}.c4p--status-icon--dark.c4p--status-icon--light-running{fill:#24a148;transform:scaleY(-1)}.c4p--status-icon--dark.c4p--status-icon--dark-running{fill:#24a148;transform:scaleY(-1)}.c4p--status-icon--dark.c4p--status-icon--light-pending{fill:#8d8d8d}@media(prefers-reduced-motion){.c4p--status-icon--dark.c4p--status-icon--light-pending .c4p--status-icon--dark.c4p--status-icon--light-in-progress{animation:none}}.c4p--status-icon--dark.c4p--status-icon--dark-pending{fill:#8d8d8d}@media(prefers-reduced-motion){.c4p--status-icon--dark.c4p--status-icon--dark-pending .c4p--status-icon--dark.c4p--status-icon--dark-in-progress{animation:none}}@keyframes rotate{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}@keyframes rotate-end-p1{100%{transform:rotate(360deg)}}@keyframes rotate-end-p2{100%{transform:rotate(-360deg)}}@keyframes init-stroke{0%{stroke-dashoffset:276.4608}100%{stroke-dashoffset:52.527552}}@keyframes stroke-end{0%{stroke-dashoffset:52.527552}100%{stroke-dashoffset:276.4608}}@keyframes stroke{100%{stroke-dashoffset:0}}.c4p--user-profile-image--light{color:var(--cds-ui-01, #f4f4f4)}.c4p--user-profile-image--light.c4p--user-profile-image--light-cyan{background-color:#0072c3}.c4p--user-profile-image--light.c4p--user-profile-image--dark-cyan{background-color:#003a6d}.c4p--user-profile-image--light.c4p--user-profile-image--light-gray{background-color:#6f6f6f}.c4p--user-profile-image--light.c4p--user-profile-image--dark-gray{background-color:#393939}.c4p--user-profile-image--light.c4p--user-profile-image--light-green{background-color:#198038}.c4p--user-profile-image--light.c4p--user-profile-image--dark-green{background-color:#044317}.c4p--user-profile-image--light.c4p--user-profile-image--light-magenta{background-color:#d02670}.c4p--user-profile-image--light.c4p--user-profile-image--dark-magenta{background-color:#740937}.c4p--user-profile-image--light.c4p--user-profile-image--light-purple{background-color:#8a3ffc}.c4p--user-profile-image--light.c4p--user-profile-image--dark-purple{background-color:#491d8b}.c4p--user-profile-image--light.c4p--user-profile-image--light-teal{background-color:#007d79}.c4p--user-profile-image--light.c4p--user-profile-image--dark-teal{background-color:#004144}.c4p--user-profile-image--dark{color:var(--cds-ui-01, #f4f4f4)}.c4p--user-profile-image--dark.c4p--user-profile-image--light-cyan{background-color:#1192e8}.c4p--user-profile-image--dark.c4p--user-profile-image--dark-cyan{background-color:#82cfff}.c4p--user-profile-image--dark.c4p--user-profile-image--light-gray{background-color:#8d8d8d}.c4p--user-profile-image--dark.c4p--user-profile-image--dark-gray{background-color:#c6c6c6}.c4p--user-profile-image--dark.c4p--user-profile-image--light-green{background-color:#24a148}.c4p--user-profile-image--dark.c4p--user-profile-image--dark-green{background-color:#6fdc8c}.c4p--user-profile-image--dark.c4p--user-profile-image--light-magenta{background-color:#ee5396}.c4p--user-profile-image--dark.c4p--user-profile-image--dark-magenta{background-color:#ffafd2}.c4p--user-profile-image--dark.c4p--user-profile-image--light-purple{background-color:#a56eff}.c4p--user-profile-image--dark.c4p--user-profile-image--dark-purple{background-color:#d4bbff}.c4p--user-profile-image--dark.c4p--user-profile-image--light-teal{background-color:#009d9a}.c4p--user-profile-image--dark.c4p--user-profile-image--dark-teal{background-color:#3ddbd9}.c4p--user-profile-image{display:flex;flex-direction:column;align-items:center;justify-content:center;border-radius:100%;text-transform:uppercase}.bx--tooltip__trigger .c4p--user-profile-image svg{fill:var(--cds-ui-01, #f4f4f4)}.c4p--user-profile-image__photo{width:100%;border-radius:100%}.c4p--user-profile-image__photo--xlg{width:var(--cds-spacing-10, 4rem);height:var(--cds-spacing-10, 4rem)}.c4p--user-profile-image__photo--lg{width:var(--cds-spacing-07, 2rem);height:var(--cds-spacing-07, 2rem)}.c4p--user-profile-image__photo--md{width:var(--cds-spacing-06, 1.5rem);height:var(--cds-spacing-06, 1.5rem)}.c4p--user-profile-image__photo--sm{width:calc(var(--cds-spacing-05, 1rem) + var(--cds-spacing-02, 0.25rem));height:calc(var(--cds-spacing-05, 1rem) + var(--cds-spacing-02, 0.25rem))}.c4p--user-profile-image__photo--xs{width:var(--cds-spacing-05, 1rem);height:var(--cds-spacing-05, 1rem)}.c4p--user-profile-image--xlg{width:var(--cds-spacing-10, 4rem);height:var(--cds-spacing-10, 4rem);font-size:var(--cds-productive-heading-04-font-size, 1.75rem);font-weight:var(--cds-productive-heading-04-font-weight, 400);line-height:var(--cds-productive-heading-04-line-height, 1.28572);letter-spacing:var(--cds-productive-heading-04-letter-spacing, 0)}.c4p--user-profile-image--lg{width:var(--cds-spacing-07, 2rem);height:var(--cds-spacing-07, 2rem);font-size:var(--cds-body-short-01-font-size, 0.875rem);font-weight:var(--cds-body-short-01-font-weight, 400);line-height:var(--cds-body-short-01-line-height, 1.28572);letter-spacing:var(--cds-body-short-01-letter-spacing, 0.16px)}.c4p--user-profile-image--md{width:var(--cds-spacing-06, 1.5rem);height:var(--cds-spacing-06, 1.5rem);font-size:var(--cds-label-01-font-size, 0.75rem);font-weight:var(--cds-label-01-font-weight, 400);line-height:var(--cds-label-01-line-height, 1.33333);letter-spacing:var(--cds-label-01-letter-spacing, 0.32px);font-weight:600}.c4p--user-profile-image--sm{width:calc(var(--cds-spacing-05, 1rem) + var(--cds-spacing-02, 0.25rem));height:calc(var(--cds-spacing-05, 1rem) + var(--cds-spacing-02, 0.25rem));font-size:var(--cds-label-01-font-size, 0.75rem);font-weight:var(--cds-label-01-font-weight, 400);line-height:var(--cds-label-01-line-height, 1.33333);letter-spacing:var(--cds-label-01-letter-spacing, 0.32px);font-weight:600}.c4p--user-profile-image--xs{width:var(--cds-spacing-05, 1rem);height:var(--cds-spacing-05, 1rem);font-size:var(--cds-label-01-font-size, 0.75rem);font-weight:var(--cds-label-01-font-weight, 400);line-height:var(--cds-label-01-line-height, 1.33333);letter-spacing:var(--cds-label-01-letter-spacing, 0.32px);font-weight:600}