paris 0.23.1 → 0.24.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (555) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/README.md +17 -17
  3. package/dist/helpers/OpenChangeEffect.d.ts +11 -0
  4. package/dist/helpers/OpenChangeEffect.js +16 -0
  5. package/dist/helpers/OpenChangeEffect.js.map +1 -0
  6. package/dist/helpers/renderEnhancer.d.ts +7 -0
  7. package/dist/helpers/renderEnhancer.js +20 -0
  8. package/dist/helpers/renderEnhancer.js.map +1 -0
  9. package/dist/helpers/useControllableState.d.ts +7 -0
  10. package/dist/helpers/useControllableState.js +49 -0
  11. package/dist/helpers/useControllableState.js.map +1 -0
  12. package/dist/helpers/useIsMounted.d.ts +1 -0
  13. package/dist/helpers/useResizeObserver.d.ts +12 -0
  14. package/dist/stories/accordion/Accordion.d.ts +47 -0
  15. package/dist/stories/accordion/Accordion.js +82 -0
  16. package/dist/stories/accordion/Accordion.js.map +1 -0
  17. package/dist/stories/accordion/Accordion.module.css +130 -0
  18. package/dist/stories/accordion/Accordion.module.scss.js +26 -0
  19. package/dist/stories/accordion/Accordion.module.scss.js.map +1 -0
  20. package/dist/stories/accordion/index.js +2 -0
  21. package/dist/stories/accordion/index.js.map +1 -0
  22. package/dist/stories/accordionselect/AccordionSelect.d.ts +102 -0
  23. package/dist/stories/accordionselect/AccordionSelect.js +137 -0
  24. package/dist/stories/accordionselect/AccordionSelect.js.map +1 -0
  25. package/dist/stories/accordionselect/AccordionSelect.module.css +106 -0
  26. package/dist/stories/accordionselect/AccordionSelect.module.scss.js +27 -0
  27. package/dist/stories/accordionselect/AccordionSelect.module.scss.js.map +1 -0
  28. package/dist/stories/accordionselect/index.js +2 -0
  29. package/dist/stories/accordionselect/index.js.map +1 -0
  30. package/dist/stories/avatar/Avatar.d.ts +22 -0
  31. package/dist/stories/avatar/Avatar.js +37 -0
  32. package/dist/stories/avatar/Avatar.js.map +1 -0
  33. package/dist/stories/avatar/Avatar.module.css +7 -0
  34. package/dist/stories/avatar/Avatar.module.scss.js +7 -0
  35. package/dist/stories/avatar/Avatar.module.scss.js.map +1 -0
  36. package/dist/stories/avatar/index.js +2 -0
  37. package/dist/stories/avatar/index.js.map +1 -0
  38. package/dist/stories/button/Button.d.ts +120 -0
  39. package/dist/stories/button/Button.js +123 -0
  40. package/dist/stories/button/Button.js.map +1 -0
  41. package/dist/stories/button/Button.module.css +137 -0
  42. package/dist/stories/button/Button.module.scss.js +35 -0
  43. package/dist/stories/button/Button.module.scss.js.map +1 -0
  44. package/dist/stories/button/index.js +2 -0
  45. package/dist/stories/button/index.js.map +1 -0
  46. package/dist/stories/callout/Callout.d.ts +22 -0
  47. package/dist/stories/callout/Callout.js +21 -0
  48. package/dist/stories/callout/Callout.js.map +1 -0
  49. package/dist/stories/callout/Callout.module.css +35 -0
  50. package/dist/stories/callout/Callout.module.scss.js +15 -0
  51. package/dist/stories/callout/Callout.module.scss.js.map +1 -0
  52. package/dist/stories/callout/index.js +2 -0
  53. package/dist/stories/callout/index.js.map +1 -0
  54. package/dist/stories/card/Card.d.ts +30 -0
  55. package/dist/stories/card/Card.js +22 -0
  56. package/dist/stories/card/Card.js.map +1 -0
  57. package/dist/stories/card/Card.module.css +39 -0
  58. package/dist/stories/card/Card.module.scss.js +17 -0
  59. package/dist/stories/card/Card.module.scss.js.map +1 -0
  60. package/dist/stories/card/index.js +2 -0
  61. package/dist/stories/card/index.js.map +1 -0
  62. package/dist/stories/cardbutton/CardButton.d.ts +50 -0
  63. package/dist/stories/cardbutton/CardButton.js +53 -0
  64. package/dist/stories/cardbutton/CardButton.js.map +1 -0
  65. package/dist/stories/cardbutton/CardButton.module.css +77 -0
  66. package/dist/stories/cardbutton/CardButton.module.scss.js +19 -0
  67. package/dist/stories/cardbutton/CardButton.module.scss.js.map +1 -0
  68. package/dist/stories/cardbutton/index.js +2 -0
  69. package/dist/stories/cardbutton/index.js.map +1 -0
  70. package/dist/stories/checkbox/Checkbox.d.ts +31 -0
  71. package/dist/stories/checkbox/Checkbox.js +99 -0
  72. package/dist/stories/checkbox/Checkbox.js.map +1 -0
  73. package/dist/stories/checkbox/Checkbox.module.css +155 -0
  74. package/dist/stories/checkbox/Checkbox.module.scss.js +32 -0
  75. package/dist/stories/checkbox/Checkbox.module.scss.js.map +1 -0
  76. package/dist/stories/checkbox/index.js +2 -0
  77. package/dist/stories/checkbox/index.js.map +1 -0
  78. package/dist/stories/codeinput/CodeInput.d.ts +47 -0
  79. package/dist/stories/codeinput/CodeInput.js +105 -0
  80. package/dist/stories/codeinput/CodeInput.js.map +1 -0
  81. package/dist/stories/codeinput/CodeInput.module.css +63 -0
  82. package/dist/stories/codeinput/CodeInput.module.scss.js +13 -0
  83. package/dist/stories/codeinput/CodeInput.module.scss.js.map +1 -0
  84. package/dist/stories/codeinput/index.js +2 -0
  85. package/dist/stories/codeinput/index.js.map +1 -0
  86. package/dist/stories/combobox/Combobox.d.ts +125 -0
  87. package/dist/stories/combobox/Combobox.js +257 -0
  88. package/dist/stories/combobox/Combobox.js.map +1 -0
  89. package/dist/stories/combobox/index.js +2 -0
  90. package/dist/stories/combobox/index.js.map +1 -0
  91. package/dist/stories/dialog/Dialog.d.ts +103 -0
  92. package/dist/stories/dialog/Dialog.js +187 -0
  93. package/dist/stories/dialog/Dialog.js.map +1 -0
  94. package/dist/stories/dialog/Dialog.module.css +185 -0
  95. package/dist/stories/dialog/Dialog.module.scss.js +48 -0
  96. package/dist/stories/dialog/Dialog.module.scss.js.map +1 -0
  97. package/dist/stories/dialog/index.js +2 -0
  98. package/dist/stories/dialog/index.js.map +1 -0
  99. package/dist/stories/drawer/Drawer.d.ts +143 -0
  100. package/dist/stories/drawer/Drawer.js +357 -0
  101. package/dist/stories/drawer/Drawer.js.map +1 -0
  102. package/dist/stories/drawer/Drawer.module.css +406 -0
  103. package/dist/stories/drawer/Drawer.module.scss.js +96 -0
  104. package/dist/stories/drawer/Drawer.module.scss.js.map +1 -0
  105. package/dist/stories/drawer/DrawerActions.d.ts +5 -0
  106. package/dist/stories/drawer/DrawerActions.js +23 -0
  107. package/dist/stories/drawer/DrawerActions.js.map +1 -0
  108. package/dist/stories/drawer/DrawerBottomPanel.d.ts +9 -0
  109. package/dist/stories/drawer/DrawerBottomPanel.js +48 -0
  110. package/dist/stories/drawer/DrawerBottomPanel.js.map +1 -0
  111. package/dist/stories/drawer/DrawerContext.d.ts +11 -0
  112. package/dist/stories/drawer/DrawerContext.js +23 -0
  113. package/dist/stories/drawer/DrawerContext.js.map +1 -0
  114. package/dist/stories/drawer/DrawerPage.d.ts +12 -0
  115. package/dist/stories/drawer/DrawerPage.js +22 -0
  116. package/dist/stories/drawer/DrawerPage.js.map +1 -0
  117. package/dist/stories/drawer/DrawerPageContext.d.ts +12 -0
  118. package/dist/stories/drawer/DrawerPageContext.js +23 -0
  119. package/dist/stories/drawer/DrawerPageContext.js.map +1 -0
  120. package/dist/stories/drawer/DrawerPaginationContext.d.ts +9 -0
  121. package/dist/stories/drawer/DrawerPaginationContext.js +17 -0
  122. package/dist/stories/drawer/DrawerPaginationContext.js.map +1 -0
  123. package/dist/stories/drawer/DrawerProgressBar.d.ts +15 -0
  124. package/dist/stories/drawer/DrawerProgressBar.js +60 -0
  125. package/dist/stories/drawer/DrawerProgressBar.js.map +1 -0
  126. package/dist/stories/drawer/DrawerSlotContext.d.ts +34 -0
  127. package/dist/stories/drawer/DrawerSlotContext.js +120 -0
  128. package/dist/stories/drawer/DrawerSlotContext.js.map +1 -0
  129. package/dist/stories/drawer/DrawerTitle.d.ts +5 -0
  130. package/dist/stories/drawer/DrawerTitle.js +29 -0
  131. package/dist/stories/drawer/DrawerTitle.js.map +1 -0
  132. package/dist/stories/drawer/index.js +10 -0
  133. package/dist/stories/drawer/index.js.map +1 -0
  134. package/dist/stories/field/Field.d.ts +54 -0
  135. package/dist/stories/field/Field.js +91 -0
  136. package/dist/stories/field/Field.js.map +1 -0
  137. package/dist/stories/field/index.js +2 -0
  138. package/dist/stories/field/index.js.map +1 -0
  139. package/dist/stories/icon/ArrowRight.d.ts +2 -0
  140. package/dist/stories/icon/ArrowRight.js +13 -0
  141. package/dist/stories/icon/ArrowRight.js.map +1 -0
  142. package/dist/stories/icon/Check.d.ts +2 -0
  143. package/dist/stories/icon/Check.js +13 -0
  144. package/dist/stories/icon/Check.js.map +1 -0
  145. package/dist/stories/icon/ChevronLeft.d.ts +2 -0
  146. package/dist/stories/icon/ChevronLeft.js +13 -0
  147. package/dist/stories/icon/ChevronLeft.js.map +1 -0
  148. package/dist/stories/icon/ChevronRight.d.ts +2 -0
  149. package/dist/stories/icon/ChevronRight.js +13 -0
  150. package/dist/stories/icon/ChevronRight.js.map +1 -0
  151. package/dist/stories/icon/Close.d.ts +2 -0
  152. package/dist/stories/icon/Close.js +13 -0
  153. package/dist/stories/icon/Close.js.map +1 -0
  154. package/dist/stories/icon/Ellipsis.d.ts +2 -0
  155. package/dist/stories/icon/Ellipsis.js +13 -0
  156. package/dist/stories/icon/Ellipsis.js.map +1 -0
  157. package/{src/stories/icon/Icon.tsx → dist/stories/icon/Icon.d.ts} +2 -8
  158. package/dist/stories/icon/Icon.js +8 -0
  159. package/dist/stories/icon/Icon.js.map +1 -0
  160. package/dist/stories/icon/Info.d.ts +2 -0
  161. package/dist/stories/icon/Info.js +13 -0
  162. package/dist/stories/icon/Info.js.map +1 -0
  163. package/dist/stories/icon/NotificationDot.d.ts +2 -0
  164. package/dist/stories/icon/NotificationDot.js +7 -0
  165. package/dist/stories/icon/NotificationDot.js.map +1 -0
  166. package/dist/stories/icon/Spinner.d.ts +2 -0
  167. package/dist/stories/icon/Spinner.js +24 -0
  168. package/dist/stories/icon/Spinner.js.map +1 -0
  169. package/dist/stories/icon/index.js +11 -0
  170. package/dist/stories/icon/index.js.map +1 -0
  171. package/dist/stories/informationaltooltip/InformationalTooltip.d.ts +68 -0
  172. package/dist/stories/informationaltooltip/InformationalTooltip.js +85 -0
  173. package/dist/stories/informationaltooltip/InformationalTooltip.js.map +1 -0
  174. package/dist/stories/informationaltooltip/InformationalTooltip.module.css +22 -0
  175. package/dist/stories/informationaltooltip/InformationalTooltip.module.scss.js +11 -0
  176. package/dist/stories/informationaltooltip/InformationalTooltip.module.scss.js.map +1 -0
  177. package/dist/stories/informationaltooltip/index.js +2 -0
  178. package/dist/stories/informationaltooltip/index.js.map +1 -0
  179. package/dist/stories/input/Input.d.ts +57 -0
  180. package/dist/stories/input/Input.js +108 -0
  181. package/dist/stories/input/Input.js.map +1 -0
  182. package/dist/stories/input/Input.module.css +165 -0
  183. package/dist/stories/input/Input.module.scss.js +23 -0
  184. package/dist/stories/input/Input.module.scss.js.map +1 -0
  185. package/dist/stories/input/index.js +2 -0
  186. package/dist/stories/input/index.js.map +1 -0
  187. package/dist/stories/markdown/Markdown.d.ts +36 -0
  188. package/dist/stories/markdown/Markdown.js +141 -0
  189. package/dist/stories/markdown/Markdown.js.map +1 -0
  190. package/dist/stories/markdown/Markdown.module.css +301 -0
  191. package/dist/stories/markdown/Markdown.module.scss.js +73 -0
  192. package/dist/stories/markdown/Markdown.module.scss.js.map +1 -0
  193. package/dist/stories/markdown/index.js +2 -0
  194. package/dist/stories/markdown/index.js.map +1 -0
  195. package/dist/stories/markdowneditor/FixedToolbar.d.ts +19 -0
  196. package/dist/stories/markdowneditor/FixedToolbar.js +212 -0
  197. package/dist/stories/markdowneditor/FixedToolbar.js.map +1 -0
  198. package/dist/stories/markdowneditor/FixedToolbar.module.css +24 -0
  199. package/dist/stories/markdowneditor/FixedToolbar.module.scss.js +11 -0
  200. package/dist/stories/markdowneditor/FixedToolbar.module.scss.js.map +1 -0
  201. package/dist/stories/markdowneditor/FloatingToolbar.d.ts +15 -0
  202. package/dist/stories/markdowneditor/FloatingToolbar.js +66 -0
  203. package/dist/stories/markdowneditor/FloatingToolbar.js.map +1 -0
  204. package/dist/stories/markdowneditor/FloatingToolbar.module.css +18 -0
  205. package/dist/stories/markdowneditor/FloatingToolbar.module.scss.js +9 -0
  206. package/dist/stories/markdowneditor/FloatingToolbar.module.scss.js.map +1 -0
  207. package/dist/stories/markdowneditor/LinkPopover.d.ts +11 -0
  208. package/dist/stories/markdowneditor/LinkPopover.js +106 -0
  209. package/dist/stories/markdowneditor/LinkPopover.js.map +1 -0
  210. package/dist/stories/markdowneditor/LinkPopover.module.css +113 -0
  211. package/dist/stories/markdowneditor/LinkPopover.module.scss.js +21 -0
  212. package/dist/stories/markdowneditor/LinkPopover.module.scss.js.map +1 -0
  213. package/{src/stories/markdowneditor/MarkdownEditor.tsx → dist/stories/markdowneditor/MarkdownEditor.d.ts} +5 -68
  214. package/dist/stories/markdowneditor/MarkdownEditor.js +62 -0
  215. package/dist/stories/markdowneditor/MarkdownEditor.js.map +1 -0
  216. package/dist/stories/markdowneditor/MarkdownEditor.module.css +325 -0
  217. package/dist/stories/markdowneditor/MarkdownEditor.module.scss.js +11 -0
  218. package/dist/stories/markdowneditor/MarkdownEditor.module.scss.js.map +1 -0
  219. package/dist/stories/markdowneditor/MarkdownEditorContext.d.ts +10 -0
  220. package/dist/stories/markdowneditor/MarkdownEditorContext.js +11 -0
  221. package/dist/stories/markdowneditor/MarkdownEditorContext.js.map +1 -0
  222. package/dist/stories/markdowneditor/ToolbarButton.d.ts +22 -0
  223. package/dist/stories/markdowneditor/ToolbarButton.js +33 -0
  224. package/dist/stories/markdowneditor/ToolbarButton.js.map +1 -0
  225. package/dist/stories/markdowneditor/ToolbarButton.module.css +30 -0
  226. package/dist/stories/markdowneditor/ToolbarButton.module.scss.js +7 -0
  227. package/dist/stories/markdowneditor/ToolbarButton.module.scss.js.map +1 -0
  228. package/dist/stories/markdowneditor/features.d.ts +10 -0
  229. package/dist/stories/markdowneditor/features.js +79 -0
  230. package/dist/stories/markdowneditor/features.js.map +1 -0
  231. package/dist/stories/markdowneditor/index.js +7 -0
  232. package/dist/stories/markdowneditor/index.js.map +1 -0
  233. package/dist/stories/markdowneditor/useMarkdownEditor.d.ts +19 -0
  234. package/dist/stories/markdowneditor/useMarkdownEditor.js +50 -0
  235. package/dist/stories/markdowneditor/useMarkdownEditor.js.map +1 -0
  236. package/dist/stories/menu/Menu.d.ts +48 -0
  237. package/dist/stories/menu/Menu.js +31 -0
  238. package/dist/stories/menu/Menu.js.map +1 -0
  239. package/dist/stories/menu/Menu.module.css +59 -0
  240. package/dist/stories/menu/Menu.module.scss.js +12 -0
  241. package/dist/stories/menu/Menu.module.scss.js.map +1 -0
  242. package/dist/stories/menu/index.js +2 -0
  243. package/dist/stories/menu/index.js.map +1 -0
  244. package/dist/stories/pagination/index.js +2 -0
  245. package/dist/stories/pagination/index.js.map +1 -0
  246. package/dist/stories/pagination/usePagination.d.ts +47 -0
  247. package/dist/stories/pagination/usePagination.js +52 -0
  248. package/dist/stories/pagination/usePagination.js.map +1 -0
  249. package/dist/stories/popover/Popover.d.ts +29 -0
  250. package/dist/stories/popover/Popover.js +56 -0
  251. package/dist/stories/popover/Popover.js.map +1 -0
  252. package/dist/stories/popover/Popover.module.css +20 -0
  253. package/dist/stories/popover/Popover.module.scss.js +8 -0
  254. package/dist/stories/popover/Popover.module.scss.js.map +1 -0
  255. package/dist/stories/popover/index.js +2 -0
  256. package/dist/stories/popover/index.js.map +1 -0
  257. package/dist/stories/select/Select.d.ts +112 -0
  258. package/dist/stories/select/Select.js +283 -0
  259. package/dist/stories/select/Select.js.map +1 -0
  260. package/dist/stories/select/Select.module.css +236 -0
  261. package/dist/stories/select/Select.module.scss.js +47 -0
  262. package/dist/stories/select/Select.module.scss.js.map +1 -0
  263. package/dist/stories/select/index.js +2 -0
  264. package/dist/stories/select/index.js.map +1 -0
  265. package/dist/stories/styledlink/StyledLink.d.ts +20 -0
  266. package/dist/stories/styledlink/StyledLink.js +15 -0
  267. package/dist/stories/styledlink/StyledLink.js.map +1 -0
  268. package/dist/stories/styledlink/StyledLink.module.css +10 -0
  269. package/dist/stories/styledlink/StyledLink.module.scss.js +7 -0
  270. package/dist/stories/styledlink/StyledLink.module.scss.js.map +1 -0
  271. package/dist/stories/styledlink/index.js +2 -0
  272. package/dist/stories/styledlink/index.js.map +1 -0
  273. package/dist/stories/table/Table.d.ts +76 -0
  274. package/dist/stories/table/Table.js +91 -0
  275. package/dist/stories/table/Table.js.map +1 -0
  276. package/dist/stories/table/Table.module.css +60 -0
  277. package/dist/stories/table/Table.module.scss.js +21 -0
  278. package/dist/stories/table/Table.module.scss.js.map +1 -0
  279. package/dist/stories/table/index.js +2 -0
  280. package/dist/stories/table/index.js.map +1 -0
  281. package/dist/stories/tabs/Tabs.d.ts +74 -0
  282. package/dist/stories/tabs/Tabs.js +128 -0
  283. package/dist/stories/tabs/Tabs.js.map +1 -0
  284. package/dist/stories/tabs/Tabs.module.css +144 -0
  285. package/dist/stories/tabs/Tabs.module.scss.js +37 -0
  286. package/dist/stories/tabs/Tabs.module.scss.js.map +1 -0
  287. package/dist/stories/tabs/index.js +2 -0
  288. package/dist/stories/tabs/index.js.map +1 -0
  289. package/dist/stories/tag/Tag.d.ts +36 -0
  290. package/dist/stories/tag/Tag.js +52 -0
  291. package/dist/stories/tag/Tag.js.map +1 -0
  292. package/dist/stories/tag/Tag.module.css +164 -0
  293. package/dist/stories/tag/Tag.module.scss.js +38 -0
  294. package/dist/stories/tag/Tag.module.scss.js.map +1 -0
  295. package/dist/stories/tag/index.js +2 -0
  296. package/dist/stories/tag/index.js.map +1 -0
  297. package/dist/stories/text/Text.d.ts +52 -0
  298. package/dist/stories/text/Text.js +37 -0
  299. package/dist/stories/text/Text.js.map +1 -0
  300. package/dist/stories/text/Text.module.css +54 -0
  301. package/dist/stories/text/Text.module.scss.js +19 -0
  302. package/dist/stories/text/Text.module.scss.js.map +1 -0
  303. package/{src → dist}/stories/text/Typography.module.css +20 -20
  304. package/dist/stories/text/Typography.module.css.js +45 -0
  305. package/dist/stories/text/Typography.module.css.js.map +1 -0
  306. package/dist/stories/text/index.js +2 -0
  307. package/dist/stories/text/index.js.map +1 -0
  308. package/dist/stories/textarea/TextArea.d.ts +28 -0
  309. package/dist/stories/textarea/TextArea.js +102 -0
  310. package/dist/stories/textarea/TextArea.js.map +1 -0
  311. package/dist/stories/textarea/index.js +2 -0
  312. package/dist/stories/textarea/index.js.map +1 -0
  313. package/{src/stories/theme/tw-preflight.css → dist/stories/theme/global.css} +86 -110
  314. package/dist/stories/theme/index.js +4 -0
  315. package/dist/stories/theme/index.js.map +1 -0
  316. package/dist/stories/theme/themes.d.ts +513 -0
  317. package/dist/stories/theme/themes.js +854 -0
  318. package/dist/stories/theme/themes.js.map +1 -0
  319. package/dist/stories/theme/tokens.d.ts +128 -0
  320. package/dist/stories/theme/tokens.js +130 -0
  321. package/dist/stories/theme/tokens.js.map +1 -0
  322. package/dist/stories/tilt/Tilt.d.ts +70 -0
  323. package/dist/stories/tilt/Tilt.js +256 -0
  324. package/dist/stories/tilt/Tilt.js.map +1 -0
  325. package/dist/stories/tilt/Tilt.module.css +22 -0
  326. package/dist/stories/tilt/Tilt.module.scss.js +11 -0
  327. package/dist/stories/tilt/Tilt.module.scss.js.map +1 -0
  328. package/dist/stories/tilt/index.js +2 -0
  329. package/dist/stories/tilt/index.js.map +1 -0
  330. package/{src/stories/toast/Toast.tsx → dist/stories/toast/Toast.d.ts} +3 -17
  331. package/dist/stories/toast/Toast.js +19 -0
  332. package/dist/stories/toast/Toast.js.map +1 -0
  333. package/dist/stories/toast/Toast.module.css +17 -0
  334. package/dist/stories/toast/Toast.module.scss.js +7 -0
  335. package/dist/stories/toast/Toast.module.scss.js.map +1 -0
  336. package/dist/stories/toast/index.js +3 -0
  337. package/dist/stories/toast/index.js.map +1 -0
  338. package/dist/stories/utility/EasingFunctions.d.ts +1 -0
  339. package/dist/stories/utility/EasingFunctions.js +6 -0
  340. package/dist/stories/utility/EasingFunctions.js.map +1 -0
  341. package/dist/stories/utility/RemoveFromDOM.d.ts +11 -0
  342. package/dist/stories/utility/RemoveFromDOM.js +7 -0
  343. package/dist/stories/utility/RemoveFromDOM.js.map +1 -0
  344. package/dist/stories/utility/TextWhenString.d.ts +6 -0
  345. package/dist/stories/utility/TextWhenString.js +13 -0
  346. package/dist/stories/utility/TextWhenString.js.map +1 -0
  347. package/dist/stories/utility/VisuallyHidden.d.ts +13 -0
  348. package/dist/stories/utility/VisuallyHidden.js +8 -0
  349. package/dist/stories/utility/VisuallyHidden.js.map +1 -0
  350. package/dist/stories/utility/index.js +5 -0
  351. package/dist/stories/utility/index.js.map +1 -0
  352. package/dist/styles.css +3307 -0
  353. package/dist/types/Enhancer.d.ts +4 -0
  354. package/package.json +148 -44
  355. package/src/helpers/OpenChangeEffect.tsx +0 -21
  356. package/src/helpers/renderEnhancer.tsx +0 -20
  357. package/src/helpers/useControllableState.test.ts +0 -88
  358. package/src/helpers/useControllableState.ts +0 -59
  359. package/src/helpers/useIsMounted.ts +0 -17
  360. package/src/helpers/useResizeObserver.ts +0 -94
  361. package/src/pages/_app.tsx +0 -6
  362. package/src/pages/_document.tsx +0 -13
  363. package/src/pages/index.tsx +0 -116
  364. package/src/stories/Pagination.mdx +0 -73
  365. package/src/stories/Tokens.mdx +0 -46
  366. package/src/stories/Welcome.mdx +0 -8
  367. package/src/stories/accordion/Accordion.module.scss +0 -163
  368. package/src/stories/accordion/Accordion.stories.ts +0 -48
  369. package/src/stories/accordion/Accordion.test.tsx +0 -142
  370. package/src/stories/accordion/Accordion.tsx +0 -148
  371. package/src/stories/accordionselect/AccordionSelect.module.scss +0 -119
  372. package/src/stories/accordionselect/AccordionSelect.stories.ts +0 -38
  373. package/src/stories/accordionselect/AccordionSelect.test.tsx +0 -327
  374. package/src/stories/accordionselect/AccordionSelect.tsx +0 -249
  375. package/src/stories/avatar/Avatar.module.scss +0 -7
  376. package/src/stories/avatar/Avatar.stories.ts +0 -22
  377. package/src/stories/avatar/Avatar.test.tsx +0 -77
  378. package/src/stories/avatar/Avatar.tsx +0 -55
  379. package/src/stories/button/Button.module.scss +0 -167
  380. package/src/stories/button/Button.stories.ts +0 -93
  381. package/src/stories/button/Button.test.tsx +0 -266
  382. package/src/stories/button/Button.tsx +0 -226
  383. package/src/stories/callout/Callout.module.scss +0 -43
  384. package/src/stories/callout/Callout.stories.ts +0 -52
  385. package/src/stories/callout/Callout.test.tsx +0 -79
  386. package/src/stories/callout/Callout.tsx +0 -43
  387. package/src/stories/card/Card.module.scss +0 -42
  388. package/src/stories/card/Card.stories.ts +0 -38
  389. package/src/stories/card/Card.test.tsx +0 -81
  390. package/src/stories/card/Card.tsx +0 -54
  391. package/src/stories/cardbutton/CardButton.module.scss +0 -88
  392. package/src/stories/cardbutton/CardButton.stories.tsx +0 -24
  393. package/src/stories/cardbutton/CardButton.test.tsx +0 -174
  394. package/src/stories/cardbutton/CardButton.tsx +0 -100
  395. package/src/stories/checkbox/Checkbox.module.scss +0 -198
  396. package/src/stories/checkbox/Checkbox.stories.ts +0 -87
  397. package/src/stories/checkbox/Checkbox.test.tsx +0 -584
  398. package/src/stories/checkbox/Checkbox.tsx +0 -123
  399. package/src/stories/codeinput/CodeInput.module.scss +0 -77
  400. package/src/stories/codeinput/CodeInput.stories.ts +0 -51
  401. package/src/stories/codeinput/CodeInput.test.tsx +0 -56
  402. package/src/stories/codeinput/CodeInput.tsx +0 -160
  403. package/src/stories/combobox/Combobox.module.scss +0 -5
  404. package/src/stories/combobox/Combobox.stories.ts +0 -270
  405. package/src/stories/combobox/Combobox.test.tsx +0 -275
  406. package/src/stories/combobox/Combobox.tsx +0 -396
  407. package/src/stories/dialog/Dialog.module.scss +0 -211
  408. package/src/stories/dialog/Dialog.stories.tsx +0 -93
  409. package/src/stories/dialog/Dialog.test.tsx +0 -244
  410. package/src/stories/dialog/Dialog.tsx +0 -283
  411. package/src/stories/drawer/Drawer.module.scss +0 -479
  412. package/src/stories/drawer/Drawer.stories.tsx +0 -494
  413. package/src/stories/drawer/Drawer.test.tsx +0 -734
  414. package/src/stories/drawer/Drawer.tsx +0 -548
  415. package/src/stories/drawer/DrawerActions.tsx +0 -28
  416. package/src/stories/drawer/DrawerBottomPanel.tsx +0 -55
  417. package/src/stories/drawer/DrawerContext.tsx +0 -31
  418. package/src/stories/drawer/DrawerPage.tsx +0 -37
  419. package/src/stories/drawer/DrawerPageContext.tsx +0 -35
  420. package/src/stories/drawer/DrawerPaginationContext.tsx +0 -22
  421. package/src/stories/drawer/DrawerProgressBar.tsx +0 -72
  422. package/src/stories/drawer/DrawerSlotContext.tsx +0 -172
  423. package/src/stories/drawer/DrawerTitle.tsx +0 -35
  424. package/src/stories/field/Field.stories.ts +0 -36
  425. package/src/stories/field/Field.test.tsx +0 -146
  426. package/src/stories/field/Field.tsx +0 -145
  427. package/src/stories/icon/ArrowRight.tsx +0 -11
  428. package/src/stories/icon/Check.tsx +0 -11
  429. package/src/stories/icon/ChevronLeft.tsx +0 -11
  430. package/src/stories/icon/ChevronRight.tsx +0 -11
  431. package/src/stories/icon/Close.tsx +0 -11
  432. package/src/stories/icon/Ellipsis.tsx +0 -11
  433. package/src/stories/icon/Icon.module.scss +0 -5
  434. package/src/stories/icon/Icon.stories.ts +0 -33
  435. package/src/stories/icon/Icon.test.tsx +0 -59
  436. package/src/stories/icon/Info.tsx +0 -11
  437. package/src/stories/icon/NotificationDot.tsx +0 -8
  438. package/src/stories/icon/Spinner.tsx +0 -17
  439. package/src/stories/informationaltooltip/InformationalTooltip.module.scss +0 -23
  440. package/src/stories/informationaltooltip/InformationalTooltip.stories.tsx +0 -61
  441. package/src/stories/informationaltooltip/InformationalTooltip.test.tsx +0 -178
  442. package/src/stories/informationaltooltip/InformationalTooltip.tsx +0 -170
  443. package/src/stories/input/Input.module.scss +0 -217
  444. package/src/stories/input/Input.stories.ts +0 -110
  445. package/src/stories/input/Input.test.tsx +0 -174
  446. package/src/stories/input/Input.tsx +0 -181
  447. package/src/stories/markdown/Markdown.module.scss +0 -384
  448. package/src/stories/markdown/Markdown.stories.ts +0 -203
  449. package/src/stories/markdown/Markdown.test.tsx +0 -228
  450. package/src/stories/markdown/Markdown.tsx +0 -293
  451. package/src/stories/markdowneditor/FixedToolbar.module.scss +0 -24
  452. package/src/stories/markdowneditor/FixedToolbar.tsx +0 -274
  453. package/src/stories/markdowneditor/FloatingToolbar.module.scss +0 -21
  454. package/src/stories/markdowneditor/FloatingToolbar.tsx +0 -94
  455. package/src/stories/markdowneditor/LinkPopover.module.scss +0 -124
  456. package/src/stories/markdowneditor/LinkPopover.tsx +0 -135
  457. package/src/stories/markdowneditor/MarkdownEditor.module.scss +0 -405
  458. package/src/stories/markdowneditor/MarkdownEditor.stories.tsx +0 -226
  459. package/src/stories/markdowneditor/MarkdownEditor.test.tsx +0 -115
  460. package/src/stories/markdowneditor/MarkdownEditorContext.tsx +0 -20
  461. package/src/stories/markdowneditor/ToolbarButton.module.scss +0 -35
  462. package/src/stories/markdowneditor/ToolbarButton.tsx +0 -52
  463. package/src/stories/markdowneditor/features.ts +0 -92
  464. package/src/stories/markdowneditor/useMarkdownEditor.ts +0 -75
  465. package/src/stories/menu/Menu.module.scss +0 -71
  466. package/src/stories/menu/Menu.stories.tsx +0 -37
  467. package/src/stories/menu/Menu.test.tsx +0 -254
  468. package/src/stories/menu/Menu.tsx +0 -95
  469. package/src/stories/pagination/usePagination.test.ts +0 -259
  470. package/src/stories/pagination/usePagination.ts +0 -117
  471. package/src/stories/popover/Popover.module.scss +0 -22
  472. package/src/stories/popover/Popover.stories.ts +0 -20
  473. package/src/stories/popover/Popover.test.tsx +0 -152
  474. package/src/stories/popover/Popover.tsx +0 -89
  475. package/src/stories/select/Select.module.scss +0 -311
  476. package/src/stories/select/Select.stories.ts +0 -153
  477. package/src/stories/select/Select.test.tsx +0 -341
  478. package/src/stories/select/Select.tsx +0 -398
  479. package/src/stories/styledlink/StyledLink.module.scss +0 -11
  480. package/src/stories/styledlink/StyledLink.stories.ts +0 -28
  481. package/src/stories/styledlink/StyledLink.test.tsx +0 -59
  482. package/src/stories/styledlink/StyledLink.tsx +0 -33
  483. package/src/stories/table/Table.module.scss +0 -74
  484. package/src/stories/table/Table.stories.ts +0 -62
  485. package/src/stories/table/Table.test.tsx +0 -156
  486. package/src/stories/table/Table.tsx +0 -182
  487. package/src/stories/tabs/Tabs.module.scss +0 -185
  488. package/src/stories/tabs/Tabs.stories.tsx +0 -209
  489. package/src/stories/tabs/Tabs.test.tsx +0 -167
  490. package/src/stories/tabs/Tabs.tsx +0 -191
  491. package/src/stories/tag/Tag.module.scss +0 -189
  492. package/src/stories/tag/Tag.stories.ts +0 -58
  493. package/src/stories/tag/Tag.test.tsx +0 -90
  494. package/src/stories/tag/Tag.tsx +0 -84
  495. package/src/stories/text/Text.module.scss +0 -39
  496. package/src/stories/text/Text.stories.ts +0 -195
  497. package/src/stories/text/Text.test.tsx +0 -81
  498. package/src/stories/text/Text.tsx +0 -108
  499. package/src/stories/textarea/TextArea.stories.ts +0 -39
  500. package/src/stories/textarea/TextArea.test.tsx +0 -147
  501. package/src/stories/textarea/TextArea.tsx +0 -112
  502. package/src/stories/theme/global.scss +0 -6
  503. package/src/stories/theme/themes.ts +0 -1509
  504. package/src/stories/theme/tokens.ts +0 -149
  505. package/src/stories/theme/util.scss +0 -8
  506. package/src/stories/tilt/Tilt.module.scss +0 -22
  507. package/src/stories/tilt/Tilt.stories.tsx +0 -42
  508. package/src/stories/tilt/Tilt.test.tsx +0 -203
  509. package/src/stories/tilt/Tilt.tsx +0 -375
  510. package/src/stories/toast/Toast.module.scss +0 -20
  511. package/src/stories/toast/Toast.stories.tsx +0 -31
  512. package/src/stories/toast/Toast.test.tsx +0 -86
  513. package/src/stories/utility/Dropdown.module.scss +0 -28
  514. package/src/stories/utility/EasingFunctions.ts +0 -3
  515. package/src/stories/utility/RemoveFromDOM.tsx +0 -15
  516. package/src/stories/utility/TextWhenString.tsx +0 -15
  517. package/src/stories/utility/Utility.test.tsx +0 -96
  518. package/src/stories/utility/VisuallyHidden.tsx +0 -18
  519. package/src/styles/Home.module.css +0 -268
  520. package/src/styles/globals.css +0 -3
  521. package/src/test/render.tsx +0 -20
  522. package/src/test/setup.ts +0 -32
  523. package/src/types/Enhancer.ts +0 -3
  524. /package/{src/stories/accordion/index.ts → dist/stories/accordion/index.d.ts} +0 -0
  525. /package/{src/stories/accordionselect/index.ts → dist/stories/accordionselect/index.d.ts} +0 -0
  526. /package/{src/stories/avatar/index.ts → dist/stories/avatar/index.d.ts} +0 -0
  527. /package/{src/stories/button/index.ts → dist/stories/button/index.d.ts} +0 -0
  528. /package/{src/stories/callout/index.ts → dist/stories/callout/index.d.ts} +0 -0
  529. /package/{src/stories/card/index.ts → dist/stories/card/index.d.ts} +0 -0
  530. /package/{src/stories/cardbutton/index.ts → dist/stories/cardbutton/index.d.ts} +0 -0
  531. /package/{src/stories/checkbox/index.ts → dist/stories/checkbox/index.d.ts} +0 -0
  532. /package/{src/stories/codeinput/index.ts → dist/stories/codeinput/index.d.ts} +0 -0
  533. /package/{src/stories/combobox/index.ts → dist/stories/combobox/index.d.ts} +0 -0
  534. /package/{src/stories/dialog/index.ts → dist/stories/dialog/index.d.ts} +0 -0
  535. /package/{src/stories/drawer/index.ts → dist/stories/drawer/index.d.ts} +0 -0
  536. /package/{src/stories/field/index.ts → dist/stories/field/index.d.ts} +0 -0
  537. /package/{src/stories/icon/index.ts → dist/stories/icon/index.d.ts} +0 -0
  538. /package/{src/stories/informationaltooltip/index.ts → dist/stories/informationaltooltip/index.d.ts} +0 -0
  539. /package/{src/stories/input/index.ts → dist/stories/input/index.d.ts} +0 -0
  540. /package/{src/stories/markdown/index.ts → dist/stories/markdown/index.d.ts} +0 -0
  541. /package/{src/stories/markdowneditor/index.ts → dist/stories/markdowneditor/index.d.ts} +0 -0
  542. /package/{src/stories/menu/index.ts → dist/stories/menu/index.d.ts} +0 -0
  543. /package/{src/stories/pagination/index.ts → dist/stories/pagination/index.d.ts} +0 -0
  544. /package/{src/stories/popover/index.ts → dist/stories/popover/index.d.ts} +0 -0
  545. /package/{src/stories/select/index.ts → dist/stories/select/index.d.ts} +0 -0
  546. /package/{src/stories/styledlink/index.ts → dist/stories/styledlink/index.d.ts} +0 -0
  547. /package/{src/stories/table/index.ts → dist/stories/table/index.d.ts} +0 -0
  548. /package/{src/stories/tabs/index.ts → dist/stories/tabs/index.d.ts} +0 -0
  549. /package/{src/stories/tag/index.ts → dist/stories/tag/index.d.ts} +0 -0
  550. /package/{src/stories/text/index.ts → dist/stories/text/index.d.ts} +0 -0
  551. /package/{src/stories/textarea/index.ts → dist/stories/textarea/index.d.ts} +0 -0
  552. /package/{src/stories/theme/index.ts → dist/stories/theme/index.d.ts} +0 -0
  553. /package/{src/stories/tilt/index.ts → dist/stories/tilt/index.d.ts} +0 -0
  554. /package/{src/stories/toast/index.ts → dist/stories/toast/index.d.ts} +0 -0
  555. /package/{src/stories/utility/index.ts → dist/stories/utility/index.d.ts} +0 -0
@@ -0,0 +1,3307 @@
1
+ .paris_toggleIcon_Aqg7R {
2
+ display: inline-flex;
3
+ align-items: center;
4
+ padding: 2px;
5
+ transition: transform var(--pte-animations-duration-gradual) var(--pte-animations-timing-easeInOutExpo);
6
+ transform: rotate(0);
7
+ }
8
+ .paris_toggleIcon_Aqg7R.paris_open_Anlum {
9
+ transform: rotate(-180deg);
10
+ }
11
+
12
+ .paris_default_3a5AQ {
13
+ color: var(--pte-new-colors-contentPrimary);
14
+ border-bottom: 1px solid var(--pte-new-colors-borderMedium);
15
+ cursor: pointer;
16
+ transition: all var(--pte-animations-duration-relaxed) var(--pte-animations-timing-easeInOutExpo);
17
+ }
18
+ .paris_default_3a5AQ .paris_title_quAkj {
19
+ padding: 16px 0;
20
+ display: flex;
21
+ justify-content: space-between;
22
+ align-items: center;
23
+ font-size: 16px;
24
+ font-weight: var(--pte-typography-fontWeights-medium);
25
+ border-bottom: 1px solid transparent;
26
+ transition: border-bottom-color var(--pte-animations-duration-gradual) var(--pte-animations-timing-easeInOutExpo);
27
+ }
28
+ .paris_default_3a5AQ .paris_title_quAkj.paris_open_Anlum {
29
+ border-bottom-color: var(--pte-new-colors-borderMedium);
30
+ }
31
+ .paris_default_3a5AQ .paris_plusIcon_vUae0 {
32
+ margin-left: 4px;
33
+ }
34
+ .paris_default_3a5AQ .paris_plusIcon_vUae0 svg {
35
+ transition: transform var(--pte-animations-duration-gradual) var(--pte-animations-timing-easeInOutExpo);
36
+ transform: rotate(0);
37
+ width: 16px;
38
+ height: 16px;
39
+ }
40
+ .paris_default_3a5AQ .paris_plusIcon_vUae0 svg.paris_open_Anlum {
41
+ transform: rotate(135deg) !important;
42
+ }
43
+ .paris_default_3a5AQ .paris_dropdown_UIy8m {
44
+ display: grid;
45
+ grid-template-rows: 0fr;
46
+ opacity: 0;
47
+ cursor: auto;
48
+ transition: grid-template-rows 800ms cubic-bezier(0.87, 0, 0.13, 1), opacity 800ms cubic-bezier(0.87, 0, 0.13, 1);
49
+ }
50
+ .paris_default_3a5AQ .paris_dropdown_UIy8m.paris_open_Anlum {
51
+ grid-template-rows: 1fr;
52
+ opacity: 1;
53
+ }
54
+ .paris_default_3a5AQ .paris_dropdownClip_8uEEp {
55
+ min-height: 0;
56
+ overflow: hidden;
57
+ }
58
+ .paris_default_3a5AQ .paris_dropdownContent_DWSoM {
59
+ padding: 12px;
60
+ display: flex;
61
+ flex-direction: column;
62
+ gap: 12px;
63
+ background-color: var(--pte-new-colors-overlaySubtle);
64
+ }
65
+
66
+ .paris_card_hzays {
67
+ color: var(--pte-new-colors-contentPrimary);
68
+ border: 1px solid var(--pte-new-colors-borderStrong);
69
+ border-radius: var(--pte-new-borders-radius-roundedMedium);
70
+ background: var(--pte-new-colors-surfacePrimary);
71
+ cursor: pointer;
72
+ transition: var(--pte-animations-interaction);
73
+ }
74
+ .paris_card_hzays.paris_open_Anlum {
75
+ border-color: var(--pte-new-colors-borderUltrastrong);
76
+ }
77
+ .paris_card_hzays .paris_title_quAkj {
78
+ padding: 10px 12px;
79
+ display: flex;
80
+ justify-content: space-between;
81
+ align-items: center;
82
+ gap: 10px;
83
+ background-color: var(--pte-new-colors-overlayWhiteSubtle);
84
+ border-bottom: 1px solid transparent;
85
+ transition: var(--pte-animations-interaction);
86
+ }
87
+ .paris_card_hzays .paris_title_quAkj.paris_large_GVtpa {
88
+ padding: 14px 16px;
89
+ }
90
+ .paris_card_hzays .paris_title_quAkj.paris_open_Anlum {
91
+ background-color: var(--pte-new-colors-overlayMedium);
92
+ border-bottom-color: var(--pte-new-colors-borderStrong);
93
+ }
94
+ .paris_card_hzays .paris_title_quAkj:hover {
95
+ background-color: var(--pte-new-colors-overlayStrong);
96
+ }
97
+ .paris_card_hzays .paris_chevron_MRAbS {
98
+ padding: 2px;
99
+ transition: transform var(--pte-animations-duration-gradual) var(--pte-animations-timing-easeInOutExpo);
100
+ transform: rotate(90deg);
101
+ }
102
+ .paris_card_hzays .paris_chevron_MRAbS.paris_open_Anlum {
103
+ transform: rotate(-90deg);
104
+ }
105
+ .paris_card_hzays .paris_dropdown_UIy8m {
106
+ display: grid;
107
+ grid-template-rows: 0fr;
108
+ opacity: 0;
109
+ cursor: auto;
110
+ transition: grid-template-rows 800ms cubic-bezier(0.87, 0, 0.13, 1), opacity 800ms cubic-bezier(0.87, 0, 0.13, 1);
111
+ }
112
+ .paris_card_hzays .paris_dropdown_UIy8m.paris_open_Anlum {
113
+ grid-template-rows: 1fr;
114
+ opacity: 1;
115
+ }
116
+ .paris_card_hzays .paris_dropdownClip_8uEEp {
117
+ min-height: 0;
118
+ overflow: hidden;
119
+ }
120
+ .paris_card_hzays .paris_dropdownContent_DWSoM {
121
+ padding: 12px;
122
+ display: flex;
123
+ flex-direction: column;
124
+ gap: 12px;
125
+ background-color: var(--pte-new-colors-overlayWhiteSubtle);
126
+ }
127
+ .paris_card_hzays .paris_dropdownContent_DWSoM.paris_large_GVtpa {
128
+ padding: 16px;
129
+ gap: 16px;
130
+ }
131
+ .paris_root_66wcQ {
132
+ color: var(--pte-new-colors-contentPrimary);
133
+ border: 1px solid var(--pte-new-colors-borderStrong);
134
+ border-radius: var(--pte-new-borders-radius-roundedMedium);
135
+ background: var(--pte-new-colors-surfacePrimary);
136
+ overflow: hidden;
137
+ transition: var(--pte-animations-interaction);
138
+ }
139
+ .paris_root_66wcQ.paris_open_FCY1A {
140
+ border-color: var(--pte-new-colors-borderUltrastrong);
141
+ }
142
+
143
+ .paris_header_PKn63 {
144
+ padding: 10px 12px;
145
+ display: flex;
146
+ justify-content: space-between;
147
+ align-items: center;
148
+ gap: 10px;
149
+ background-color: var(--pte-new-colors-overlayWhiteSubtle);
150
+ cursor: pointer;
151
+ transition: var(--pte-animations-interaction);
152
+ }
153
+ .paris_header_PKn63.paris_open_FCY1A {
154
+ background-color: var(--pte-new-colors-overlayMedium);
155
+ border-bottom: 1px solid var(--pte-new-colors-borderStrong);
156
+ }
157
+ .paris_header_PKn63:hover {
158
+ background-color: var(--pte-new-colors-overlayStrong);
159
+ }
160
+
161
+ .paris_headerContent_GYCii {
162
+ flex: 1;
163
+ min-width: 0;
164
+ }
165
+
166
+ .paris_headerEnd_OTSFb {
167
+ display: flex;
168
+ align-items: center;
169
+ gap: 8px;
170
+ flex-shrink: 0;
171
+ }
172
+
173
+ .paris_chevron_Dhtll {
174
+ transition: transform var(--pte-animations-duration-gradual) var(--pte-animations-timing-easeInOutExpo);
175
+ transform: rotate(90deg);
176
+ }
177
+ .paris_chevron_Dhtll.paris_open_FCY1A {
178
+ transform: rotate(-90deg);
179
+ }
180
+
181
+ .paris_dropdown_UgKKg {
182
+ display: grid;
183
+ grid-template-rows: 0fr;
184
+ opacity: 0;
185
+ transition: grid-template-rows 800ms cubic-bezier(0.87, 0, 0.13, 1), opacity 800ms cubic-bezier(0.87, 0, 0.13, 1);
186
+ }
187
+ .paris_dropdown_UgKKg.paris_open_FCY1A {
188
+ grid-template-rows: 1fr;
189
+ opacity: 1;
190
+ }
191
+
192
+ .paris_dropdownContent_29-L- {
193
+ min-height: 0;
194
+ overflow: hidden;
195
+ display: flex;
196
+ flex-direction: column;
197
+ padding: 0;
198
+ gap: 0;
199
+ }
200
+
201
+ .paris_option_Ijd6n {
202
+ display: flex;
203
+ align-items: center;
204
+ gap: 10px;
205
+ padding: 8px 14px;
206
+ border-bottom: 0.5px solid var(--pte-new-colors-borderMedium);
207
+ background: transparent;
208
+ color: inherit;
209
+ cursor: pointer;
210
+ transition: background var(--pte-animations-duration-instant) var(--pte-animations-timing-easeInOutExpo);
211
+ }
212
+ .paris_option_Ijd6n:last-of-type {
213
+ border-bottom: none;
214
+ }
215
+ .paris_option_Ijd6n[data-selected=true] {
216
+ background: var(--pte-new-colors-overlaySubtle);
217
+ }
218
+ .paris_option_Ijd6n:hover {
219
+ background: var(--pte-new-colors-overlayMedium);
220
+ }
221
+ .paris_option_Ijd6n:disabled {
222
+ opacity: 0.4;
223
+ cursor: not-allowed;
224
+ }
225
+ .paris_option_Ijd6n:disabled:hover {
226
+ background: transparent;
227
+ }
228
+ .paris_option_Ijd6n .paris_check_niu9e {
229
+ padding: 4px;
230
+ }
231
+
232
+ .paris_optionContent_C6dcG {
233
+ flex: 1;
234
+ text-align: left;
235
+ min-width: 0;
236
+ }
237
+ .paris_content_ckGnM {
238
+ border-radius: 100%;
239
+ aspect-ratio: 1;
240
+ border: 1px solid var(--frame-color);
241
+ overflow: clip;
242
+ box-shadow: var(--pte-new-lighting-subtlePopup);
243
+ }
244
+ /*
245
+ * Main styles
246
+ */
247
+ .paris_button_1IoaA {
248
+ user-select: var(--pte-utils-defaultUserSelect);
249
+ border: 1px solid;
250
+ position: relative;
251
+ display: flex;
252
+ flex-direction: row;
253
+ align-items: center;
254
+ justify-content: center;
255
+ gap: 8px;
256
+ transition: var(--pte-animations-interaction);
257
+ }
258
+ .paris_button_1IoaA > span {
259
+ margin-block-end: var(--pte-typography-verticalMetricsAdjust);
260
+ }
261
+ .paris_button_1IoaA:hover {
262
+ cursor: default;
263
+ background-color: var(--pte-new-colors-buttonFillHover);
264
+ }
265
+ .paris_button_1IoaA[aria-disabled=false]:active {
266
+ opacity: 0.9;
267
+ transform: scale(0.98);
268
+ }
269
+ .paris_button_1IoaA[aria-disabled=true] {
270
+ pointer-events: none;
271
+ }
272
+
273
+ /*
274
+ * KIND
275
+ */
276
+ .paris_primary_WZ3V2 {
277
+ color: var(--pte-new-colors-contentInversePrimary);
278
+ background-color: var(--pte-new-colors-buttonFill);
279
+ border-color: var(--pte-new-colors-buttonFill);
280
+ }
281
+ .paris_primary_WZ3V2:hover {
282
+ border-color: var(--pte-new-colors-buttonFillHover);
283
+ }
284
+ .paris_primary_WZ3V2[aria-disabled=true] {
285
+ color: var(--pte-new-colors-contentDisabled);
286
+ background-color: var(--pte-new-colors-buttonFillDisabled);
287
+ border-color: var(--pte-new-colors-buttonFillDisabled);
288
+ }
289
+
290
+ .paris_secondary_PPwS- {
291
+ color: var(--pte-new-colors-contentPrimary);
292
+ background-color: transparent;
293
+ border-color: var(--pte-new-colors-buttonBorder);
294
+ }
295
+ .paris_secondary_PPwS-:hover {
296
+ background-color: var(--pte-new-colors-overlayMedium);
297
+ }
298
+ .paris_secondary_PPwS-[aria-disabled=true] {
299
+ color: var(--pte-new-colors-contentDisabled);
300
+ border-color: var(--pte-new-colors-buttonBorderDisabled);
301
+ }
302
+
303
+ .paris_tertiary_YxJ8t {
304
+ color: var(--pte-new-colors-contentPrimary);
305
+ background-color: transparent;
306
+ border-color: transparent;
307
+ }
308
+ .paris_tertiary_YxJ8t:hover {
309
+ background-color: var(--pte-new-colors-overlayMedium);
310
+ }
311
+ .paris_tertiary_YxJ8t[aria-disabled=true] {
312
+ color: var(--pte-new-colors-contentDisabled);
313
+ }
314
+
315
+ /*
316
+ * SIZE
317
+ */
318
+ .paris_large_zPEdw {
319
+ height: 32px;
320
+ padding: 8px 15px;
321
+ }
322
+
323
+ .paris_medium_53OWi {
324
+ height: 28px;
325
+ padding: 6px 14px;
326
+ }
327
+
328
+ .paris_small_S3vyW {
329
+ height: 20px;
330
+ padding: 4px 15px;
331
+ }
332
+
333
+ .paris_xs_c-eh0 {
334
+ height: 16px;
335
+ padding: 2px 8px;
336
+ }
337
+
338
+ /*
339
+ * SHAPE
340
+ */
341
+ .paris_pill_1XcUA {
342
+ border-radius: var(--pte-borders-radius-pill);
343
+ }
344
+
345
+ .paris_circle_FSHCz {
346
+ border-radius: var(--pte-borders-radius-circle);
347
+ }
348
+
349
+ .paris_square_pSywN.paris_sharp_fq57n, .paris_rectangle_Ygh8k.paris_sharp_fq57n {
350
+ border-radius: var(--pte-borders-radius-rectangle);
351
+ }
352
+ .paris_square_pSywN.paris_rounded_niE4k, .paris_rectangle_Ygh8k.paris_rounded_niE4k {
353
+ border-radius: var(--pte-borders-radius-rounded);
354
+ }
355
+ .paris_square_pSywN.paris_rounded_niE4k.paris_small_S3vyW, .paris_rectangle_Ygh8k.paris_rounded_niE4k.paris_small_S3vyW {
356
+ border-radius: var(--pte-borders-radius-roundedSmall);
357
+ }
358
+ .paris_square_pSywN.paris_roundedXL_2HoEn, .paris_rectangle_Ygh8k.paris_roundedXL_2HoEn {
359
+ border-radius: var(--pte-borders-radius-roundedLarge);
360
+ }
361
+ .paris_square_pSywN.paris_roundedXL_2HoEn.paris_small_S3vyW, .paris_rectangle_Ygh8k.paris_roundedXL_2HoEn.paris_small_S3vyW {
362
+ border-radius: var(--pte-borders-radius-rounded);
363
+ }
364
+
365
+ .paris_circle_FSHCz.paris_large_zPEdw, .paris_square_pSywN.paris_large_zPEdw {
366
+ width: 32px;
367
+ padding: 8px;
368
+ }
369
+ .paris_circle_FSHCz.paris_medium_53OWi, .paris_square_pSywN.paris_medium_53OWi {
370
+ width: 28px;
371
+ padding: 4px;
372
+ }
373
+ .paris_circle_FSHCz.paris_small_S3vyW, .paris_square_pSywN.paris_small_S3vyW {
374
+ width: 20px;
375
+ padding: 4px;
376
+ }
377
+ .paris_circle_FSHCz.paris_xs_c-eh0, .paris_square_pSywN.paris_xs_c-eh0 {
378
+ width: 16px;
379
+ padding: 2px;
380
+ }
381
+ .paris_content_RTtwv {
382
+ background-color: var(--pte-new-colors-overlayMedium);
383
+ border-radius: 6px;
384
+ width: 100%;
385
+ padding: 8px 10px;
386
+ color: var(--pte-new-colors-contentSecondary);
387
+ display: flex;
388
+ flex-direction: row;
389
+ justify-content: flex-start;
390
+ align-items: center;
391
+ gap: 8px;
392
+ }
393
+ .paris_content_RTtwv .paris_icon_bhM1o {
394
+ width: 16px;
395
+ height: 16px;
396
+ display: flex;
397
+ flex-direction: row;
398
+ justify-content: flex-start;
399
+ align-items: center;
400
+ }
401
+ .paris_content_RTtwv .paris_icon_bhM1o svg {
402
+ width: 13px !important;
403
+ height: 13px !important;
404
+ }
405
+ .paris_content_RTtwv.paris_warning_cREVK {
406
+ background-color: var(--pte-new-colors-backgroundWarning);
407
+ color: var(--pte-new-colors-contentWarning);
408
+ }
409
+ .paris_content_RTtwv.paris_negative_6a2uj {
410
+ background-color: var(--pte-new-colors-overlayRed);
411
+ color: var(--pte-new-colors-contentNegative);
412
+ }
413
+ .paris_content_RTtwv.paris_positive_zcDqE .paris_icon_bhM1o {
414
+ color: var(--pte-new-colors-contentPositive);
415
+ }
416
+ .paris_container_PRpOa {
417
+ user-select: var(--pte-utils-defaultUserSelect);
418
+ width: auto;
419
+ }
420
+
421
+ .paris_raised_o1LwV {
422
+ border-radius: var(--pte-borders-radius-rounded);
423
+ background-color: var(--pte-new-colors-surfacePrimary);
424
+ box-shadow: var(--pte-new-lighting-subtlePopup);
425
+ border: 1px solid var(--pte-new-colors-surfacePrimary);
426
+ }
427
+ .paris_raised_o1LwV.paris_pending_VDHaM {
428
+ border: 1px dashed var(--pte-new-colors-borderMedium);
429
+ background-color: var(--pte-new-colors-surfaceSecondary);
430
+ }
431
+
432
+ .paris_surface_qR0mA {
433
+ border-radius: var(--pte-new-borders-radius-roundedMedium);
434
+ border: 1px solid var(--pte-new-colors-borderMedium);
435
+ background-color: var(--pte-new-colors-overlaySubtle);
436
+ }
437
+ .paris_surface_qR0mA.paris_pending_VDHaM {
438
+ border: 1px dashed var(--pte-new-colors-borderMedium);
439
+ background-color: transparent;
440
+ }
441
+
442
+ .paris_flat_dBy0o {
443
+ border-radius: var(--pte-new-borders-radius-roundedMedium);
444
+ border: 1px solid var(--pte-new-colors-borderStrong);
445
+ background: var(--pte-new-colors-overlayWhiteSubtle);
446
+ }
447
+ .paris_flat_dBy0o.paris_pending_VDHaM {
448
+ border: 1px dashed var(--pte-new-colors-borderStrong);
449
+ }
450
+
451
+ .paris_text_jAfV8 {
452
+ padding: 10px 12px;
453
+ color: var(--pte-new-colors-contentPrimary);
454
+ }
455
+ .paris_container_yNfv5 {
456
+ user-select: var(--pte-utils-defaultUserSelect);
457
+ width: auto;
458
+ }
459
+
460
+ .paris_card_ORTWc {
461
+ padding: 10px 12px;
462
+ transition: var(--pte-animations-interaction);
463
+ width: 100%;
464
+ display: flex;
465
+ justify-content: flex-start;
466
+ align-items: center;
467
+ }
468
+ .paris_card_ORTWc[aria-disabled=true] {
469
+ pointer-events: none;
470
+ }
471
+ .paris_card_ORTWc[aria-disabled=true].paris_text_JEY3p {
472
+ color: var(--pte-new-colors-contentDisabled);
473
+ }
474
+
475
+ .paris_raised_GtoCs {
476
+ border-radius: var(--pte-borders-radius-rounded);
477
+ background-color: var(--pte-new-colors-surfacePrimary);
478
+ box-shadow: var(--pte-new-lighting-subtlePopup);
479
+ border: 1px solid var(--pte-new-colors-surfacePrimary);
480
+ }
481
+ .paris_raised_GtoCs:hover {
482
+ background-color: var(--pte-new-colors-overlayStrong);
483
+ cursor: default;
484
+ }
485
+ .paris_raised_GtoCs[aria-disabled=false]:active {
486
+ background-color: var(--pte-new-colors-overlayMedium);
487
+ transform: scale(0.996);
488
+ }
489
+ .paris_raised_GtoCs.paris_pending_EQ66S {
490
+ border: 1px dashed var(--pte-new-colors-borderMedium);
491
+ background-color: var(--pte-new-colors-surfaceSecondary);
492
+ }
493
+
494
+ .paris_surface_I-11f {
495
+ border-radius: var(--pte-new-borders-radius-roundedMedium);
496
+ border: 1px solid var(--pte-new-colors-borderMedium);
497
+ background-color: var(--pte-new-colors-overlaySubtle);
498
+ }
499
+ .paris_surface_I-11f:hover {
500
+ background-color: var(--pte-new-colors-overlayStrong);
501
+ cursor: default;
502
+ }
503
+ .paris_surface_I-11f[aria-disabled=false]:active {
504
+ background-color: var(--pte-new-colors-overlayMedium);
505
+ transform: scale(0.996);
506
+ }
507
+ .paris_surface_I-11f.paris_pending_EQ66S {
508
+ border: 1px dashed var(--pte-new-colors-borderMedium);
509
+ background-color: transparent;
510
+ }
511
+
512
+ .paris_flat_5RSE5 {
513
+ border-radius: var(--pte-new-borders-radius-roundedMedium);
514
+ border: 1px solid var(--pte-new-colors-borderStrong);
515
+ background: var(--pte-new-colors-overlayWhiteSubtle);
516
+ }
517
+ .paris_flat_5RSE5:hover {
518
+ background-color: var(--pte-new-colors-overlayStrong);
519
+ cursor: default;
520
+ }
521
+ .paris_flat_5RSE5[aria-disabled=false]:active {
522
+ background-color: var(--pte-new-colors-overlayMedium);
523
+ transform: scale(0.996);
524
+ }
525
+ .paris_flat_5RSE5.paris_pending_EQ66S {
526
+ border: 1px dashed var(--pte-new-colors-borderStrong);
527
+ }
528
+
529
+ .paris_text_JEY3p {
530
+ color: var(--pte-new-colors-contentPrimary);
531
+ }
532
+ .paris_container_hJlaN {
533
+ display: flex;
534
+ flex-direction: row;
535
+ align-items: center;
536
+ justify-content: flex-start;
537
+ gap: 12px;
538
+ user-select: var(--pte-utils-defaultUserSelect);
539
+ cursor: default;
540
+ }
541
+ .paris_containerbutton_H-e8h {
542
+ all: unset;
543
+ }
544
+ .paris_container_hJlaN.paris_disabled_R5-D0 {
545
+ color: var(--pte-new-colors-contentDisabled);
546
+ pointer-events: none;
547
+ }
548
+
549
+ .paris_root_w6zlF.paris_default_qtbVz {
550
+ background-color: transparent;
551
+ width: 14px;
552
+ height: 14px;
553
+ display: flex;
554
+ align-items: center;
555
+ justify-content: center;
556
+ flex-shrink: 0;
557
+ border: 2px solid var(--pte-new-colors-contentTertiary);
558
+ border-radius: var(--pte-borders-radius-rectangle);
559
+ }
560
+ .paris_root_w6zlF.paris_default_qtbVz:focus-visible {
561
+ outline: 1px solid var(--pte-new-colors-borderUltrastrong);
562
+ }
563
+ .paris_root_w6zlF.paris_default_qtbVz {
564
+ position: relative;
565
+ }
566
+ .paris_root_w6zlF.paris_default_qtbVz:after {
567
+ content: "";
568
+ width: 100%;
569
+ height: 100%;
570
+ position: absolute;
571
+ background-color: transparent;
572
+ transition: var(--pte-animations-interaction);
573
+ transition-delay: 50ms;
574
+ }
575
+ .paris_root_w6zlF.paris_default_qtbVz[data-state=checked]:after, .paris_root_w6zlF.paris_default_qtbVz[data-state=indeterminate]:after {
576
+ opacity: 0;
577
+ }
578
+ .paris_root_w6zlF.paris_default_qtbVz[data-disabled=true] {
579
+ border-color: var(--pte-new-colors-contentDisabled);
580
+ }
581
+ .paris_root_w6zlF.paris_default_qtbVz span {
582
+ transition: var(--pte-animations-interaction);
583
+ }
584
+ .paris_root_w6zlF.paris_surface_8yt4c {
585
+ width: 100%;
586
+ padding: 6px 10px;
587
+ color: var(--pte-new-colors-contentSecondary);
588
+ display: flex;
589
+ align-items: center;
590
+ justify-content: space-between;
591
+ transition: var(--pte-animations-interaction);
592
+ }
593
+ .paris_root_w6zlF.paris_surface_8yt4c:focus-visible {
594
+ outline: 1px solid var(--pte-new-colors-borderUltrastrong);
595
+ }
596
+ .paris_root_w6zlF.paris_surface_8yt4c[data-state=checked], .paris_root_w6zlF.paris_surface_8yt4c[data-state=indeterminate] {
597
+ background-color: var(--pte-new-colors-overlayMedium);
598
+ color: var(--pte-new-colors-contentPrimary);
599
+ }
600
+ .paris_root_w6zlF.paris_surface_8yt4c[data-disabled=true] {
601
+ color: var(--pte-new-colors-contentDisabled);
602
+ }
603
+ .paris_root_w6zlF.paris_surface_8yt4c:hover {
604
+ background-color: var(--pte-new-colors-overlayStrong);
605
+ }
606
+ .paris_root_w6zlF.paris_panel_UJPWZ {
607
+ width: 100%;
608
+ padding: 8px 10px 8px 8px;
609
+ color: var(--pte-new-colors-contentSecondary);
610
+ display: flex;
611
+ align-items: center;
612
+ justify-content: space-between;
613
+ transition: var(--pte-animations-interaction);
614
+ }
615
+ .paris_root_w6zlF.paris_panel_UJPWZ:focus-visible {
616
+ outline: 1px solid var(--pte-new-colors-borderUltrastrong);
617
+ }
618
+ .paris_root_w6zlF.paris_panel_UJPWZ[data-state=checked], .paris_root_w6zlF.paris_panel_UJPWZ[data-state=indeterminate] {
619
+ color: var(--pte-new-colors-contentPrimary);
620
+ }
621
+ .paris_root_w6zlF.paris_panel_UJPWZ[data-disabled=true] {
622
+ color: var(--pte-new-colors-contentDisabled);
623
+ }
624
+ .paris_root_w6zlF.paris_panel_UJPWZ .paris_box_YbOZP {
625
+ width: 13px;
626
+ height: 13px;
627
+ border: 2px solid var(--pte-new-colors-contentTertiary);
628
+ margin-right: 0.5px;
629
+ }
630
+ .paris_root_w6zlF.paris_panel_UJPWZ[data-state=checked] .paris_box_YbOZP, .paris_root_w6zlF.paris_panel_UJPWZ[data-state=indeterminate] .paris_box_YbOZP {
631
+ display: none;
632
+ }
633
+
634
+ .paris_indicator_GKuuB {
635
+ cursor: default;
636
+ }
637
+
638
+ .paris_checkSvg_kcNyp {
639
+ fill: var(--pte-new-colors-contentPrimary);
640
+ }
641
+ .paris_checkSvg_kcNyp[data-disabled=true] {
642
+ fill: var(--pte-new-colors-contentDisabled);
643
+ }
644
+
645
+ .paris_checkIcon_Mn7AW {
646
+ color: var(--pte-new-colors-contentPrimary);
647
+ }
648
+ .paris_checkIcon_Mn7AW[data-disabled=true] {
649
+ color: var(--pte-new-colors-contentDisabled);
650
+ }
651
+
652
+ .paris_switchContainer_e6qHl {
653
+ width: 24px;
654
+ height: 14px;
655
+ border-radius: 100px;
656
+ display: flex;
657
+ align-items: center;
658
+ justify-content: center;
659
+ background-color: var(--pte-new-colors-contentTertiary);
660
+ }
661
+ .paris_switchContainer_e6qHl[data-checked], .paris_switchContainer_e6qHl[data-state=indeterminate] {
662
+ background-color: var(--pte-new-colors-contentPrimary);
663
+ }
664
+ .paris_switchContainer_e6qHl[data-disabled=true] {
665
+ background-color: var(--pte-new-colors-contentInverseSecondary);
666
+ }
667
+ .paris_switchContainer_e6qHl[data-disabled=true][data-checked], .paris_switchContainer_e6qHl[data-disabled=true][data-state=indeterminate] {
668
+ background-color: var(--pte-new-colors-contentInverseTertiary);
669
+ }
670
+ .paris_switchContainer_e6qHl:hover {
671
+ background-color: var(--pte-new-colors-contentSecondary);
672
+ }
673
+
674
+ .paris_knob_u7dfK {
675
+ width: 10px;
676
+ height: 10px;
677
+ display: inline-block;
678
+ border-radius: 100%;
679
+ background-color: var(--pte-new-colors-contentInversePrimary);
680
+ transform: translateX(-5px);
681
+ transition: transform var(--pte-animations-interaction);
682
+ }
683
+
684
+ .paris_knobChecked_xEO8P {
685
+ transform: translateX(5px);
686
+ }
687
+ .paris_container_IcGkk {
688
+ display: flex;
689
+ align-items: center;
690
+ gap: 4px;
691
+ padding: 8px 0;
692
+ }
693
+
694
+ .paris_loading_qeyK6 {
695
+ position: relative;
696
+ overflow: hidden;
697
+ pointer-events: none;
698
+ }
699
+ .paris_loading_qeyK6::after {
700
+ content: "";
701
+ position: absolute;
702
+ inset: 0;
703
+ pointer-events: none;
704
+ border-radius: 4px;
705
+ background: linear-gradient(100deg, transparent 30%, rgba(255, 255, 255, 0.7) 50%, transparent 70%);
706
+ transform: translateX(130%);
707
+ animation: paris_codeGlare_13XXQ 1.3s ease-in-out 0.45s infinite;
708
+ }
709
+
710
+ @keyframes paris_codeGlare_13XXQ {
711
+ to {
712
+ transform: translateX(-130%);
713
+ }
714
+ }
715
+ .paris_segment_lMDZE {
716
+ box-sizing: border-box;
717
+ width: 30px;
718
+ height: 34px;
719
+ padding: 6.5px 2px;
720
+ border: 1px solid transparent;
721
+ border-radius: 4px;
722
+ background-color: var(--pte-new-colors-inputFill);
723
+ color: var(--pte-new-colors-contentPrimary);
724
+ text-align: center;
725
+ outline: none;
726
+ caret-color: var(--pte-new-colors-contentPrimary);
727
+ font-size: var(--pte-typography-styles-paragraphSmall-fontSize);
728
+ font-style: var(--pte-typography-styles-paragraphSmall-fontStyle);
729
+ font-weight: var(--pte-typography-styles-paragraphSmall-fontWeight);
730
+ letter-spacing: var(--pte-typography-styles-paragraphSmall-letterSpacing);
731
+ line-height: var(--pte-typography-styles-paragraphSmall-lineHeight);
732
+ transition: var(--pte-animations-interaction);
733
+ }
734
+ .paris_segment_lMDZE:focus {
735
+ background-color: var(--pte-new-colors-inputFillFocus);
736
+ border-color: var(--pte-new-colors-inputBorderFocus);
737
+ }
738
+ .paris_segment_lMDZE:disabled {
739
+ background-color: var(--pte-new-colors-inputFillDisabled);
740
+ color: var(--pte-new-colors-contentDisabled);
741
+ cursor: default;
742
+ pointer-events: none;
743
+ }
744
+ .paris_segment_lMDZE.paris_error_Yls6v {
745
+ background-color: var(--pte-new-colors-inputFillNegative);
746
+ border-color: var(--pte-new-colors-inputBorderNegative);
747
+ color: var(--pte-new-colors-contentNegative);
748
+ caret-color: var(--pte-new-colors-contentNegative);
749
+ }
750
+ .paris_root_2Y6y9 {
751
+ position: relative;
752
+ z-index: var(--pte-new-layers-overlay);
753
+ user-select: var(--pte-utils-defaultUserSelect);
754
+ }
755
+
756
+ .paris_overlay_YZZ8Z {
757
+ position: fixed;
758
+ inset: 0;
759
+ width: 100%;
760
+ height: 100%;
761
+ transition: var(--pte-animations-duration-normal) var(--pte-animations-timing-easeInOut);
762
+ }
763
+ .paris_overlay_YZZ8Z.paris_overlayBlur_8Wx1- {
764
+ backdrop-filter: blur(2px);
765
+ background-color: var(--pte-new-colors-overlayPageBackground);
766
+ will-change: backdrop-filter, opacity;
767
+ }
768
+ .paris_overlay_YZZ8Z.paris_overlayGrey_xDbBD {
769
+ background-color: var(--pte-new-colors-overlayPageBackground);
770
+ will-change: opacity;
771
+ }
772
+
773
+ .paris_open_L0Q1N {
774
+ transition-delay: 0ms;
775
+ opacity: 1;
776
+ }
777
+
778
+ .paris_overlayBlurContainer_eQhV7 .paris_enterFrom_uinPO {
779
+ backdrop-filter: blur(0);
780
+ opacity: 0;
781
+ }
782
+ .paris_overlayBlurContainer_eQhV7 .paris_enterTo_4y08K {
783
+ backdrop-filter: blur(2px);
784
+ opacity: 1;
785
+ }
786
+ .paris_overlayBlurContainer_eQhV7 .paris_leave_VEk0R {
787
+ transition-delay: var(--pte-animations-duration-fast);
788
+ }
789
+ .paris_overlayBlurContainer_eQhV7 .paris_leaveFrom_KP8XI {
790
+ backdrop-filter: blur(2px);
791
+ opacity: 1;
792
+ }
793
+ .paris_overlayBlurContainer_eQhV7 .paris_leaveTo_gIUsJ {
794
+ backdrop-filter: blur(0);
795
+ opacity: 0;
796
+ }
797
+
798
+ .paris_overlayGreyContainer_21N23 .paris_enterFrom_uinPO {
799
+ opacity: 0;
800
+ }
801
+ .paris_overlayGreyContainer_21N23 .paris_enterTo_4y08K {
802
+ opacity: 1;
803
+ }
804
+ .paris_overlayGreyContainer_21N23 .paris_leave_VEk0R {
805
+ transition-delay: var(--pte-animations-duration-fast);
806
+ }
807
+ .paris_overlayGreyContainer_21N23 .paris_leaveFrom_KP8XI {
808
+ opacity: 1;
809
+ }
810
+ .paris_overlayGreyContainer_21N23 .paris_leaveTo_gIUsJ {
811
+ opacity: 0;
812
+ }
813
+
814
+ .paris_panelContainer_CKiy4 {
815
+ position: fixed;
816
+ inset: 0;
817
+ width: 100%;
818
+ height: 100dvh;
819
+ padding: 16px;
820
+ overflow-y: auto;
821
+ min-height: 100dvh;
822
+ display: flex;
823
+ align-items: center;
824
+ justify-content: center;
825
+ will-change: transform, filter;
826
+ }
827
+ .paris_panelContainer_CKiy4 .paris_enter_imXCu {
828
+ transition-delay: var(--pte-animations-duration-fast);
829
+ }
830
+ .paris_panelContainer_CKiy4 .paris_enterFrom_uinPO {
831
+ transform: translateY(4px) scale(0.96);
832
+ filter: blur(2px);
833
+ }
834
+ .paris_panelContainer_CKiy4 .paris_enterTo_4y08K {
835
+ transform: translateY(0) scale(1);
836
+ filter: blur(0);
837
+ }
838
+ .paris_panelContainer_CKiy4 .paris_leave_VEk0R {
839
+ transition-delay: 0ms;
840
+ }
841
+ .paris_panelContainer_CKiy4 .paris_leaveFrom_KP8XI {
842
+ transform: translateY(0) scale(1);
843
+ filter: blur(0);
844
+ }
845
+ .paris_panelContainer_CKiy4 .paris_leaveTo_gIUsJ {
846
+ transform: translateY(2px) scale(0.96);
847
+ filter: blur(2px);
848
+ }
849
+
850
+ .paris_panel_qrbYT {
851
+ position: relative;
852
+ z-index: var(--pte-new-layers-overlay);
853
+ width: 100%;
854
+ margin: auto;
855
+ padding: 16px;
856
+ display: flex;
857
+ flex-direction: column;
858
+ align-items: stretch;
859
+ justify-content: flex-start;
860
+ gap: 16px;
861
+ }
862
+
863
+ .paris_simple_pEAel {
864
+ border-radius: var(--pte-borders-radius-rounded);
865
+ background: var(--pte-new-colors-surfacePrimary);
866
+ border: var(--pte-new-borders-dropdown-border);
867
+ outline: none;
868
+ box-shadow: var(--pte-new-lighting-deepPopup);
869
+ }
870
+
871
+ .paris_glass_kuYat {
872
+ border-radius: var(--pte-borders-radius-roundedXL);
873
+ background: var(--pte-new-surfaces-dialog-background);
874
+ border: var(--pte-new-surfaces-dialog-border);
875
+ backdrop-filter: var(--pte-new-surfaces-dialog-backdropFilter);
876
+ outline: var(--pte-new-surfaces-dialog-outline);
877
+ box-shadow: var(--pte-new-lighting-shallowPopup);
878
+ }
879
+
880
+ .paris_w-compact_IGoqa {
881
+ max-width: min(360px, 100%);
882
+ }
883
+
884
+ .paris_w-default_iuSiD {
885
+ max-width: min(480px, 100%);
886
+ }
887
+
888
+ .paris_w-large_ewhcd {
889
+ max-width: min(640px, 100%);
890
+ }
891
+
892
+ .paris_w-full_wcan6 {
893
+ max-width: 100%;
894
+ }
895
+
896
+ .paris_h-full_VX8V8 {
897
+ min-height: 100%;
898
+ }
899
+
900
+ .paris_header_m-3NV {
901
+ display: flex;
902
+ align-items: flex-start;
903
+ justify-content: space-between;
904
+ }
905
+
906
+ .paris_closeButton_iH0wO {
907
+ position: absolute;
908
+ right: 16px;
909
+ top: 12px;
910
+ }
911
+
912
+ .paris_enter_imXCu {
913
+ transition: var(--pte-animations-duration-normal) var(--pte-animations-timing-easeOut);
914
+ }
915
+
916
+ .paris_enterFrom_uinPO {
917
+ opacity: 0;
918
+ }
919
+
920
+ .paris_enterTo_4y08K {
921
+ opacity: 1;
922
+ }
923
+
924
+ .paris_leave_VEk0R {
925
+ transition: var(--pte-animations-duration-normal) var(--pte-animations-timing-easeIn);
926
+ }
927
+
928
+ .paris_leaveFrom_KP8XI {
929
+ opacity: 1;
930
+ }
931
+
932
+ .paris_leaveTo_gIUsJ {
933
+ opacity: 0;
934
+ }
935
+ .paris_root_wVedw {
936
+ position: fixed;
937
+ inset: 0;
938
+ overflow: hidden;
939
+ z-index: var(--pte-new-layers-overlay);
940
+ user-select: var(--pte-utils-defaultUserSelect);
941
+ }
942
+
943
+ .paris_overlay_WN57R {
944
+ position: absolute;
945
+ inset: 0;
946
+ }
947
+ .paris_overlay_WN57R.paris_overlayBlur_W12Sf {
948
+ backdrop-filter: blur(2px);
949
+ background-color: var(--pte-new-colors-overlayPageBackground);
950
+ will-change: backdrop-filter, opacity;
951
+ }
952
+ .paris_overlay_WN57R.paris_overlayGrey_q3bTn {
953
+ background-color: var(--pte-new-colors-overlayPageBackground);
954
+ will-change: opacity;
955
+ }
956
+
957
+ .paris_overlayBlurContainer_cSgvI .paris_enterFrom_zr3n4 {
958
+ backdrop-filter: blur(0);
959
+ opacity: 0;
960
+ }
961
+ .paris_overlayBlurContainer_cSgvI .paris_enterTo_GrF2Z {
962
+ backdrop-filter: blur(2px);
963
+ opacity: 1;
964
+ }
965
+ .paris_overlayBlurContainer_cSgvI .paris_leave_w8FN3 {
966
+ transition-delay: var(--pte-animations-duration-fast);
967
+ }
968
+ .paris_overlayBlurContainer_cSgvI .paris_leaveFrom_YtyIZ {
969
+ backdrop-filter: blur(2px);
970
+ opacity: 1;
971
+ }
972
+ .paris_overlayBlurContainer_cSgvI .paris_leaveTo_9QQtj {
973
+ backdrop-filter: blur(0);
974
+ opacity: 0;
975
+ }
976
+
977
+ .paris_overlayGreyContainer_CXgCA .paris_enterFrom_zr3n4 {
978
+ opacity: 0;
979
+ }
980
+ .paris_overlayGreyContainer_CXgCA .paris_enterTo_GrF2Z {
981
+ opacity: 1;
982
+ }
983
+ .paris_overlayGreyContainer_CXgCA .paris_leave_w8FN3 {
984
+ transition-delay: var(--pte-animations-duration-fast);
985
+ }
986
+ .paris_overlayGreyContainer_CXgCA .paris_leaveFrom_YtyIZ {
987
+ opacity: 1;
988
+ }
989
+ .paris_overlayGreyContainer_CXgCA .paris_leaveTo_9QQtj {
990
+ opacity: 0;
991
+ }
992
+
993
+ .paris_panelContainer_APxfS {
994
+ position: fixed;
995
+ justify-self: flex-end;
996
+ z-index: var(--pte-new-layers-overlay);
997
+ }
998
+ .paris_panelContainer_APxfS .paris_enter_WSNrL {
999
+ transition: var(--pte-animations-duration-relaxed) var(--pte-animations-timing-easeOutQuad);
1000
+ transition-delay: var(--pte-animations-duration-fast);
1001
+ }
1002
+ .paris_panelContainer_APxfS .paris_leave_w8FN3 {
1003
+ transition: var(--pte-animations-duration-relaxed) var(--pte-animations-timing-easeInQuad);
1004
+ }
1005
+ .paris_panelContainer_APxfS.paris_from-right_2gsEu {
1006
+ right: 0;
1007
+ }
1008
+ .paris_panelContainer_APxfS.paris_from-right_2gsEu.paris_size-content_-2Lgk, .paris_panelContainer_APxfS.paris_from-right_2gsEu.paris_size-fullWithMargin_fcu9t {
1009
+ padding-left: 30px;
1010
+ }
1011
+ @media (min-width: 371px) {
1012
+ .paris_panelContainer_APxfS.paris_from-right_2gsEu.paris_size-default_1Q1At {
1013
+ padding-left: 30px;
1014
+ }
1015
+ }
1016
+ @media (min-width: 481px) {
1017
+ .paris_panelContainer_APxfS.paris_from-right_2gsEu.paris_size-fullOnMobile_G97hn {
1018
+ padding-left: 30px;
1019
+ }
1020
+ }
1021
+ .paris_panelContainer_APxfS.paris_from-right_2gsEu .paris_enterFrom_zr3n4 {
1022
+ transform: translateX(30%);
1023
+ }
1024
+ .paris_panelContainer_APxfS.paris_from-right_2gsEu .paris_enterTo_GrF2Z, .paris_panelContainer_APxfS.paris_from-right_2gsEu .paris_leaveFrom_YtyIZ {
1025
+ transform: translateX(0);
1026
+ }
1027
+ .paris_panelContainer_APxfS.paris_from-right_2gsEu .paris_leaveTo_9QQtj {
1028
+ transform: translateX(20%);
1029
+ }
1030
+ .paris_panelContainer_APxfS.paris_from-left_1gDXg {
1031
+ left: 0;
1032
+ }
1033
+ .paris_panelContainer_APxfS.paris_from-left_1gDXg.paris_size-content_-2Lgk, .paris_panelContainer_APxfS.paris_from-left_1gDXg.paris_size-fullWithMargin_fcu9t {
1034
+ padding-right: 30px;
1035
+ }
1036
+ @media (min-width: 371px) {
1037
+ .paris_panelContainer_APxfS.paris_from-left_1gDXg.paris_size-default_1Q1At {
1038
+ padding-right: 30px;
1039
+ }
1040
+ }
1041
+ @media (min-width: 481px) {
1042
+ .paris_panelContainer_APxfS.paris_from-left_1gDXg.paris_size-fullOnMobile_G97hn {
1043
+ padding-right: 30px;
1044
+ }
1045
+ }
1046
+ .paris_panelContainer_APxfS.paris_from-left_1gDXg .paris_enterFrom_zr3n4 {
1047
+ transform: translateX(-30%);
1048
+ }
1049
+ .paris_panelContainer_APxfS.paris_from-left_1gDXg .paris_enterTo_GrF2Z, .paris_panelContainer_APxfS.paris_from-left_1gDXg .paris_leaveFrom_YtyIZ {
1050
+ transform: translateX(0);
1051
+ }
1052
+ .paris_panelContainer_APxfS.paris_from-left_1gDXg .paris_leaveTo_9QQtj {
1053
+ transform: translateX(-20%);
1054
+ }
1055
+ .paris_panelContainer_APxfS.paris_from-left_1gDXg, .paris_panelContainer_APxfS.paris_from-right_2gsEu {
1056
+ height: 100dvh;
1057
+ top: 0;
1058
+ bottom: 0;
1059
+ }
1060
+ @media (min-width: 371px) {
1061
+ .paris_panelContainer_APxfS.paris_from-left_1gDXg.paris_size-default_1Q1At, .paris_panelContainer_APxfS.paris_from-right_2gsEu.paris_size-default_1Q1At {
1062
+ width: min(100vw, 390px);
1063
+ }
1064
+ }
1065
+ @media (max-width: 370px) {
1066
+ .paris_panelContainer_APxfS.paris_from-left_1gDXg.paris_size-default_1Q1At, .paris_panelContainer_APxfS.paris_from-right_2gsEu.paris_size-default_1Q1At {
1067
+ width: 100vw;
1068
+ }
1069
+ }
1070
+ @media (min-width: 481px) {
1071
+ .paris_panelContainer_APxfS.paris_from-left_1gDXg.paris_size-fullOnMobile_G97hn, .paris_panelContainer_APxfS.paris_from-right_2gsEu.paris_size-fullOnMobile_G97hn {
1072
+ width: min(100vw, 390px);
1073
+ }
1074
+ }
1075
+ @media (max-width: 480px) {
1076
+ .paris_panelContainer_APxfS.paris_from-left_1gDXg.paris_size-fullOnMobile_G97hn, .paris_panelContainer_APxfS.paris_from-right_2gsEu.paris_size-fullOnMobile_G97hn {
1077
+ width: 100vw;
1078
+ }
1079
+ }
1080
+ .paris_panelContainer_APxfS.paris_from-left_1gDXg.paris_size-content_-2Lgk, .paris_panelContainer_APxfS.paris_from-right_2gsEu.paris_size-content_-2Lgk {
1081
+ width: auto;
1082
+ }
1083
+ .paris_panelContainer_APxfS.paris_from-left_1gDXg.paris_size-full_Vltmt, .paris_panelContainer_APxfS.paris_from-left_1gDXg.paris_size-fullWithMargin_fcu9t, .paris_panelContainer_APxfS.paris_from-right_2gsEu.paris_size-full_Vltmt, .paris_panelContainer_APxfS.paris_from-right_2gsEu.paris_size-fullWithMargin_fcu9t {
1084
+ width: 100vw;
1085
+ }
1086
+ .paris_panelContainer_APxfS.paris_from-top_-Vc82 {
1087
+ top: 0;
1088
+ }
1089
+ .paris_panelContainer_APxfS.paris_from-top_-Vc82.paris_size-content_-2Lgk, .paris_panelContainer_APxfS.paris_from-top_-Vc82.paris_size-fullWithMargin_fcu9t, .paris_panelContainer_APxfS.paris_from-top_-Vc82.paris_size-default_1Q1At {
1090
+ padding-bottom: 30px;
1091
+ }
1092
+ @media (min-width: 481px) {
1093
+ .paris_panelContainer_APxfS.paris_from-top_-Vc82.paris_size-fullOnMobile_G97hn {
1094
+ padding-bottom: 30px;
1095
+ }
1096
+ }
1097
+ .paris_panelContainer_APxfS.paris_from-top_-Vc82 .paris_enterFrom_zr3n4 {
1098
+ transform: translateY(-100%);
1099
+ }
1100
+ .paris_panelContainer_APxfS.paris_from-top_-Vc82 .paris_enterTo_GrF2Z, .paris_panelContainer_APxfS.paris_from-top_-Vc82 .paris_leaveFrom_YtyIZ {
1101
+ transform: translateY(0);
1102
+ }
1103
+ .paris_panelContainer_APxfS.paris_from-top_-Vc82 .paris_leaveTo_9QQtj {
1104
+ transform: translateY(-60%);
1105
+ }
1106
+ .paris_panelContainer_APxfS.paris_from-bottom_G1MLu {
1107
+ bottom: 0;
1108
+ }
1109
+ .paris_panelContainer_APxfS.paris_from-bottom_G1MLu.paris_size-content_-2Lgk, .paris_panelContainer_APxfS.paris_from-bottom_G1MLu.paris_size-fullWithMargin_fcu9t, .paris_panelContainer_APxfS.paris_from-bottom_G1MLu.paris_size-default_1Q1At {
1110
+ padding-top: 30px;
1111
+ }
1112
+ @media (min-width: 481px) {
1113
+ .paris_panelContainer_APxfS.paris_from-bottom_G1MLu.paris_size-fullOnMobile_G97hn {
1114
+ padding-top: 30px;
1115
+ }
1116
+ }
1117
+ .paris_panelContainer_APxfS.paris_from-bottom_G1MLu .paris_enterFrom_zr3n4 {
1118
+ transform: translateY(100%);
1119
+ }
1120
+ .paris_panelContainer_APxfS.paris_from-bottom_G1MLu .paris_enterTo_GrF2Z, .paris_panelContainer_APxfS.paris_from-bottom_G1MLu .paris_leaveFrom_YtyIZ {
1121
+ transform: translateY(0);
1122
+ }
1123
+ .paris_panelContainer_APxfS.paris_from-bottom_G1MLu .paris_leaveTo_9QQtj {
1124
+ transform: translateY(60%);
1125
+ }
1126
+ .paris_panelContainer_APxfS.paris_from-top_-Vc82, .paris_panelContainer_APxfS.paris_from-bottom_G1MLu {
1127
+ width: 100vw;
1128
+ left: 0;
1129
+ right: 0;
1130
+ }
1131
+ .paris_panelContainer_APxfS.paris_from-top_-Vc82.paris_size-default_1Q1At, .paris_panelContainer_APxfS.paris_from-bottom_G1MLu.paris_size-default_1Q1At {
1132
+ height: min(100dvh, 390px);
1133
+ }
1134
+ @media (min-width: 481px) {
1135
+ .paris_panelContainer_APxfS.paris_from-top_-Vc82.paris_size-fullOnMobile_G97hn, .paris_panelContainer_APxfS.paris_from-bottom_G1MLu.paris_size-fullOnMobile_G97hn {
1136
+ height: min(100dvh, 390px);
1137
+ }
1138
+ }
1139
+ @media (max-width: 480px) {
1140
+ .paris_panelContainer_APxfS.paris_from-top_-Vc82.paris_size-fullOnMobile_G97hn, .paris_panelContainer_APxfS.paris_from-bottom_G1MLu.paris_size-fullOnMobile_G97hn {
1141
+ height: 100dvh;
1142
+ }
1143
+ }
1144
+ .paris_panelContainer_APxfS.paris_from-top_-Vc82.paris_size-content_-2Lgk, .paris_panelContainer_APxfS.paris_from-bottom_G1MLu.paris_size-content_-2Lgk {
1145
+ height: auto;
1146
+ }
1147
+ .paris_panelContainer_APxfS.paris_from-top_-Vc82.paris_size-full_Vltmt, .paris_panelContainer_APxfS.paris_from-top_-Vc82.paris_size-fullWithMargin_fcu9t, .paris_panelContainer_APxfS.paris_from-bottom_G1MLu.paris_size-full_Vltmt, .paris_panelContainer_APxfS.paris_from-bottom_G1MLu.paris_size-fullWithMargin_fcu9t {
1148
+ height: 100dvh;
1149
+ }
1150
+
1151
+ .paris_panel_TfIuG {
1152
+ position: relative;
1153
+ height: 100%;
1154
+ padding: 0;
1155
+ background-color: var(--pte-new-colors-surfacePrimary);
1156
+ overflow: auto;
1157
+ display: flex;
1158
+ flex-direction: column;
1159
+ justify-content: flex-start;
1160
+ align-items: stretch;
1161
+ }
1162
+ .paris_panel_TfIuG.paris_enterFrom_zr3n4 {
1163
+ box-shadow: none;
1164
+ }
1165
+ .paris_panel_TfIuG.paris_enterTo_GrF2Z.paris_from-right_2gsEu, .paris_panel_TfIuG.paris_leaveFrom_YtyIZ.paris_from-right_2gsEu {
1166
+ border-left-color: var(--pte-new-borders-dropdown-color);
1167
+ box-shadow: var(--pte-new-lighting-shallowLeft);
1168
+ }
1169
+ .paris_panel_TfIuG.paris_enterTo_GrF2Z.paris_from-left_1gDXg, .paris_panel_TfIuG.paris_leaveFrom_YtyIZ.paris_from-left_1gDXg {
1170
+ border-right-color: var(--pte-new-borders-dropdown-color);
1171
+ box-shadow: var(--pte-new-lighting-shallowRight);
1172
+ }
1173
+ .paris_panel_TfIuG.paris_enterTo_GrF2Z.paris_from-top_-Vc82, .paris_panel_TfIuG.paris_leaveFrom_YtyIZ.paris_from-top_-Vc82 {
1174
+ border-bottom-color: var(--pte-new-borders-dropdown-color);
1175
+ box-shadow: var(--pte-new-lighting-shallowBelow);
1176
+ }
1177
+ .paris_panel_TfIuG.paris_enterTo_GrF2Z.paris_from-bottom_G1MLu, .paris_panel_TfIuG.paris_leaveFrom_YtyIZ.paris_from-bottom_G1MLu {
1178
+ border-top-color: var(--pte-new-borders-dropdown-color);
1179
+ box-shadow: var(--pte-new-lighting-shallowAbove);
1180
+ }
1181
+ .paris_panel_TfIuG.paris_leaveTo_9QQtj {
1182
+ box-shadow: none;
1183
+ }
1184
+
1185
+ .paris_titleTextContainer_vxVpU {
1186
+ display: flex;
1187
+ }
1188
+
1189
+ .paris_titleBar_SMIdo {
1190
+ display: flex;
1191
+ flex-direction: row;
1192
+ justify-content: space-between;
1193
+ align-items: center;
1194
+ border-bottom: 1px solid var(--pte-new-colors-borderMedium);
1195
+ padding: 14px 16px;
1196
+ }
1197
+
1198
+ .paris_titleBarButtons_0oNpU {
1199
+ display: flex;
1200
+ flex-direction: row;
1201
+ align-items: center;
1202
+ gap: 8px;
1203
+ }
1204
+
1205
+ .paris_content_NRQ-q {
1206
+ overflow-y: scroll;
1207
+ height: 100%;
1208
+ }
1209
+
1210
+ .paris_contentChildren_3gvnu {
1211
+ padding: 20px;
1212
+ }
1213
+
1214
+ .paris_paginationButtons_9T8xu {
1215
+ display: flex;
1216
+ flex-direction: row;
1217
+ align-items: center;
1218
+ gap: 8px;
1219
+ }
1220
+ .paris_paginationButtons_9T8xu .paris_navButton_2bjrt {
1221
+ padding: 2px;
1222
+ }
1223
+
1224
+ .paris_titleArea_q2SWc {
1225
+ display: flex;
1226
+ flex-direction: row;
1227
+ align-items: center;
1228
+ gap: 12px;
1229
+ }
1230
+
1231
+ .paris_enter_WSNrL {
1232
+ transition: var(--pte-animations-duration-relaxed) var(--pte-animations-timing-easeInOutExpo);
1233
+ }
1234
+
1235
+ .paris_enterFrom_zr3n4, .paris_enterFromOpacity_ddD5x {
1236
+ opacity: 0;
1237
+ }
1238
+
1239
+ .paris_enterTo_GrF2Z, .paris_enterToOpacity_JKJ7T {
1240
+ opacity: 1;
1241
+ }
1242
+
1243
+ .paris_leave_w8FN3 {
1244
+ transition: var(--pte-animations-duration-relaxed) var(--pte-animations-timing-easeInOutExpo);
1245
+ }
1246
+
1247
+ .paris_leaveFrom_YtyIZ, .paris_leaveFromOpacity_xAfhm {
1248
+ opacity: 1;
1249
+ }
1250
+
1251
+ .paris_leaveTo_9QQtj, .paris_leaveToOpacity_-gHpF {
1252
+ opacity: 0;
1253
+ }
1254
+
1255
+ .paris_paginationEnter_DT9JT {
1256
+ transition: var(--pte-animations-duration-normal) var(--pte-animations-timing-easeInQuad);
1257
+ }
1258
+
1259
+ .paris_paginationLeave_OR93X {
1260
+ transition: var(--pte-animations-duration-normal) var(--pte-animations-timing-easeOutQuad);
1261
+ }
1262
+
1263
+ .paris_pageStack_s7fPJ {
1264
+ display: grid;
1265
+ grid-template-columns: 1fr;
1266
+ min-height: 0;
1267
+ }
1268
+
1269
+ .paris_pageStackClip_DQKZW {
1270
+ overflow: hidden;
1271
+ }
1272
+
1273
+ .paris_pageStackItem_n8m9c {
1274
+ grid-area: 1/1;
1275
+ }
1276
+ .paris_pageStackItem_n8m9c[data-active=false] {
1277
+ pointer-events: none;
1278
+ }
1279
+
1280
+ .paris_progressBar_3-iya {
1281
+ position: relative;
1282
+ width: 100%;
1283
+ height: 2px;
1284
+ background: var(--pte-new-colors-borderMedium);
1285
+ }
1286
+
1287
+ .paris_progressBarFill_QAxRP {
1288
+ position: absolute;
1289
+ top: 0;
1290
+ left: 0;
1291
+ height: 100%;
1292
+ background: var(--pte-new-colors-contentPrimary);
1293
+ transition: width var(--pte-animations-duration-normal) var(--pte-animations-timing-easeInQuad);
1294
+ }
1295
+
1296
+ .paris_bottomPanel_g3-TO {
1297
+ position: absolute;
1298
+ bottom: 0;
1299
+ width: 100%;
1300
+ }
1301
+
1302
+ .paris_bottomPanelSlots_aLf1H {
1303
+ display: flex;
1304
+ flex-direction: column;
1305
+ }
1306
+
1307
+ .paris_bottomPanelContent_dfSgU {
1308
+ position: relative;
1309
+ padding: 20px;
1310
+ }
1311
+ .paris_bottomPanelContent_dfSgU.paris_noPadding_fr4a4 {
1312
+ padding: 0;
1313
+ }
1314
+
1315
+ .paris_bottomPanelSlotItem_fEB43 {
1316
+ border-top: 1px solid var(--pte-new-colors-borderStrong);
1317
+ position: relative;
1318
+ padding: 20px;
1319
+ }
1320
+
1321
+ .paris_bottomPanelSpacer_bBinW {
1322
+ opacity: 0;
1323
+ pointer-events: none;
1324
+ }
1325
+
1326
+ .paris_glassBlend_5DeJV {
1327
+ position: absolute;
1328
+ width: 100%;
1329
+ height: 100%;
1330
+ background: var(--pte-new-materials-secondaryThin-backgroundBlend);
1331
+ mix-blend-mode: var(--pte-new-materials-secondaryThin-mixBlendMode);
1332
+ }
1333
+
1334
+ .paris_glassOpacity_flxn1 {
1335
+ position: absolute;
1336
+ width: 100%;
1337
+ height: 100%;
1338
+ background: var(--pte-new-materials-secondaryThin-background);
1339
+ backdrop-filter: var(--pte-new-blurs-strong);
1340
+ }
1341
+ .paris_tooltip_QdB1w {
1342
+ background-color: var(--pte-new-colors-surfacePrimary);
1343
+ border-radius: var(--pte-new-borders-radius-rounded);
1344
+ box-shadow: var(--pte-new-lighting-deepBelow);
1345
+ display: flex;
1346
+ flex-direction: column;
1347
+ justify-content: center;
1348
+ gap: 6px;
1349
+ width: 280px;
1350
+ padding: 12px 14px;
1351
+ color: var(--pte-new-colors-contentTertiary);
1352
+ }
1353
+ .paris_tooltip_QdB1w.paris_medium_7veyJ {
1354
+ width: 240px;
1355
+ }
1356
+
1357
+ .paris_heading_wQIgt {
1358
+ color: var(--pte-new-colors-contentSecondary);
1359
+ display: flex;
1360
+ align-items: center;
1361
+ gap: 8px;
1362
+ }
1363
+ .paris_inputContainer_a8TwY {
1364
+ display: flex;
1365
+ flex-direction: row;
1366
+ align-items: center;
1367
+ gap: 12px;
1368
+ min-height: 34px;
1369
+ background-color: var(--pte-new-colors-inputFill);
1370
+ width: 100%;
1371
+ padding: calc(6px - var(--pte-typography-verticalMetricsAdjust)) 13px 6px;
1372
+ font-size: var(--pte-typography-styles-paragraphSmall-fontSize);
1373
+ font-style: var(--pte-typography-styles-paragraphSmall-fontStyle);
1374
+ font-weight: var(--pte-typography-styles-paragraphSmall-fontWeight);
1375
+ letter-spacing: var(--pte-typography-styles-paragraphSmall-letterSpacing);
1376
+ line-height: var(--pte-typography-styles-paragraphSmall-lineHeight);
1377
+ text-transform: var(--pte-typography-styles-paragraphSmall-textTransform);
1378
+ border-width: 1px;
1379
+ border-style: solid;
1380
+ border-color: var(--pte-new-colors-inputFill);
1381
+ border-radius: var(--pte-borders-radius-rectangle);
1382
+ transition: var(--pte-animations-interaction);
1383
+ }
1384
+ .paris_inputContainer_a8TwY:focus-within {
1385
+ outline: none;
1386
+ border-color: var(--pte-new-colors-inputBorderFocus);
1387
+ background-color: var(--pte-new-colors-inputFillFocus);
1388
+ }
1389
+ .paris_inputContainer_a8TwY[data-status=disabled] {
1390
+ border-color: var(--pte-new-colors-inputFillDisabled);
1391
+ background-color: var(--pte-new-colors-inputFillDisabled);
1392
+ color: var(--pte-new-colors-contentDisabled);
1393
+ pointer-events: none;
1394
+ cursor: default;
1395
+ }
1396
+ .paris_inputContainer_a8TwY[data-status=disabled]:focus-within {
1397
+ border-color: var(--pte-new-colors-inputFillDisabled) !important;
1398
+ }
1399
+ .paris_inputContainer_a8TwY[data-status=error] {
1400
+ border-color: var(--pte-new-colors-inputBorderNegative);
1401
+ background-color: var(--pte-new-colors-inputFillNegative);
1402
+ color: var(--pte-new-colors-contentNegative);
1403
+ }
1404
+ .paris_inputContainer_a8TwY[data-status=error]:focus-within {
1405
+ color: var(--pte-new-colors-contentPrimary);
1406
+ }
1407
+ .paris_inputContainer_a8TwY[data-status=success] {
1408
+ border-color: var(--pte-new-colors-contentPositive);
1409
+ background-color: var(--pte-new-colors-backgroundPositive);
1410
+ color: var(--pte-new-colors-contentPositive);
1411
+ }
1412
+ .paris_inputContainer_a8TwY[data-status=success]:focus-within {
1413
+ color: var(--pte-new-colors-contentPrimary);
1414
+ }
1415
+ .paris_inputContainer_a8TwY input[type=color], .paris_inputContainer_a8TwY input[type=date], .paris_inputContainer_a8TwY input[type=datetime], .paris_inputContainer_a8TwY input[type=datetime-local], .paris_inputContainer_a8TwY input[type=email], .paris_inputContainer_a8TwY input[type=month], .paris_inputContainer_a8TwY input[type=number], .paris_inputContainer_a8TwY input[type=password], .paris_inputContainer_a8TwY input[type=search], .paris_inputContainer_a8TwY input[type=tel], .paris_inputContainer_a8TwY input[type=text], .paris_inputContainer_a8TwY input[type=time], .paris_inputContainer_a8TwY input[type=url], .paris_inputContainer_a8TwY input[type=week], .paris_inputContainer_a8TwY select:focus, .paris_inputContainer_a8TwY textarea {
1416
+ font-size: 16px;
1417
+ transform: scale(0.875);
1418
+ transform-origin: left center;
1419
+ width: 114.2857142857%;
1420
+ }
1421
+ .paris_inputContainer_a8TwY input, .paris_inputContainer_a8TwY textarea {
1422
+ background-color: transparent;
1423
+ padding: 0;
1424
+ margin: 0;
1425
+ border: none;
1426
+ outline: none;
1427
+ }
1428
+ .paris_inputContainer_a8TwY input::placeholder, .paris_inputContainer_a8TwY textarea::placeholder {
1429
+ color: var(--pte-new-colors-contentTertiary);
1430
+ }
1431
+ .paris_inputContainer_a8TwY input[aria-disabled=true], .paris_inputContainer_a8TwY textarea[aria-disabled=true] {
1432
+ color: var(--pte-new-colors-contentDisabled);
1433
+ cursor: default;
1434
+ }
1435
+ .paris_inputContainer_a8TwY input[aria-disabled=true]::placeholder, .paris_inputContainer_a8TwY textarea[aria-disabled=true]::placeholder {
1436
+ color: var(--pte-new-colors-contentDisabled);
1437
+ }
1438
+ .paris_inputContainer_a8TwY input[type=color]::-webkit-color-swatch, .paris_inputContainer_a8TwY textarea[type=color]::-webkit-color-swatch {
1439
+ border: 1px solid var(--pte-new-colors-inputBorderFocus);
1440
+ border-radius: var(--pte-borders-radius-circle);
1441
+ }
1442
+ .paris_inputContainer_a8TwY input[type=color]::-webkit-color-swatch-wrapper, .paris_inputContainer_a8TwY textarea[type=color]::-webkit-color-swatch-wrapper {
1443
+ width: 16px;
1444
+ height: 100%;
1445
+ }
1446
+ .paris_inputContainer_a8TwY input[type=file]::-webkit-file-upload-button, .paris_inputContainer_a8TwY textarea[type=file]::-webkit-file-upload-button {
1447
+ display: none;
1448
+ }
1449
+ .paris_inputContainer_a8TwY input[data-status=disabled], .paris_inputContainer_a8TwY textarea[data-status=disabled] {
1450
+ color: var(--pte-new-colors-contentDisabled);
1451
+ }
1452
+ .paris_inputContainer_a8TwY input[data-status=disabled]::placeholder, .paris_inputContainer_a8TwY textarea[data-status=disabled]::placeholder {
1453
+ color: var(--pte-new-colors-contentDisabled);
1454
+ }
1455
+ .paris_inputContainer_a8TwY input[data-status=error], .paris_inputContainer_a8TwY textarea[data-status=error] {
1456
+ color: var(--pte-new-colors-contentNegative);
1457
+ }
1458
+ .paris_inputContainer_a8TwY input[data-status=error]::placeholder, .paris_inputContainer_a8TwY textarea[data-status=error]::placeholder {
1459
+ color: var(--pte-new-colors-contentNegative);
1460
+ }
1461
+ .paris_inputContainer_a8TwY input[data-status=success], .paris_inputContainer_a8TwY textarea[data-status=success] {
1462
+ color: var(--pte-new-colors-contentPositive);
1463
+ }
1464
+ .paris_inputContainer_a8TwY input[data-status=success]::placeholder, .paris_inputContainer_a8TwY textarea[data-status=success]::placeholder {
1465
+ color: var(--pte-new-colors-contentPositive);
1466
+ }
1467
+
1468
+ .paris_inputScaleWrapper_XVKDd {
1469
+ flex: 1;
1470
+ min-width: 0;
1471
+ overflow: hidden;
1472
+ }
1473
+
1474
+ .paris_enhancer_dWZ5z {
1475
+ display: flex;
1476
+ color: var(--pte-new-colors-contentSecondary);
1477
+ margin-block-start: -0.5px;
1478
+ font-size: var(--pte-typography-styles-paragraphSmall-fontSize);
1479
+ font-style: var(--pte-typography-styles-paragraphSmall-fontStyle);
1480
+ font-weight: var(--pte-typography-styles-paragraphSmall-fontWeight);
1481
+ letter-spacing: var(--pte-typography-styles-paragraphSmall-letterSpacing);
1482
+ line-height: var(--pte-typography-styles-paragraphSmall-lineHeight);
1483
+ text-transform: var(--pte-typography-styles-paragraphSmall-textTransform);
1484
+ }
1485
+ .paris_enhancer_dWZ5z[data-status=disabled] {
1486
+ color: var(--pte-new-colors-contentDisabled);
1487
+ }
1488
+ .paris_enhancer_dWZ5z[data-status=error] {
1489
+ color: var(--pte-new-colors-contentNegative);
1490
+ }
1491
+ .paris_enhancer_dWZ5z[data-status=success] {
1492
+ color: var(--pte-new-colors-contentPositive);
1493
+ }
1494
+
1495
+ .paris_container_4aoux {
1496
+ width: 100%;
1497
+ user-select: var(--pte-utils-defaultUserSelect);
1498
+ cursor: default;
1499
+ display: flex;
1500
+ flex-direction: column;
1501
+ gap: 8px;
1502
+ }
1503
+
1504
+ .paris_labelContainer_23crm {
1505
+ display: flex;
1506
+ flex-direction: column;
1507
+ gap: 2px;
1508
+ align-items: flex-start;
1509
+ justify-content: flex-start;
1510
+ }
1511
+
1512
+ .paris_label_3aOoG.paris_label_3aOoG {
1513
+ color: var(--pte-new-colors-contentPrimary);
1514
+ font-weight: var(--pte-typography-fontWeights-medium);
1515
+ }
1516
+
1517
+ .paris_description_XO-Hx.paris_description_XO-Hx {
1518
+ color: var(--pte-new-colors-contentTertiary);
1519
+ }
1520
+
1521
+ .paris_hidden_NLeJu {
1522
+ display: none;
1523
+ }
1524
+
1525
+ .paris_input_Pjdom::-webkit-calendar-picker-indicator {
1526
+ display: none;
1527
+ }
1528
+ @charset "UTF-8";
1529
+ /* ── Markdown renderer styles ─────────────────────────────────
1530
+ * Uses Paris design tokens (--pte-*) for consistent theming.
1531
+ * All styles are scoped via CSS modules.
1532
+ * ──────────────────────────────────────────────────────────── */
1533
+ .paris_markdown_xr6-T {
1534
+ display: flex;
1535
+ flex-direction: column;
1536
+ gap: 0;
1537
+ width: 100%;
1538
+ line-height: 1.7;
1539
+ color: var(--pte-new-colors-contentPrimary);
1540
+ }
1541
+ .paris_markdown_xr6-T .paris_heading_YY-2- {
1542
+ margin-top: 1.5em;
1543
+ margin-bottom: 0.6em;
1544
+ }
1545
+ .paris_markdown_xr6-T .paris_heading_YY-2-:first-child {
1546
+ margin-top: 0;
1547
+ }
1548
+ .paris_markdown_xr6-T .paris_paragraph_e4anz {
1549
+ margin-bottom: 1em;
1550
+ line-height: 1.7;
1551
+ }
1552
+ .paris_markdown_xr6-T .paris_paragraph_e4anz:last-child {
1553
+ margin-bottom: 0;
1554
+ }
1555
+ .paris_markdown_xr6-T .paris_strikethrough_zLlkK {
1556
+ text-decoration: line-through;
1557
+ text-decoration-color: var(--pte-new-colors-contentTertiary);
1558
+ }
1559
+ .paris_markdown_xr6-T .paris_imageWrapper_k0ksd {
1560
+ display: flex;
1561
+ flex-direction: column;
1562
+ gap: 8px;
1563
+ margin: 1em 0;
1564
+ }
1565
+ .paris_markdown_xr6-T .paris_image_hsdn7 {
1566
+ max-width: 100%;
1567
+ height: auto;
1568
+ border-radius: var(--pte-new-borders-radius-rounded);
1569
+ border: 1px solid var(--pte-new-colors-borderSubtle);
1570
+ }
1571
+ .paris_markdown_xr6-T .paris_blockquote_twJMR {
1572
+ margin: 1em 0;
1573
+ }
1574
+ .paris_markdown_xr6-T .paris_blockquote_twJMR .paris_blockquote_twJMR {
1575
+ margin: 0.5em 0;
1576
+ }
1577
+ .paris_markdown_xr6-T .paris_blockquote_twJMR .paris_paragraph_e4anz {
1578
+ margin-bottom: 0.5em;
1579
+ }
1580
+ .paris_markdown_xr6-T .paris_blockquote_twJMR .paris_paragraph_e4anz:last-child {
1581
+ margin-bottom: 0;
1582
+ }
1583
+ .paris_markdown_xr6-T .paris_hr_cssjj {
1584
+ border: none;
1585
+ border-top: 1px solid var(--pte-new-colors-borderMedium);
1586
+ margin: 1.5em 0;
1587
+ }
1588
+ .paris_markdown_xr6-T .paris_list_IUwC3 {
1589
+ margin: 0.5em 0 1em;
1590
+ padding-left: 1.5em;
1591
+ }
1592
+ .paris_markdown_xr6-T .paris_unorderedList_EUXdX {
1593
+ list-style-type: disc;
1594
+ }
1595
+ .paris_markdown_xr6-T .paris_unorderedList_EUXdX .paris_unorderedList_EUXdX {
1596
+ list-style-type: circle;
1597
+ margin: 0.25em 0;
1598
+ }
1599
+ .paris_markdown_xr6-T .paris_unorderedList_EUXdX .paris_unorderedList_EUXdX .paris_unorderedList_EUXdX {
1600
+ list-style-type: square;
1601
+ }
1602
+ .paris_markdown_xr6-T .paris_orderedList_KIxqm {
1603
+ list-style-type: decimal;
1604
+ }
1605
+ .paris_markdown_xr6-T .paris_orderedList_KIxqm .paris_orderedList_KIxqm {
1606
+ list-style-type: lower-alpha;
1607
+ margin: 0.25em 0;
1608
+ }
1609
+ .paris_markdown_xr6-T .paris_orderedList_KIxqm .paris_orderedList_KIxqm .paris_orderedList_KIxqm {
1610
+ list-style-type: lower-roman;
1611
+ }
1612
+ .paris_markdown_xr6-T .paris_listItem_X7v5t {
1613
+ margin-bottom: 0.25em;
1614
+ line-height: 1.7;
1615
+ font-size: var(--markdown-base-font-size, 14px);
1616
+ }
1617
+ .paris_markdown_xr6-T .paris_listItem_X7v5t .paris_paragraph_e4anz {
1618
+ margin-bottom: 0.25em;
1619
+ }
1620
+ .paris_markdown_xr6-T .paris_taskList_N-HDd {
1621
+ list-style: none;
1622
+ padding-left: 0;
1623
+ }
1624
+ .paris_markdown_xr6-T .paris_taskListItem_m28tp {
1625
+ display: flex;
1626
+ flex-direction: row;
1627
+ align-items: baseline;
1628
+ gap: 8px;
1629
+ }
1630
+ .paris_markdown_xr6-T .paris_taskListItem_m28tp input[type=checkbox] {
1631
+ appearance: none;
1632
+ width: 16px;
1633
+ height: 16px;
1634
+ border: 1.5px solid var(--pte-new-colors-borderStrong);
1635
+ border-radius: 4px;
1636
+ background: transparent;
1637
+ cursor: default;
1638
+ flex-shrink: 0;
1639
+ position: relative;
1640
+ top: 2px;
1641
+ }
1642
+ .paris_markdown_xr6-T .paris_taskListItem_m28tp input[type=checkbox]:checked {
1643
+ background-color: var(--pte-new-colors-contentPrimary);
1644
+ border-color: var(--pte-new-colors-contentPrimary);
1645
+ }
1646
+ .paris_markdown_xr6-T .paris_taskListItem_m28tp input[type=checkbox]:checked::after {
1647
+ content: "✓";
1648
+ position: absolute;
1649
+ top: 50%;
1650
+ left: 50%;
1651
+ transform: translate(-50%, -50%);
1652
+ font-size: 11px;
1653
+ font-weight: 700;
1654
+ color: white;
1655
+ }
1656
+ .paris_markdown_xr6-T .paris_inlineCode_gG0On {
1657
+ font-family: "SF Mono", "Fira Code", "JetBrains Mono", ui-monospace, monospace;
1658
+ font-size: 0.875em;
1659
+ padding: 2px 6px;
1660
+ border-radius: 6px;
1661
+ background-color: var(--pte-new-colors-backgroundSecondary);
1662
+ border: 1px solid var(--pte-new-colors-borderSubtle);
1663
+ color: var(--pte-new-colors-contentPrimary);
1664
+ word-break: break-word;
1665
+ }
1666
+ .paris_markdown_xr6-T .paris_pre_HwKGh {
1667
+ margin: 1em 0;
1668
+ padding: 0;
1669
+ background: transparent;
1670
+ overflow: visible;
1671
+ }
1672
+ .paris_markdown_xr6-T .paris_codeBlockWrapper_LBfF1 {
1673
+ position: relative;
1674
+ border-radius: var(--pte-new-borders-radius-rounded, 8px);
1675
+ background-color: var(--pte-new-colors-backgroundSecondary);
1676
+ border: 1px solid var(--pte-new-colors-borderSubtle);
1677
+ overflow: hidden;
1678
+ }
1679
+ .paris_markdown_xr6-T .paris_codeLanguage_cQ9hT {
1680
+ display: flex;
1681
+ align-items: center;
1682
+ padding: 6px 16px;
1683
+ border-bottom: 1px solid var(--pte-new-colors-borderSubtle);
1684
+ background-color: var(--pte-new-colors-backgroundSecondary);
1685
+ color: var(--pte-new-colors-contentTertiary);
1686
+ text-transform: uppercase;
1687
+ letter-spacing: 0.05em;
1688
+ }
1689
+ .paris_markdown_xr6-T .paris_codeBlock_u6C-6 {
1690
+ display: block;
1691
+ padding: 16px;
1692
+ overflow-x: auto;
1693
+ font-family: "SF Mono", "Fira Code", "JetBrains Mono", ui-monospace, monospace;
1694
+ font-size: 13px;
1695
+ line-height: 1.6;
1696
+ tab-size: 4;
1697
+ white-space: pre;
1698
+ color: var(--pte-new-colors-contentPrimary);
1699
+ }
1700
+ .paris_markdown_xr6-T .paris_codeBlock_u6C-6::-webkit-scrollbar {
1701
+ height: 6px;
1702
+ }
1703
+ .paris_markdown_xr6-T .paris_codeBlock_u6C-6::-webkit-scrollbar-track {
1704
+ background: transparent;
1705
+ }
1706
+ .paris_markdown_xr6-T .paris_codeBlock_u6C-6::-webkit-scrollbar-thumb {
1707
+ background-color: var(--pte-new-colors-borderMedium);
1708
+ border-radius: 3px;
1709
+ }
1710
+ .paris_markdown_xr6-T .paris_tableWrapper_vzFps {
1711
+ margin: 1em 0;
1712
+ overflow-x: auto;
1713
+ border-radius: var(--pte-new-borders-radius-rounded, 8px);
1714
+ border: 1px solid var(--pte-new-colors-borderSubtle);
1715
+ }
1716
+ .paris_markdown_xr6-T .paris_tableWrapper_vzFps::-webkit-scrollbar {
1717
+ height: 6px;
1718
+ }
1719
+ .paris_markdown_xr6-T .paris_tableWrapper_vzFps::-webkit-scrollbar-track {
1720
+ background: transparent;
1721
+ }
1722
+ .paris_markdown_xr6-T .paris_tableWrapper_vzFps::-webkit-scrollbar-thumb {
1723
+ background-color: var(--pte-new-colors-borderMedium);
1724
+ border-radius: 3px;
1725
+ }
1726
+ .paris_markdown_xr6-T .paris_table_37k3F {
1727
+ width: 100%;
1728
+ border-collapse: collapse;
1729
+ font-size: var(--pte-new-typography-paragraphSmall-fontSize, 13px);
1730
+ }
1731
+ .paris_markdown_xr6-T .paris_thead_m-StA {
1732
+ background-color: var(--pte-new-colors-backgroundSecondary);
1733
+ }
1734
+ .paris_markdown_xr6-T .paris_th_m-kiY {
1735
+ padding: 10px 16px;
1736
+ text-align: left;
1737
+ border-bottom: 1px solid var(--pte-new-colors-borderMedium);
1738
+ white-space: nowrap;
1739
+ color: var(--pte-new-colors-contentSecondary);
1740
+ }
1741
+ .paris_markdown_xr6-T .paris_td_aVQuj {
1742
+ padding: 10px 16px;
1743
+ border-bottom: 1px solid var(--pte-new-colors-borderSubtle);
1744
+ color: var(--pte-new-colors-contentPrimary);
1745
+ }
1746
+ .paris_markdown_xr6-T .paris_tr_Jpt03:last-child .paris_td_aVQuj {
1747
+ border-bottom: none;
1748
+ }
1749
+ .paris_markdown_xr6-T .paris_tbody_MJ9In .paris_tr_Jpt03 {
1750
+ transition: background-color 0.15s ease;
1751
+ }
1752
+ .paris_markdown_xr6-T .paris_tbody_MJ9In .paris_tr_Jpt03:hover {
1753
+ background-color: var(--pte-new-colors-backgroundSecondary);
1754
+ }
1755
+ .paris_markdown_xr6-T .paris_accordionBody_d0XM8 {
1756
+ padding: 4px 0;
1757
+ }
1758
+ .paris_markdown_xr6-T .paris_accordionBody_d0XM8 .paris_paragraph_e4anz {
1759
+ margin-bottom: 0.5em;
1760
+ }
1761
+ .paris_markdown_xr6-T .paris_kbd_oFKcD {
1762
+ display: inline-block;
1763
+ font-family: "SF Mono", "Fira Code", "JetBrains Mono", ui-monospace, monospace;
1764
+ font-size: 0.8em;
1765
+ padding: 2px 8px;
1766
+ border-radius: 6px;
1767
+ border: 1px solid var(--pte-new-colors-borderMedium);
1768
+ background: linear-gradient(180deg, var(--pte-new-colors-backgroundPrimary) 0%, var(--pte-new-colors-backgroundSecondary) 100%);
1769
+ box-shadow: 0 1px 0 1px var(--pte-new-colors-borderSubtle);
1770
+ color: var(--pte-new-colors-contentSecondary);
1771
+ line-height: 1.6;
1772
+ white-space: nowrap;
1773
+ }
1774
+ .paris_markdown_xr6-T .paris_sup_YZ4Xt,
1775
+ .paris_markdown_xr6-T .paris_sub_4fueW {
1776
+ font-size: 0.75em;
1777
+ line-height: 0;
1778
+ position: relative;
1779
+ vertical-align: baseline;
1780
+ }
1781
+ .paris_markdown_xr6-T .paris_sup_YZ4Xt {
1782
+ top: -0.5em;
1783
+ }
1784
+ .paris_markdown_xr6-T .paris_sub_4fueW {
1785
+ bottom: -0.25em;
1786
+ }
1787
+ .paris_markdown_xr6-T .paris_mark_RWQcE {
1788
+ background-color: var(--pte-new-colors-backgroundWarningMedium, #fef3c7);
1789
+ color: inherit;
1790
+ padding: 1px 4px;
1791
+ border-radius: 3px;
1792
+ }
1793
+ .paris_markdown_xr6-T .paris_dl_9vVsj {
1794
+ margin: 1em 0;
1795
+ }
1796
+ .paris_markdown_xr6-T .paris_dt_WYWXJ {
1797
+ margin-top: 1em;
1798
+ }
1799
+ .paris_markdown_xr6-T .paris_dt_WYWXJ:first-child {
1800
+ margin-top: 0;
1801
+ }
1802
+ .paris_markdown_xr6-T .paris_dd_NFFvs {
1803
+ margin-left: 1.5em;
1804
+ margin-top: 0.25em;
1805
+ padding-left: 1em;
1806
+ border-left: 2px solid var(--pte-new-colors-borderSubtle);
1807
+ }
1808
+ .paris_markdown_xr6-T section[data-footnotes] {
1809
+ margin-top: 2em;
1810
+ padding-top: 1em;
1811
+ border-top: 1px solid var(--pte-new-colors-borderMedium);
1812
+ font-size: 0.875em;
1813
+ color: var(--pte-new-colors-contentSecondary);
1814
+ }
1815
+ .paris_markdown_xr6-T section[data-footnotes] h2 {
1816
+ font-size: 0.875em;
1817
+ font-weight: 600;
1818
+ margin-bottom: 0.5em;
1819
+ }
1820
+ .paris_markdown_xr6-T section[data-footnotes] ol {
1821
+ padding-left: 1.5em;
1822
+ }
1823
+ .paris_markdown_xr6-T section[data-footnotes] li {
1824
+ margin-bottom: 0.25em;
1825
+ }
1826
+ .paris_markdown_xr6-T section[data-footnotes] a {
1827
+ color: var(--pte-new-colors-contentAccent);
1828
+ }
1829
+ .paris_toolbar_FAd-9 {
1830
+ display: flex;
1831
+ align-items: center;
1832
+ gap: 2px;
1833
+ padding: 6px 8px;
1834
+ border-bottom: 1px solid var(--pte-new-colors-borderSubtle);
1835
+ background-color: var(--pte-new-colors-backgroundPrimary);
1836
+ flex-wrap: wrap;
1837
+ position: relative;
1838
+ }
1839
+
1840
+ .paris_group_I1JpH {
1841
+ display: flex;
1842
+ align-items: center;
1843
+ gap: 2px;
1844
+ }
1845
+
1846
+ .paris_separator_qPb-B {
1847
+ width: 1px;
1848
+ height: 18px;
1849
+ background-color: var(--pte-new-colors-borderSubtle);
1850
+ margin: 0 4px;
1851
+ flex-shrink: 0;
1852
+ }
1853
+ .paris_toolbar_ALJP3 {
1854
+ display: flex;
1855
+ align-items: center;
1856
+ gap: 2px;
1857
+ padding: 4px 6px;
1858
+ background-color: var(--pte-new-colors-surfacePrimary, var(--pte-new-colors-backgroundPrimary));
1859
+ border: 1px solid var(--pte-new-colors-borderSubtle);
1860
+ border-radius: var(--pte-new-borders-radius-rounded, 8px);
1861
+ box-shadow: var(--pte-new-shadows-shallowPopup, 0 4px 12px rgba(0, 0, 0, 0.15));
1862
+ }
1863
+
1864
+ .paris_separator_qOWSq {
1865
+ width: 1px;
1866
+ height: 18px;
1867
+ background-color: var(--pte-new-colors-borderSubtle);
1868
+ margin: 0 2px;
1869
+ flex-shrink: 0;
1870
+ }
1871
+ .paris_popover_NuqJ8 {
1872
+ position: absolute;
1873
+ top: calc(100% + 8px);
1874
+ left: 0;
1875
+ z-index: var(--pte-new-layers-popover);
1876
+ background-color: var(--pte-new-colors-surfacePrimary, var(--pte-new-colors-backgroundPrimary));
1877
+ border: 1px solid var(--pte-new-colors-borderSubtle);
1878
+ border-radius: var(--pte-new-borders-radius-rounded, 8px);
1879
+ box-shadow: var(--pte-new-shadows-shallowPopup, 0 4px 12px rgba(0, 0, 0, 0.15));
1880
+ padding: 8px 10px;
1881
+ width: 280px;
1882
+ display: flex;
1883
+ flex-direction: column;
1884
+ gap: 6px;
1885
+ }
1886
+
1887
+ .paris_label_U8nq1 {
1888
+ font-size: var(--pte-new-typography-styles-labelXSmall-fontSize, 11px);
1889
+ font-weight: 600;
1890
+ text-transform: uppercase;
1891
+ letter-spacing: 0.05em;
1892
+ color: var(--pte-new-colors-contentTertiary);
1893
+ }
1894
+
1895
+ .paris_inputRow_pIHbL {
1896
+ display: flex;
1897
+ gap: 6px;
1898
+ }
1899
+
1900
+ .paris_input_faso5 {
1901
+ flex: 1;
1902
+ background-color: var(--pte-new-colors-inputFill);
1903
+ border: 1px solid var(--pte-new-colors-borderSubtle);
1904
+ border-radius: 4px;
1905
+ padding: 4px 8px;
1906
+ color: var(--pte-new-colors-contentPrimary);
1907
+ font-size: 11px;
1908
+ font-family: inherit;
1909
+ outline: none;
1910
+ transition: border-color var(--pte-new-animations-interaction, 150ms) ease;
1911
+ }
1912
+ .paris_input_faso5:focus {
1913
+ border-color: var(--pte-new-colors-inputBorderFocus);
1914
+ }
1915
+ .paris_input_faso5::placeholder {
1916
+ color: var(--pte-new-colors-contentTertiary);
1917
+ }
1918
+
1919
+ .paris_applyButton_bm-xU {
1920
+ background-color: var(--pte-new-colors-buttonFill);
1921
+ border: none;
1922
+ border-radius: 4px;
1923
+ padding: 4px 10px;
1924
+ color: var(--pte-new-colors-contentInversePrimary, #fff);
1925
+ font-size: 11px;
1926
+ font-weight: 600;
1927
+ font-family: inherit;
1928
+ cursor: pointer;
1929
+ transition: background-color var(--pte-new-animations-interaction, 150ms) ease;
1930
+ flex-shrink: 0;
1931
+ }
1932
+ .paris_applyButton_bm-xU:hover {
1933
+ background-color: var(--pte-new-colors-buttonFillHover);
1934
+ }
1935
+
1936
+ .paris_footer_qWJTt {
1937
+ display: flex;
1938
+ justify-content: space-between;
1939
+ align-items: center;
1940
+ }
1941
+
1942
+ .paris_checkboxLabel_NLpLl {
1943
+ display: flex;
1944
+ align-items: center;
1945
+ gap: 4px;
1946
+ font-size: 11px;
1947
+ color: var(--pte-new-colors-contentTertiary);
1948
+ cursor: pointer;
1949
+ }
1950
+ .paris_checkboxLabel_NLpLl input[type=checkbox] {
1951
+ appearance: none;
1952
+ width: 14px;
1953
+ height: 14px;
1954
+ border: 2px solid var(--pte-new-colors-contentTertiary);
1955
+ border-radius: var(--pte-borders-radius-rectangle);
1956
+ background: transparent;
1957
+ cursor: pointer;
1958
+ position: relative;
1959
+ flex-shrink: 0;
1960
+ transition: var(--pte-animations-interaction);
1961
+ }
1962
+ .paris_checkboxLabel_NLpLl input[type=checkbox]:checked::after {
1963
+ content: "";
1964
+ position: absolute;
1965
+ inset: -2px;
1966
+ background-color: var(--pte-new-colors-contentPrimary);
1967
+ mask-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.333374 0.333252V13.6666H13.6667V0.333252H0.333374ZM6.00004 10.3999L2.26672 6.66658L3.66671 5.26658L5.93339 7.53325L10.2 3.26658L11.6001 4.66659L6.00004 10.3999Z' fill='black'/%3E%3C/svg%3E");
1968
+ mask-size: contain;
1969
+ mask-repeat: no-repeat;
1970
+ }
1971
+
1972
+ .paris_removeButton_jnMTA {
1973
+ background: none;
1974
+ border: none;
1975
+ color: var(--pte-new-colors-contentNegative);
1976
+ font-size: 11px;
1977
+ font-family: inherit;
1978
+ cursor: pointer;
1979
+ padding: 0;
1980
+ }
1981
+ .paris_removeButton_jnMTA:hover {
1982
+ text-decoration: underline;
1983
+ }
1984
+ @charset "UTF-8";
1985
+ /* ── MarkdownEditor styles ────────────────────────────────────
1986
+ * Uses Paris design tokens (--pte-*) for consistent theming.
1987
+ * Editor content styles mirror Markdown.module.scss but target
1988
+ * native HTML elements rendered by Tiptap (not CSS module classes).
1989
+ * ──────────────────────────────────────────────────────────── */
1990
+ .paris_root_AbYRN {
1991
+ display: flex;
1992
+ flex-direction: column;
1993
+ width: 100%;
1994
+ }
1995
+
1996
+ .paris_editorContainer_9v7gh {
1997
+ display: flex;
1998
+ flex-direction: column;
1999
+ border-radius: var(--pte-borders-radius-rectangle);
2000
+ background-color: var(--pte-new-colors-inputFill);
2001
+ border: 1px solid var(--pte-new-colors-inputFill);
2002
+ transition: var(--pte-animations-interaction);
2003
+ }
2004
+ .paris_editorContainer_9v7gh:focus-within {
2005
+ outline: none;
2006
+ border-color: var(--pte-new-colors-inputBorderFocus);
2007
+ background-color: var(--pte-new-colors-inputFillFocus);
2008
+ }
2009
+ .paris_editorContainer_9v7gh[data-status=error] {
2010
+ border-color: var(--pte-new-colors-inputBorderNegative);
2011
+ background-color: var(--pte-new-colors-inputFillNegative);
2012
+ color: var(--pte-new-colors-contentNegative);
2013
+ }
2014
+ .paris_editorContainer_9v7gh[data-status=error]:focus-within {
2015
+ color: var(--pte-new-colors-contentPrimary);
2016
+ }
2017
+ .paris_editorContainer_9v7gh[data-status=success] {
2018
+ border-color: var(--pte-new-colors-backgroundPositive);
2019
+ }
2020
+ .paris_editorContainer_9v7gh[data-disabled=true] {
2021
+ background-color: var(--pte-new-colors-inputFillDisabled);
2022
+ border-color: var(--pte-new-colors-inputFillDisabled);
2023
+ color: var(--pte-new-colors-contentDisabled);
2024
+ pointer-events: none;
2025
+ cursor: default;
2026
+ }
2027
+ .paris_editorContainer_9v7gh[data-disabled=true]:focus-within {
2028
+ border-color: var(--pte-new-colors-inputFillDisabled) !important;
2029
+ }
2030
+
2031
+ .paris_editorContent_WTm2y {
2032
+ padding: 12px 16px;
2033
+ min-height: 120px;
2034
+ outline: none;
2035
+ line-height: 1.7;
2036
+ color: var(--pte-new-colors-contentPrimary);
2037
+ font-size: var(--markdown-base-font-size, 14px);
2038
+ }
2039
+ .paris_editorContent_WTm2y .tiptap {
2040
+ outline: none;
2041
+ min-height: inherit;
2042
+ }
2043
+ .paris_editorContent_WTm2y .tiptap > *:first-child {
2044
+ margin-top: 0;
2045
+ }
2046
+ .paris_editorContent_WTm2y .tiptap > *:last-child {
2047
+ margin-bottom: 0;
2048
+ }
2049
+ .paris_editorContent_WTm2y .tiptap p.is-editor-empty:first-child::before {
2050
+ content: attr(data-placeholder);
2051
+ color: var(--pte-new-colors-contentTertiary);
2052
+ pointer-events: none;
2053
+ float: left;
2054
+ height: 0;
2055
+ }
2056
+ .paris_editorContent_WTm2y h1,
2057
+ .paris_editorContent_WTm2y h2,
2058
+ .paris_editorContent_WTm2y h3,
2059
+ .paris_editorContent_WTm2y h4,
2060
+ .paris_editorContent_WTm2y h5,
2061
+ .paris_editorContent_WTm2y h6 {
2062
+ margin-top: 1.5em;
2063
+ margin-bottom: 0.6em;
2064
+ color: var(--pte-new-colors-contentPrimary);
2065
+ line-height: 1.3;
2066
+ }
2067
+ .paris_editorContent_WTm2y h1:first-child,
2068
+ .paris_editorContent_WTm2y h2:first-child,
2069
+ .paris_editorContent_WTm2y h3:first-child,
2070
+ .paris_editorContent_WTm2y h4:first-child,
2071
+ .paris_editorContent_WTm2y h5:first-child,
2072
+ .paris_editorContent_WTm2y h6:first-child {
2073
+ margin-top: 0;
2074
+ }
2075
+ .paris_editorContent_WTm2y h1 {
2076
+ font-size: var(--pte-new-typography-styles-headingLarge-fontSize, 32px);
2077
+ font-weight: var(--pte-new-typography-styles-headingLarge-fontWeight, 700);
2078
+ }
2079
+ .paris_editorContent_WTm2y h2 {
2080
+ font-size: var(--pte-new-typography-styles-headingMedium-fontSize, 24px);
2081
+ font-weight: var(--pte-new-typography-styles-headingMedium-fontWeight, 700);
2082
+ }
2083
+ .paris_editorContent_WTm2y h3 {
2084
+ font-size: var(--pte-new-typography-styles-headingSmall-fontSize, 20px);
2085
+ font-weight: var(--pte-new-typography-styles-headingSmall-fontWeight, 700);
2086
+ }
2087
+ .paris_editorContent_WTm2y h4 {
2088
+ font-size: var(--pte-new-typography-styles-headingXSmall-fontSize, 18px);
2089
+ font-weight: var(--pte-new-typography-styles-headingXSmall-fontWeight, 600);
2090
+ }
2091
+ .paris_editorContent_WTm2y h5 {
2092
+ font-size: var(--pte-new-typography-styles-headingXXSmall-fontSize, 16px);
2093
+ font-weight: var(--pte-new-typography-styles-headingXXSmall-fontWeight, 600);
2094
+ }
2095
+ .paris_editorContent_WTm2y h6 {
2096
+ font-size: var(--pte-new-typography-styles-labelMedium-fontSize, 14px);
2097
+ font-weight: var(--pte-new-typography-styles-labelMedium-fontWeight, 600);
2098
+ text-transform: uppercase;
2099
+ letter-spacing: 0.05em;
2100
+ }
2101
+ .paris_editorContent_WTm2y p {
2102
+ margin-bottom: 1em;
2103
+ line-height: 1.7;
2104
+ }
2105
+ .paris_editorContent_WTm2y p:last-child {
2106
+ margin-bottom: 0;
2107
+ }
2108
+ .paris_editorContent_WTm2y strong {
2109
+ font-weight: 600;
2110
+ }
2111
+ .paris_editorContent_WTm2y em {
2112
+ font-style: italic;
2113
+ }
2114
+ .paris_editorContent_WTm2y s {
2115
+ text-decoration: line-through;
2116
+ text-decoration-color: var(--pte-new-colors-contentTertiary);
2117
+ }
2118
+ .paris_editorContent_WTm2y a {
2119
+ color: var(--pte-new-colors-contentAccent);
2120
+ text-decoration: underline;
2121
+ text-underline-offset: 2px;
2122
+ cursor: pointer;
2123
+ }
2124
+ .paris_editorContent_WTm2y a:hover {
2125
+ text-decoration-color: var(--pte-new-colors-contentAccent);
2126
+ }
2127
+ .paris_editorContent_WTm2y img {
2128
+ max-width: 100%;
2129
+ height: auto;
2130
+ border-radius: var(--pte-new-borders-radius-rounded);
2131
+ border: 1px solid var(--pte-new-colors-borderSubtle);
2132
+ margin: 1em 0;
2133
+ display: block;
2134
+ }
2135
+ .paris_editorContent_WTm2y blockquote {
2136
+ border-left: 3px solid var(--pte-new-colors-borderMedium);
2137
+ padding: 8px 16px;
2138
+ margin: 1em 0;
2139
+ background-color: var(--pte-new-colors-backgroundSecondary);
2140
+ border-radius: 0 var(--pte-new-borders-radius-rounded, 8px) var(--pte-new-borders-radius-rounded, 8px) 0;
2141
+ color: var(--pte-new-colors-contentSecondary);
2142
+ }
2143
+ .paris_editorContent_WTm2y blockquote blockquote {
2144
+ margin: 0.5em 0;
2145
+ }
2146
+ .paris_editorContent_WTm2y blockquote p {
2147
+ margin-bottom: 0.5em;
2148
+ }
2149
+ .paris_editorContent_WTm2y blockquote p:last-child {
2150
+ margin-bottom: 0;
2151
+ }
2152
+ .paris_editorContent_WTm2y hr {
2153
+ border: none;
2154
+ border-top: 1px solid var(--pte-new-colors-borderMedium);
2155
+ margin: 1.5em 0;
2156
+ }
2157
+ .paris_editorContent_WTm2y ul,
2158
+ .paris_editorContent_WTm2y ol {
2159
+ margin: 0.5em 0 1em;
2160
+ padding-left: 1.5em;
2161
+ }
2162
+ .paris_editorContent_WTm2y ul {
2163
+ list-style-type: disc;
2164
+ }
2165
+ .paris_editorContent_WTm2y ul ul {
2166
+ list-style-type: circle;
2167
+ margin: 0.25em 0;
2168
+ }
2169
+ .paris_editorContent_WTm2y ul ul ul {
2170
+ list-style-type: square;
2171
+ }
2172
+ .paris_editorContent_WTm2y ol {
2173
+ list-style-type: decimal;
2174
+ }
2175
+ .paris_editorContent_WTm2y ol ol {
2176
+ list-style-type: lower-alpha;
2177
+ margin: 0.25em 0;
2178
+ }
2179
+ .paris_editorContent_WTm2y ol ol ol {
2180
+ list-style-type: lower-roman;
2181
+ }
2182
+ .paris_editorContent_WTm2y li {
2183
+ margin-bottom: 0.25em;
2184
+ line-height: 1.7;
2185
+ }
2186
+ .paris_editorContent_WTm2y li p {
2187
+ margin-bottom: 0.25em;
2188
+ }
2189
+ .paris_editorContent_WTm2y ul[data-type=taskList] {
2190
+ list-style: none;
2191
+ padding-left: 0;
2192
+ }
2193
+ .paris_editorContent_WTm2y li[data-checked] {
2194
+ display: flex;
2195
+ flex-direction: row;
2196
+ align-items: baseline;
2197
+ gap: 8px;
2198
+ }
2199
+ .paris_editorContent_WTm2y li[data-checked] > label {
2200
+ flex-shrink: 0;
2201
+ }
2202
+ .paris_editorContent_WTm2y li[data-checked] > label input[type=checkbox] {
2203
+ appearance: none;
2204
+ width: 14px;
2205
+ height: 14px;
2206
+ border: 2px solid var(--pte-new-colors-contentTertiary);
2207
+ border-radius: var(--pte-borders-radius-rectangle);
2208
+ background: transparent;
2209
+ cursor: pointer;
2210
+ position: relative;
2211
+ top: 2px;
2212
+ transition: var(--pte-animations-interaction);
2213
+ }
2214
+ .paris_editorContent_WTm2y li[data-checked] > label input[type=checkbox]:checked::after {
2215
+ content: "";
2216
+ position: absolute;
2217
+ inset: -2px;
2218
+ background-color: var(--pte-new-colors-contentPrimary);
2219
+ mask-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.333374 0.333252V13.6666H13.6667V0.333252H0.333374ZM6.00004 10.3999L2.26672 6.66658L3.66671 5.26658L5.93339 7.53325L10.2 3.26658L11.6001 4.66659L6.00004 10.3999Z' fill='black'/%3E%3C/svg%3E");
2220
+ mask-size: contain;
2221
+ mask-repeat: no-repeat;
2222
+ }
2223
+ .paris_editorContent_WTm2y li[data-checked] > div {
2224
+ flex: 1;
2225
+ }
2226
+ .paris_editorContent_WTm2y code {
2227
+ font-family: "SF Mono", "Fira Code", "JetBrains Mono", ui-monospace, monospace;
2228
+ font-size: 0.875em;
2229
+ padding: 2px 6px;
2230
+ border-radius: 6px;
2231
+ background-color: var(--pte-new-colors-backgroundSecondary);
2232
+ border: 1px solid var(--pte-new-colors-borderSubtle);
2233
+ color: var(--pte-new-colors-contentPrimary);
2234
+ word-break: break-word;
2235
+ }
2236
+ .paris_editorContent_WTm2y pre {
2237
+ margin: 1em 0;
2238
+ padding: 0;
2239
+ background: transparent;
2240
+ overflow: visible;
2241
+ }
2242
+ .paris_editorContent_WTm2y pre code {
2243
+ display: block;
2244
+ padding: 16px;
2245
+ overflow-x: auto;
2246
+ font-family: "SF Mono", "Fira Code", "JetBrains Mono", ui-monospace, monospace;
2247
+ font-size: 13px;
2248
+ line-height: 1.6;
2249
+ tab-size: 4;
2250
+ white-space: pre;
2251
+ border-radius: var(--pte-new-borders-radius-rounded, 8px);
2252
+ background-color: var(--pte-new-colors-backgroundSecondary);
2253
+ border: 1px solid var(--pte-new-colors-borderSubtle);
2254
+ color: var(--pte-new-colors-contentPrimary);
2255
+ }
2256
+ .paris_editorContent_WTm2y pre code::-webkit-scrollbar {
2257
+ height: 6px;
2258
+ }
2259
+ .paris_editorContent_WTm2y pre code::-webkit-scrollbar-track {
2260
+ background: transparent;
2261
+ }
2262
+ .paris_editorContent_WTm2y pre code::-webkit-scrollbar-thumb {
2263
+ background-color: var(--pte-new-colors-borderMedium);
2264
+ border-radius: 3px;
2265
+ }
2266
+ .paris_editorContent_WTm2y table {
2267
+ width: 100%;
2268
+ border-collapse: collapse;
2269
+ margin: 1em 0;
2270
+ font-size: var(--pte-new-typography-paragraphSmall-fontSize, 13px);
2271
+ border-radius: var(--pte-new-borders-radius-rounded, 8px);
2272
+ border: 1px solid var(--pte-new-colors-borderSubtle);
2273
+ overflow: hidden;
2274
+ }
2275
+ .paris_editorContent_WTm2y thead {
2276
+ background-color: var(--pte-new-colors-backgroundSecondary);
2277
+ }
2278
+ .paris_editorContent_WTm2y th {
2279
+ padding: 10px 16px;
2280
+ text-align: left;
2281
+ border-bottom: 1px solid var(--pte-new-colors-borderMedium);
2282
+ white-space: nowrap;
2283
+ color: var(--pte-new-colors-contentSecondary);
2284
+ font-size: var(--pte-new-typography-styles-labelXSmall-fontSize, 11px);
2285
+ font-weight: 600;
2286
+ text-transform: uppercase;
2287
+ letter-spacing: 0.05em;
2288
+ }
2289
+ .paris_editorContent_WTm2y td {
2290
+ padding: 10px 16px;
2291
+ border-bottom: 1px solid var(--pte-new-colors-borderSubtle);
2292
+ color: var(--pte-new-colors-contentPrimary);
2293
+ }
2294
+ .paris_editorContent_WTm2y tr:last-child td {
2295
+ border-bottom: none;
2296
+ }
2297
+ .paris_editorContent_WTm2y tbody tr {
2298
+ transition: background-color 0.15s ease;
2299
+ }
2300
+ .paris_editorContent_WTm2y tbody tr:hover {
2301
+ background-color: var(--pte-new-colors-backgroundSecondary);
2302
+ }
2303
+ .paris_editorContent_WTm2y .selectedCell {
2304
+ background-color: var(--pte-new-colors-backgroundAccentSubtle, rgba(99, 102, 241, 0.1));
2305
+ }
2306
+ .paris_editorContent_WTm2y ::selection {
2307
+ background-color: var(--pte-new-colors-backgroundAccentSubtle, rgba(99, 102, 241, 0.2));
2308
+ }
2309
+ .paris_button_o-kCm {
2310
+ display: inline-flex;
2311
+ align-items: center;
2312
+ justify-content: center;
2313
+ width: 28px;
2314
+ height: 28px;
2315
+ border: none;
2316
+ border-radius: 6px;
2317
+ background: transparent;
2318
+ color: var(--pte-new-colors-contentSecondary);
2319
+ cursor: pointer;
2320
+ padding: 0;
2321
+ font-size: 13px;
2322
+ font-family: inherit;
2323
+ transition: background-color var(--pte-new-animations-interaction, 150ms) ease, color var(--pte-new-animations-interaction, 150ms) ease;
2324
+ flex-shrink: 0;
2325
+ }
2326
+ .paris_button_o-kCm:hover {
2327
+ background-color: var(--pte-new-colors-backgroundSecondary);
2328
+ color: var(--pte-new-colors-contentPrimary);
2329
+ }
2330
+ .paris_button_o-kCm[data-active=true] {
2331
+ background-color: var(--pte-new-colors-borderSubtle);
2332
+ color: var(--pte-new-colors-contentPrimary);
2333
+ }
2334
+ .paris_button_o-kCm:disabled {
2335
+ color: var(--pte-new-colors-contentDisabled);
2336
+ cursor: not-allowed;
2337
+ background: transparent;
2338
+ }
2339
+ .paris_menu_HYnWi {
2340
+ position: relative;
2341
+ }
2342
+
2343
+ .paris_menuItems_QbqR7 {
2344
+ --anchor-gap: 6px;
2345
+ border-radius: 8px;
2346
+ background: var(--pte-new-colors-surfacePrimary);
2347
+ box-shadow: var(--pte-new-lighting-deepBelow);
2348
+ border: var(--pte-new-borders-dropdown-border);
2349
+ display: flex;
2350
+ width: 200px;
2351
+ flex-direction: column;
2352
+ align-items: flex-start;
2353
+ overflow: hidden;
2354
+ z-index: var(--pte-new-layers-menu);
2355
+ transition: opacity var(--pte-animations-interaction), transform var(--pte-animations-interaction);
2356
+ opacity: 1;
2357
+ transform: translateY(0);
2358
+ }
2359
+ .paris_menuItems_QbqR7[data-closed] {
2360
+ opacity: 0;
2361
+ transform: translateY(-8px);
2362
+ }
2363
+
2364
+ .paris_menuItem_snmkz {
2365
+ width: 100%;
2366
+ padding: 8px 14px;
2367
+ display: flex;
2368
+ align-items: center;
2369
+ justify-content: space-between;
2370
+ color: var(--pte-new-colors-contentPrimary);
2371
+ border-bottom: 0.5px solid var(--pte-new-colors-borderMedium);
2372
+ }
2373
+ .paris_menuItem_snmkz:last-child {
2374
+ border-bottom: none;
2375
+ }
2376
+ .paris_menuItem_snmkz:hover {
2377
+ background-color: var(--pte-new-colors-overlayMedium);
2378
+ }
2379
+ @keyframes paris_gradientFlow_ZffNc {
2380
+ 0% {
2381
+ background-position: 0%;
2382
+ }
2383
+ 100% {
2384
+ background-position: 125%;
2385
+ }
2386
+ }
2387
+
2388
+ .paris_newItem_LE830 {
2389
+ background: radial-gradient(circle, rgba(20, 239, 172, 0.2) 0%, rgba(38, 237, 237, 0.05) 75%);
2390
+ background-size: 150% 100%;
2391
+ animation: paris_gradientFlow_ZffNc 2.5s ease-in-out infinite alternate;
2392
+ background-position: 0%;
2393
+ }
2394
+ .paris_newItem_LE830:hover {
2395
+ background-color: unset;
2396
+ animation-play-state: paused;
2397
+ }
2398
+ @keyframes paris_intro_srltg {
2399
+ 0% {
2400
+ opacity: 0;
2401
+ }
2402
+ 100% {
2403
+ opacity: 1;
2404
+ }
2405
+ }
2406
+ .paris_trigger_NZC4B {
2407
+ width: fit-content;
2408
+ }
2409
+
2410
+ .paris_content_qDvSV {
2411
+ background-color: var(--pte-new-colors-surfacePrimary);
2412
+ animation: var(--pte-animations-duration-normal) var(--pte-animations-timing-easeInOutExpo) 0s 1 paris_intro_srltg;
2413
+ width: fit-content;
2414
+ border-radius: var(--pte-borders-radius-rounded);
2415
+ box-shadow: var(--pte-new-lighting-shallowPopup);
2416
+ border: var(--pte-new-borders-dropdown-border);
2417
+ }
2418
+ .paris_container_p9NzC {
2419
+ position: relative;
2420
+ user-select: var(--pte-utils-defaultUserSelect);
2421
+ }
2422
+ .paris_container_p9NzC > * {
2423
+ cursor: default;
2424
+ }
2425
+
2426
+ .paris_listboxButton_cDH7o[aria-expanded=true] .paris_chevron_A3qpw {
2427
+ color: var(--pte-new-colors-contentPrimary);
2428
+ }
2429
+ .paris_listboxButton_cDH7o[aria-expanded=true] {
2430
+ border-color: var(--pte-new-colors-inputBorderFocus);
2431
+ background-color: var(--pte-new-colors-inputFillFocus);
2432
+ }
2433
+
2434
+ .paris_field_moc6- {
2435
+ display: flex;
2436
+ flex-direction: row;
2437
+ justify-content: space-between;
2438
+ align-items: center;
2439
+ }
2440
+
2441
+ .paris_options_OCbX8 {
2442
+ width: max(var(--button-width, 0px), var(--input-width, 0px));
2443
+ max-height: var(--options-maxHeight, auto);
2444
+ overflow-y: auto;
2445
+ overflow-x: hidden;
2446
+ z-index: var(--pte-new-layers-dropdown);
2447
+ display: flex;
2448
+ flex-direction: column;
2449
+ background-color: var(--pte-new-colors-surfacePrimary);
2450
+ border: var(--pte-new-borders-dropdown-border);
2451
+ border-radius: var(--pte-borders-radius-rectangle);
2452
+ box-shadow: var(--pte-new-lighting-deepBelow);
2453
+ transition: opacity var(--pte-animations-interaction), transform var(--pte-animations-interaction);
2454
+ }
2455
+ .paris_options_OCbX8[data-closed] {
2456
+ opacity: 0;
2457
+ transform: translateY(-8px);
2458
+ }
2459
+ .paris_options_OCbX8:focus-within {
2460
+ outline: none;
2461
+ }
2462
+
2463
+ .paris_option_oNCHN {
2464
+ display: flex;
2465
+ flex-direction: row;
2466
+ justify-content: space-between;
2467
+ align-items: center;
2468
+ gap: 8px;
2469
+ padding: 6.5px 14px;
2470
+ transition: var(--pte-animations-interaction);
2471
+ }
2472
+ .paris_option_oNCHN .paris_check_BKQfJ {
2473
+ display: none;
2474
+ }
2475
+ .paris_option_oNCHN[data-selected] {
2476
+ background-color: var(--pte-new-colors-overlaySubtle);
2477
+ }
2478
+ .paris_option_oNCHN[data-selected] .paris_check_BKQfJ {
2479
+ display: flex;
2480
+ }
2481
+ .paris_option_oNCHN:hover, .paris_option_oNCHN[data-active], .paris_option_oNCHN[data-focus] {
2482
+ background-color: var(--pte-new-colors-overlayMedium);
2483
+ }
2484
+ .paris_option_oNCHN[data-status=disabled], .paris_option_oNCHN[data-disabled] {
2485
+ pointer-events: none;
2486
+ cursor: default;
2487
+ }
2488
+ .paris_option_oNCHN[data-status=disabled], .paris_option_oNCHN[data-status=disabled] *, .paris_option_oNCHN[data-disabled], .paris_option_oNCHN[data-disabled] * {
2489
+ color: var(--pte-new-colors-contentDisabled);
2490
+ }
2491
+ .paris_option_oNCHN.paris_optionBorder_9FJvX {
2492
+ border-bottom: 0.5px solid var(--pte-new-colors-borderMedium);
2493
+ }
2494
+ .paris_option_oNCHN.paris_optionBorder_9FJvX:last-child {
2495
+ border-bottom: none;
2496
+ }
2497
+
2498
+ .paris_content_3nOnh {
2499
+ flex: 1;
2500
+ min-width: 0;
2501
+ overflow: hidden;
2502
+ }
2503
+
2504
+ .paris_radioContainer_D3VvW {
2505
+ display: flex;
2506
+ flex-direction: column;
2507
+ gap: 12px;
2508
+ justify-content: flex-start;
2509
+ align-items: flex-start;
2510
+ }
2511
+
2512
+ .paris_radioOption_6iCrO {
2513
+ display: flex;
2514
+ flex-direction: row;
2515
+ gap: 4px;
2516
+ justify-content: flex-start;
2517
+ align-items: center;
2518
+ }
2519
+ .paris_radioOption_6iCrO[data-focus] .paris_radioCircle_bidjb {
2520
+ border-color: var(--pte-new-colors-contentPrimary);
2521
+ }
2522
+ .paris_radioOption_6iCrO[data-checked] .paris_radioCircle_bidjb {
2523
+ border: 5px solid var(--pte-new-colors-contentPrimary);
2524
+ }
2525
+ .paris_radioOption_6iCrO[data-status=disabled], .paris_radioOption_6iCrO[data-disabled] {
2526
+ pointer-events: none;
2527
+ cursor: default;
2528
+ }
2529
+ .paris_radioOption_6iCrO[data-status=disabled], .paris_radioOption_6iCrO[data-status=disabled] *, .paris_radioOption_6iCrO[data-disabled], .paris_radioOption_6iCrO[data-disabled] * {
2530
+ color: var(--pte-new-colors-contentDisabled);
2531
+ }
2532
+ .paris_radioOption_6iCrO[data-status=disabled] .paris_radioCircle_bidjb, .paris_radioOption_6iCrO[data-disabled] .paris_radioCircle_bidjb {
2533
+ border-color: var(--pte-new-colors-contentDisabled);
2534
+ }
2535
+ .paris_radioOption_6iCrO[data-status=error] .paris_radioCircle_bidjb {
2536
+ border-color: var(--pte-new-colors-contentNegative);
2537
+ }
2538
+ .paris_radioOption_6iCrO[data-status=success] .paris_radioCircle_bidjb {
2539
+ border-color: var(--pte-new-colors-contentPositive);
2540
+ }
2541
+
2542
+ .paris_radioCircle_bidjb {
2543
+ flex-shrink: 0;
2544
+ margin: 0 8px;
2545
+ width: 14px;
2546
+ height: 14px;
2547
+ border-radius: 100%;
2548
+ border: 1.5px solid var(--pte-new-colors-contentTertiary);
2549
+ transition: all var(--pte-animations-interaction);
2550
+ }
2551
+
2552
+ .paris_cardContainer_3aaZz {
2553
+ display: flex;
2554
+ flex-direction: column;
2555
+ gap: 8px;
2556
+ justify-content: flex-start;
2557
+ align-items: flex-start;
2558
+ }
2559
+
2560
+ .paris_cardOption_-hFhZ {
2561
+ background-color: var(--pte-new-colors-surfacePrimary);
2562
+ border-radius: 6px;
2563
+ width: 100%;
2564
+ }
2565
+ .paris_cardOption_-hFhZ[data-checked] .paris_cardSurface_f-LHF {
2566
+ background-color: var(--pte-new-colors-overlayMedium);
2567
+ border-color: var(--pte-new-colors-borderUltrastrong);
2568
+ }
2569
+ .paris_cardOption_-hFhZ[data-status=disabled], .paris_cardOption_-hFhZ[data-disabled] {
2570
+ pointer-events: none;
2571
+ cursor: default;
2572
+ }
2573
+ .paris_cardOption_-hFhZ[data-status=disabled], .paris_cardOption_-hFhZ[data-status=disabled] *, .paris_cardOption_-hFhZ[data-disabled], .paris_cardOption_-hFhZ[data-disabled] * {
2574
+ color: var(--pte-new-colors-contentDisabled);
2575
+ }
2576
+ .paris_cardOption_-hFhZ[data-status=error] .paris_cardSurface_f-LHF {
2577
+ background-color: var(--pte-new-colors-backgroundNegative);
2578
+ }
2579
+ .paris_cardOption_-hFhZ[data-status=success] .paris_cardSurface_f-LHF {
2580
+ background-color: var(--pte-new-colors-backgroundPositive);
2581
+ }
2582
+ .paris_cardOption_-hFhZ:hover .paris_cardSurface_f-LHF {
2583
+ background-color: var(--pte-new-colors-overlayStrong);
2584
+ }
2585
+
2586
+ .paris_cardSurface_f-LHF {
2587
+ width: 100%;
2588
+ display: flex;
2589
+ flex-direction: row;
2590
+ justify-content: flex-start;
2591
+ align-items: center;
2592
+ transition: all var(--pte-animations-interaction);
2593
+ border-radius: 6px;
2594
+ background-color: var(--pte-new-colors-overlayWhiteSubtle);
2595
+ border: 1px solid var(--pte-new-colors-borderStrong);
2596
+ }
2597
+ .paris_cardSurface_f-LHF.paris_text_81Zg3 {
2598
+ padding: 4px 10px;
2599
+ }
2600
+
2601
+ .paris_segmentedContainer_qk2OK {
2602
+ display: flex;
2603
+ flex-direction: row;
2604
+ justify-content: space-between;
2605
+ align-items: center;
2606
+ background-color: var(--pte-new-colors-surfaceTertiary);
2607
+ border-radius: var(--pte-new-borders-radius-roundedMedium);
2608
+ padding: 4px;
2609
+ gap: 2px;
2610
+ }
2611
+
2612
+ .paris_segmentedOption_zITwG {
2613
+ padding: 3px 20px;
2614
+ border-radius: var(--pte-new-borders-radius-roundedSmall);
2615
+ width: 100%;
2616
+ color: var(--pte-new-colors-contentTertiary);
2617
+ display: flex;
2618
+ flex-direction: row;
2619
+ justify-content: center;
2620
+ align-items: center;
2621
+ position: relative;
2622
+ isolation: isolate;
2623
+ transition: var(--pte-animations-interaction);
2624
+ }
2625
+ .paris_segmentedOption_zITwG.paris_tall_r1nv- {
2626
+ padding: 6px 20px;
2627
+ }
2628
+ .paris_segmentedOption_zITwG[data-status=disabled], .paris_segmentedOption_zITwG[data-disabled] {
2629
+ pointer-events: none;
2630
+ cursor: default;
2631
+ }
2632
+ .paris_segmentedOption_zITwG[data-status=disabled], .paris_segmentedOption_zITwG[data-status=disabled] *, .paris_segmentedOption_zITwG[data-disabled], .paris_segmentedOption_zITwG[data-disabled] * {
2633
+ color: var(--pte-new-colors-contentDisabled);
2634
+ }
2635
+ .paris_segmentedOption_zITwG:hover {
2636
+ color: var(--pte-new-colors-contentPrimary);
2637
+ }
2638
+ .paris_segmentedOption_zITwG[data-checked] {
2639
+ color: var(--pte-new-colors-contentPrimary);
2640
+ }
2641
+
2642
+ .paris_segmentedBackground_6rsyh {
2643
+ position: absolute;
2644
+ height: 100%;
2645
+ left: 0;
2646
+ right: 0;
2647
+ background-color: var(--pte-new-colors-surfaceQuaternary);
2648
+ border-radius: var(--pte-new-borders-radius-roundedSmall);
2649
+ }
2650
+
2651
+ .paris_segmentedText_5Sb-0 {
2652
+ z-index: 1;
2653
+ }
2654
+ .paris_link_3T5Qd {
2655
+ text-decoration: none;
2656
+ border-bottom: 1px solid var(--pte-new-colors-borderMedium);
2657
+ cursor: pointer;
2658
+ font-weight: var(--pte-typography-fontWeights-medium);
2659
+ transition: border-bottom-color var(--pte-animations-interaction);
2660
+ }
2661
+ .paris_link_3T5Qd:hover {
2662
+ border-bottom: 1px solid var(--pte-new-colors-contentPrimary);
2663
+ }
2664
+ .paris_table_BdqlG {
2665
+ width: 100%;
2666
+ }
2667
+ .paris_table_BdqlG, .paris_table_BdqlG * {
2668
+ cursor: default;
2669
+ }
2670
+ .paris_table_BdqlG thead {
2671
+ text-align: left;
2672
+ user-select: none;
2673
+ }
2674
+ .paris_table_BdqlG th {
2675
+ color: var(--pte-new-colors-contentSecondary);
2676
+ padding: 10px 12px;
2677
+ }
2678
+ .paris_table_BdqlG td {
2679
+ padding: 8px 12px;
2680
+ }
2681
+ .paris_table_BdqlG tr {
2682
+ border-bottom: 1px solid var(--pte-new-colors-borderSubtle);
2683
+ }
2684
+ .paris_table_BdqlG .paris_tableHeader_Uz1-B {
2685
+ border-top: 1px solid var(--pte-new-colors-borderMedium);
2686
+ border-bottom: 1px solid var(--pte-new-colors-borderMedium);
2687
+ }
2688
+ .paris_table_BdqlG tr.paris_empty_5JeGO {
2689
+ border-bottom: none;
2690
+ }
2691
+ .paris_table_BdqlG tr.paris_empty_5JeGO td {
2692
+ padding: 20px 0 0 0;
2693
+ }
2694
+ .paris_table_BdqlG tbody tr.paris_clickable_g4EbF {
2695
+ transition: background-color var(--pte-animations-interaction);
2696
+ }
2697
+ .paris_table_BdqlG tbody tr.paris_clickable_g4EbF:hover {
2698
+ background-color: var(--pte-new-colors-overlayMedium);
2699
+ }
2700
+ .paris_table_BdqlG tbody tr.paris_clickable_g4EbF, .paris_table_BdqlG tbody tr.paris_clickable_g4EbF * {
2701
+ cursor: pointer;
2702
+ }
2703
+
2704
+ @container (max-width: 480px) {
2705
+ .paris_sm_06lH9 {
2706
+ display: none;
2707
+ }
2708
+ }
2709
+ @container (max-width: 640px) {
2710
+ .paris_md_TAkB6 {
2711
+ display: none;
2712
+ }
2713
+ }
2714
+ @container (max-width: 768px) {
2715
+ .paris_lg_Tk0q9 {
2716
+ display: none;
2717
+ }
2718
+ }
2719
+ @container (max-width: 1280px) {
2720
+ .paris_xl_ZwD05 {
2721
+ display: none;
2722
+ }
2723
+ }
2724
+ .paris_tabList_oiZCx {
2725
+ overflow-x: scroll;
2726
+ position: relative;
2727
+ display: flex;
2728
+ flex-direction: row;
2729
+ scrollbar-width: none;
2730
+ }
2731
+ .paris_tabList_oiZCx::-webkit-scrollbar {
2732
+ display: none;
2733
+ }
2734
+ .paris_tabList_oiZCx.paris_thick_v-JaE {
2735
+ padding-bottom: 4px;
2736
+ }
2737
+ .paris_tabList_oiZCx.paris_thin_JoVrb {
2738
+ padding-bottom: 1px;
2739
+ }
2740
+ .paris_tabList_oiZCx.paris_full_iRdoV {
2741
+ justify-content: stretch;
2742
+ }
2743
+
2744
+ .paris_tabBackground_ytITA.paris_glass_YQIOd {
2745
+ position: sticky;
2746
+ top: 0;
2747
+ width: 100%;
2748
+ z-index: var(--pte-new-layers-sticky);
2749
+ background: var(--pte-new-materials-primaryThin-background);
2750
+ }
2751
+
2752
+ .paris_tabGroup_y-jV- {
2753
+ width: 100%;
2754
+ overflow: auto;
2755
+ height: 100%;
2756
+ }
2757
+ .paris_tabGroup_y-jV-.paris_glass_YQIOd {
2758
+ position: relative;
2759
+ overflow-y: auto;
2760
+ overflow-x: hidden;
2761
+ }
2762
+
2763
+ .paris_tabListBorder_WS1HQ {
2764
+ width: 100%;
2765
+ position: relative;
2766
+ }
2767
+ .paris_tabListBorder_WS1HQ.paris_thick_v-JaE {
2768
+ border-bottom: 4px solid var(--pte-new-colors-borderMedium);
2769
+ margin-top: -4px;
2770
+ }
2771
+ .paris_tabListBorder_WS1HQ.paris_thin_JoVrb {
2772
+ border-bottom: 1px solid var(--pte-new-colors-borderMedium);
2773
+ margin-top: -1px;
2774
+ }
2775
+
2776
+ .paris_activeTabBorder_7ktvU {
2777
+ position: absolute;
2778
+ bottom: 0;
2779
+ width: var(--tab-width);
2780
+ height: 4px;
2781
+ background-color: var(--pte-new-colors-contentPrimary);
2782
+ transition: transform var(--pte-animations-duration-slow) var(--pte-animations-timing-easeInOutExpo);
2783
+ transform: translateX(calc(var(--tab-width) * var(--tab-index)));
2784
+ }
2785
+
2786
+ .paris_activeTabUnderline_75cMR {
2787
+ position: absolute;
2788
+ left: 0;
2789
+ right: 0;
2790
+ background-color: var(--pte-new-colors-contentPrimary);
2791
+ z-index: 1;
2792
+ overflow: visible;
2793
+ }
2794
+ .paris_activeTabUnderline_75cMR.paris_thick_v-JaE {
2795
+ bottom: -4px;
2796
+ height: 4px;
2797
+ }
2798
+ .paris_activeTabUnderline_75cMR.paris_thin_JoVrb {
2799
+ bottom: -1px;
2800
+ height: 1px;
2801
+ }
2802
+
2803
+ .paris_tab_BPTlK {
2804
+ position: relative;
2805
+ font-weight: 500 !important;
2806
+ padding: 9px 30px;
2807
+ width: var(--tab-width);
2808
+ flex-shrink: 0;
2809
+ overflow: visible;
2810
+ cursor: default;
2811
+ transition: all var(--pte-animations-duration-normal) var(--pte-animations-timing-easeInOut);
2812
+ }
2813
+ .paris_tab_BPTlK:not([aria-selected=true]) {
2814
+ color: var(--pte-new-colors-contentTertiary) !important;
2815
+ }
2816
+ .paris_tab_BPTlK.paris_compact_-sR2e {
2817
+ width: auto;
2818
+ padding: 4px 0 6px 0;
2819
+ margin: 0 20px 0 0;
2820
+ }
2821
+ .paris_tab_BPTlK.paris_full_iRdoV {
2822
+ width: 100px;
2823
+ padding: 13px 13px;
2824
+ flex-grow: 1;
2825
+ }
2826
+ .paris_tab_BPTlK.paris_fixed_5Kbrw[aria-selected=true], .paris_tab_BPTlK.paris_full_iRdoV[aria-selected=true] {
2827
+ background-color: var(--pte-new-colors-overlayStrong);
2828
+ }
2829
+ .paris_tab_BPTlK.paris_fixed_5Kbrw:hover, .paris_tab_BPTlK.paris_full_iRdoV:hover {
2830
+ background-color: var(--pte-new-colors-overlayMedium);
2831
+ }
2832
+ .paris_tab_BPTlK.paris_fixed_5Kbrw:active, .paris_tab_BPTlK.paris_full_iRdoV:active {
2833
+ background-color: var(--pte-new-colors-overlayStrong);
2834
+ }
2835
+ @container (min-width: 641px) {
2836
+ .paris_tab_BPTlK.paris_auto_G1ju7[aria-selected=true] {
2837
+ background-color: var(--pte-new-colors-overlayStrong);
2838
+ }
2839
+ .paris_tab_BPTlK.paris_auto_G1ju7:hover {
2840
+ background-color: var(--pte-new-colors-overlayMedium);
2841
+ }
2842
+ .paris_tab_BPTlK.paris_auto_G1ju7:active {
2843
+ background-color: var(--pte-new-colors-overlayStrong);
2844
+ }
2845
+ }
2846
+ @container (max-width: 640px) {
2847
+ .paris_tab_BPTlK.paris_auto_G1ju7 {
2848
+ width: auto;
2849
+ padding: 4px 0 6px 0;
2850
+ margin: 0 20px 0 0;
2851
+ }
2852
+ }
2853
+
2854
+ .paris_tabPanels_cqaWU.paris_glass_YQIOd {
2855
+ width: 100%;
2856
+ }
2857
+
2858
+ .paris_panel_BWe-5 {
2859
+ padding-top: 16px;
2860
+ overflow-y: scroll;
2861
+ height: 100%;
2862
+ width: 100%;
2863
+ }
2864
+ .paris_panel_BWe-5.paris_glass_YQIOd {
2865
+ overflow-y: visible;
2866
+ height: auto;
2867
+ }
2868
+ .paris_tag_QE3dx {
2869
+ width: fit-content;
2870
+ }
2871
+
2872
+ .paris_normal_8yko9 {
2873
+ height: 26px;
2874
+ }
2875
+ .paris_normal_8yko9.paris_rectangle_0M8zy {
2876
+ padding: 7px 13px;
2877
+ }
2878
+ .paris_normal_8yko9.paris_rectangle_0M8zy.paris_sharp_Qf5k1 {
2879
+ padding: 6px 12px;
2880
+ }
2881
+ .paris_normal_8yko9.paris_rectangle_0M8zy.paris_secondary_yPIwf, .paris_normal_8yko9.paris_rectangle_0M8zy.paris_draft_Y1UjW, .paris_normal_8yko9.paris_rectangle_0M8zy.paris_new_5Kd0m {
2882
+ padding: 6px 12px;
2883
+ }
2884
+ .paris_normal_8yko9.paris_square_xlGrW {
2885
+ width: 26px;
2886
+ padding: 4px;
2887
+ }
2888
+ .paris_normal_8yko9.paris_square_xlGrW.paris_sharp_Qf5k1 {
2889
+ padding: 3px;
2890
+ }
2891
+ .paris_normal_8yko9.paris_square_xlGrW.paris_secondary_yPIwf, .paris_normal_8yko9.paris_square_xlGrW.paris_draft_Y1UjW, .paris_normal_8yko9.paris_square_xlGrW.paris_new_5Kd0m {
2892
+ padding: 3px;
2893
+ }
2894
+
2895
+ .paris_compact_0Tvlm {
2896
+ height: 20px;
2897
+ }
2898
+ .paris_compact_0Tvlm.paris_rectangle_0M8zy {
2899
+ padding: 5px 10px;
2900
+ }
2901
+ .paris_compact_0Tvlm.paris_rectangle_0M8zy.paris_sharp_Qf5k1 {
2902
+ padding: 4px 9px;
2903
+ }
2904
+ .paris_compact_0Tvlm.paris_rectangle_0M8zy.paris_secondary_yPIwf, .paris_compact_0Tvlm.paris_rectangle_0M8zy.paris_draft_Y1UjW, .paris_compact_0Tvlm.paris_rectangle_0M8zy.paris_new_5Kd0m {
2905
+ padding: 4px 9px;
2906
+ }
2907
+ .paris_compact_0Tvlm.paris_square_xlGrW {
2908
+ width: 20px;
2909
+ padding: 4px;
2910
+ }
2911
+ .paris_compact_0Tvlm.paris_square_xlGrW.paris_sharp_Qf5k1 {
2912
+ padding: 3px;
2913
+ }
2914
+ .paris_compact_0Tvlm.paris_square_xlGrW.paris_secondary_yPIwf, .paris_compact_0Tvlm.paris_square_xlGrW.paris_draft_Y1UjW, .paris_compact_0Tvlm.paris_square_xlGrW.paris_new_5Kd0m {
2915
+ padding: 3px;
2916
+ }
2917
+
2918
+ .paris_sharp_Qf5k1 {
2919
+ border-radius: var(--pte-borders-radius-rectangle);
2920
+ border: 1px solid;
2921
+ }
2922
+
2923
+ .paris_rounded_e7vdE {
2924
+ border-radius: var(--pte-borders-radius-roundedSmall);
2925
+ }
2926
+
2927
+ .paris_roundedXL_Hgswm {
2928
+ border-radius: var(--pte-borders-radius-pill);
2929
+ }
2930
+
2931
+ .paris_square_xlGrW {
2932
+ display: flex;
2933
+ flex-direction: row;
2934
+ align-items: center;
2935
+ justify-content: center;
2936
+ }
2937
+
2938
+ .paris_icon_FxMyh {
2939
+ width: 12px;
2940
+ height: 12px;
2941
+ display: flex;
2942
+ flex-direction: row;
2943
+ justify-content: center;
2944
+ align-items: center;
2945
+ }
2946
+ .paris_icon_FxMyh svg {
2947
+ width: 10px !important;
2948
+ height: 10px !important;
2949
+ }
2950
+
2951
+ .paris_default_6fhzM {
2952
+ background-color: var(--pte-new-colors-overlayStrong);
2953
+ color: var(--pte-new-colors-contentSecondary);
2954
+ border-color: var(--pte-new-colors-contentSecondary);
2955
+ }
2956
+
2957
+ .paris_secondary_yPIwf {
2958
+ background-color: transparent;
2959
+ color: var(--pte-new-colors-contentSecondary);
2960
+ border: 1px solid var(--pte-new-colors-borderMedium);
2961
+ }
2962
+
2963
+ .paris_positive_RauML {
2964
+ color: var(--pte-new-colors-contentPositive);
2965
+ background-color: var(--pte-new-colors-backgroundPositive);
2966
+ border-color: var(--pte-new-colors-contentPositive);
2967
+ }
2968
+ .paris_positive_RauML[data-status=medium] {
2969
+ background-color: var(--pte-new-colors-backgroundPositiveMedium);
2970
+ border-color: var(--pte-new-colors-contentPositiveMedium);
2971
+ }
2972
+ .paris_positive_RauML[data-status=strong] {
2973
+ background-color: var(--pte-new-colors-backgroundPositiveStrong);
2974
+ border-color: var(--pte-new-colors-contentPositiveStrong);
2975
+ }
2976
+
2977
+ .paris_warning_Ch7Pn {
2978
+ color: var(--pte-new-colors-contentWarning);
2979
+ background-color: var(--pte-new-colors-backgroundWarning);
2980
+ border-color: var(--pte-new-colors-contentWarning);
2981
+ }
2982
+ .paris_warning_Ch7Pn[data-status=medium] {
2983
+ background-color: var(--pte-new-colors-backgroundWarningMedium);
2984
+ border-color: var(--pte-new-colors-contentWarningMedium);
2985
+ }
2986
+ .paris_warning_Ch7Pn[data-status=strong] {
2987
+ background-color: var(--pte-new-colors-backgroundWarningStrong);
2988
+ border-color: var(--pte-new-colors-contentWarningStrong);
2989
+ }
2990
+
2991
+ .paris_negative_HlkYZ {
2992
+ color: var(--pte-new-colors-contentNegative);
2993
+ background-color: var(--pte-new-colors-backgroundNegative);
2994
+ border-color: var(--pte-new-colors-contentNegative);
2995
+ }
2996
+ .paris_negative_HlkYZ[data-status=medium] {
2997
+ background-color: var(--pte-new-colors-backgroundNegativeMedium);
2998
+ border-color: var(--pte-new-colors-contentNegativeMedium);
2999
+ }
3000
+ .paris_negative_HlkYZ[data-status=strong] {
3001
+ background-color: var(--pte-new-colors-backgroundNegativeStrong);
3002
+ border-color: var(--pte-new-colors-contentNegativeStrong);
3003
+ }
3004
+
3005
+ .paris_void_KWTJM {
3006
+ background-color: var(--pte-new-colors-backgroundSecondary);
3007
+ color: var(--pte-new-colors-contentDisabled);
3008
+ border-color: var(--pte-new-colors-contentDisabled);
3009
+ }
3010
+
3011
+ .paris_draft_Y1UjW {
3012
+ background-color: transparent;
3013
+ color: var(--pte-new-colors-contentTertiary);
3014
+ border: 1px dashed var(--pte-new-colors-borderMedium);
3015
+ }
3016
+
3017
+ .paris_new_5Kd0m {
3018
+ color: var(--pte-new-colors-contentPrimary);
3019
+ background-color: var(--pte-new-colors-backgroundAccentMedium);
3020
+ animation: paris_glow_6NhRz 2s infinite var(--pte-new-animations-timing-easeInOut);
3021
+ border: 1px solid var(--pte-new-colors-contentAccent);
3022
+ }
3023
+
3024
+ @keyframes paris_glow_6NhRz {
3025
+ 0%, 100% {
3026
+ box-shadow: var(--pte-new-lighting-glowSubtle1), var(--pte-new-lighting-glowSubtle2), var(--pte-new-lighting-glowSubtle3);
3027
+ }
3028
+ 50% {
3029
+ box-shadow: var(--pte-new-lighting-glowDeep1), var(--pte-new-lighting-glowDeep2), var(--pte-new-lighting-glowDeep3);
3030
+ }
3031
+ }
3032
+ .paris_text_RV-f- {
3033
+ font-family: var(--pte-typography-fontFamily);
3034
+ color: var(--text-color);
3035
+ }
3036
+
3037
+ /* Font weight theme values */
3038
+ .paris_weight-thin_VdyKV {
3039
+ font-weight: var(--pte-typography-fontWeights-thin) !important;
3040
+ }
3041
+
3042
+ .paris_weight-extralight_v2q7X {
3043
+ font-weight: var(--pte-typography-fontWeights-extralight) !important;
3044
+ }
3045
+
3046
+ .paris_weight-light_M9spZ {
3047
+ font-weight: var(--pte-typography-fontWeights-light) !important;
3048
+ }
3049
+
3050
+ .paris_weight-normal_LewA5 {
3051
+ font-weight: var(--pte-typography-fontWeights-normal) !important;
3052
+ }
3053
+
3054
+ .paris_weight-medium_GHnah {
3055
+ font-weight: var(--pte-typography-fontWeights-medium) !important;
3056
+ }
3057
+
3058
+ .paris_weight-semibold_WyV-- {
3059
+ font-weight: var(--pte-typography-fontWeights-semibold) !important;
3060
+ }
3061
+
3062
+ .paris_weight-bold_hsKog {
3063
+ font-weight: var(--pte-typography-fontWeights-bold) !important;
3064
+ }
3065
+
3066
+ .paris_weight-extrabold_PQngW {
3067
+ font-weight: var(--pte-typography-fontWeights-extrabold) !important;
3068
+ }
3069
+
3070
+ .paris_weight-black_ukoVu {
3071
+ font-weight: var(--pte-typography-fontWeights-black) !important;
3072
+ }
3073
+
3074
+ .paris_weight-extrablack_Jg1hX {
3075
+ font-weight: var(--pte-typography-fontWeights-extrablack) !important;
3076
+ }
3077
+
3078
+ /* Font style theme values */
3079
+ .paris_fontStyle-normal_hecdJ {
3080
+ font-style: var(--pte-typography-fontStyles-normal) !important;
3081
+ }
3082
+
3083
+ .paris_fontStyle-italic_TlCEh {
3084
+ font-style: var(--pte-typography-fontStyles-italic) !important;
3085
+ }
3086
+ /* Auto-generated with `pnpm generate:text` on Sat Oct 21 2023 02:16:31 GMT-0700 (Pacific Daylight Time) */
3087
+ /* Do not edit manually; instead, edit the `generateTextClasses` function in `scripts/text.ts` and run `pnpm generate:text -c`. */
3088
+
3089
+ .paris_displayLarge_5a9iJ {
3090
+ font-size: var(--pte-typography-styles-displayLarge-fontSize);
3091
+ font-style: var(--pte-typography-styles-displayLarge-fontStyle);
3092
+ font-weight: var(--pte-typography-styles-displayLarge-fontWeight);
3093
+ line-height: var(--pte-typography-styles-displayLarge-lineHeight);
3094
+ letter-spacing: var(--pte-typography-styles-displayLarge-letterSpacing);
3095
+ text-transform: var(--pte-typography-styles-displayLarge-textTransform);
3096
+ }
3097
+
3098
+ .paris_displayMedium_2lnZv {
3099
+ font-size: var(--pte-typography-styles-displayMedium-fontSize);
3100
+ font-style: var(--pte-typography-styles-displayMedium-fontStyle);
3101
+ font-weight: var(--pte-typography-styles-displayMedium-fontWeight);
3102
+ line-height: var(--pte-typography-styles-displayMedium-lineHeight);
3103
+ letter-spacing: var(--pte-typography-styles-displayMedium-letterSpacing);
3104
+ text-transform: var(--pte-typography-styles-displayMedium-textTransform);
3105
+ }
3106
+
3107
+ .paris_display_gJawE {
3108
+ font-size: var(--pte-typography-styles-display-fontSize);
3109
+ font-style: var(--pte-typography-styles-display-fontStyle);
3110
+ font-weight: var(--pte-typography-styles-display-fontWeight);
3111
+ line-height: var(--pte-typography-styles-display-lineHeight);
3112
+ letter-spacing: var(--pte-typography-styles-display-letterSpacing);
3113
+ text-transform: var(--pte-typography-styles-display-textTransform);
3114
+ }
3115
+
3116
+ .paris_displaySmall_pR3fw {
3117
+ font-size: var(--pte-typography-styles-displaySmall-fontSize);
3118
+ font-style: var(--pte-typography-styles-displaySmall-fontStyle);
3119
+ font-weight: var(--pte-typography-styles-displaySmall-fontWeight);
3120
+ line-height: var(--pte-typography-styles-displaySmall-lineHeight);
3121
+ letter-spacing: var(--pte-typography-styles-displaySmall-letterSpacing);
3122
+ text-transform: var(--pte-typography-styles-displaySmall-textTransform);
3123
+ }
3124
+
3125
+ .paris_headingLarge_G-fQ1 {
3126
+ font-size: var(--pte-typography-styles-headingLarge-fontSize);
3127
+ font-style: var(--pte-typography-styles-headingLarge-fontStyle);
3128
+ font-weight: var(--pte-typography-styles-headingLarge-fontWeight);
3129
+ line-height: var(--pte-typography-styles-headingLarge-lineHeight);
3130
+ letter-spacing: var(--pte-typography-styles-headingLarge-letterSpacing);
3131
+ text-transform: var(--pte-typography-styles-headingLarge-textTransform);
3132
+ }
3133
+
3134
+ .paris_headingMedium_Bt1RN {
3135
+ font-size: var(--pte-typography-styles-headingMedium-fontSize);
3136
+ font-style: var(--pte-typography-styles-headingMedium-fontStyle);
3137
+ font-weight: var(--pte-typography-styles-headingMedium-fontWeight);
3138
+ line-height: var(--pte-typography-styles-headingMedium-lineHeight);
3139
+ letter-spacing: var(--pte-typography-styles-headingMedium-letterSpacing);
3140
+ text-transform: var(--pte-typography-styles-headingMedium-textTransform);
3141
+ }
3142
+
3143
+ .paris_headingSmall_WtHJe {
3144
+ font-size: var(--pte-typography-styles-headingSmall-fontSize);
3145
+ font-style: var(--pte-typography-styles-headingSmall-fontStyle);
3146
+ font-weight: var(--pte-typography-styles-headingSmall-fontWeight);
3147
+ line-height: var(--pte-typography-styles-headingSmall-lineHeight);
3148
+ letter-spacing: var(--pte-typography-styles-headingSmall-letterSpacing);
3149
+ text-transform: var(--pte-typography-styles-headingSmall-textTransform);
3150
+ }
3151
+
3152
+ .paris_headingXSmall_v5N42 {
3153
+ font-size: var(--pte-typography-styles-headingXSmall-fontSize);
3154
+ font-style: var(--pte-typography-styles-headingXSmall-fontStyle);
3155
+ font-weight: var(--pte-typography-styles-headingXSmall-fontWeight);
3156
+ line-height: var(--pte-typography-styles-headingXSmall-lineHeight);
3157
+ letter-spacing: var(--pte-typography-styles-headingXSmall-letterSpacing);
3158
+ text-transform: var(--pte-typography-styles-headingXSmall-textTransform);
3159
+ }
3160
+
3161
+ .paris_headingXXSmall_E-WTJ {
3162
+ font-size: var(--pte-typography-styles-headingXXSmall-fontSize);
3163
+ font-style: var(--pte-typography-styles-headingXXSmall-fontStyle);
3164
+ font-weight: var(--pte-typography-styles-headingXXSmall-fontWeight);
3165
+ line-height: var(--pte-typography-styles-headingXXSmall-lineHeight);
3166
+ letter-spacing: var(--pte-typography-styles-headingXXSmall-letterSpacing);
3167
+ text-transform: var(--pte-typography-styles-headingXXSmall-textTransform);
3168
+ }
3169
+
3170
+ .paris_labelXLarge_5WUT3 {
3171
+ font-size: var(--pte-typography-styles-labelXLarge-fontSize);
3172
+ font-style: var(--pte-typography-styles-labelXLarge-fontStyle);
3173
+ font-weight: var(--pte-typography-styles-labelXLarge-fontWeight);
3174
+ line-height: var(--pte-typography-styles-labelXLarge-lineHeight);
3175
+ letter-spacing: var(--pte-typography-styles-labelXLarge-letterSpacing);
3176
+ text-transform: var(--pte-typography-styles-labelXLarge-textTransform);
3177
+ }
3178
+
3179
+ .paris_labelLarge_Wx7Pu {
3180
+ font-size: var(--pte-typography-styles-labelLarge-fontSize);
3181
+ font-style: var(--pte-typography-styles-labelLarge-fontStyle);
3182
+ font-weight: var(--pte-typography-styles-labelLarge-fontWeight);
3183
+ line-height: var(--pte-typography-styles-labelLarge-lineHeight);
3184
+ letter-spacing: var(--pte-typography-styles-labelLarge-letterSpacing);
3185
+ text-transform: var(--pte-typography-styles-labelLarge-textTransform);
3186
+ }
3187
+
3188
+ .paris_labelMedium_wC7JS {
3189
+ font-size: var(--pte-typography-styles-labelMedium-fontSize);
3190
+ font-style: var(--pte-typography-styles-labelMedium-fontStyle);
3191
+ font-weight: var(--pte-typography-styles-labelMedium-fontWeight);
3192
+ line-height: var(--pte-typography-styles-labelMedium-lineHeight);
3193
+ letter-spacing: var(--pte-typography-styles-labelMedium-letterSpacing);
3194
+ text-transform: var(--pte-typography-styles-labelMedium-textTransform);
3195
+ }
3196
+
3197
+ .paris_labelSmall_6bstP {
3198
+ font-size: var(--pte-typography-styles-labelSmall-fontSize);
3199
+ font-style: var(--pte-typography-styles-labelSmall-fontStyle);
3200
+ font-weight: var(--pte-typography-styles-labelSmall-fontWeight);
3201
+ line-height: var(--pte-typography-styles-labelSmall-lineHeight);
3202
+ letter-spacing: var(--pte-typography-styles-labelSmall-letterSpacing);
3203
+ text-transform: var(--pte-typography-styles-labelSmall-textTransform);
3204
+ }
3205
+
3206
+ .paris_labelXSmall_x4BIf {
3207
+ font-size: var(--pte-typography-styles-labelXSmall-fontSize);
3208
+ font-style: var(--pte-typography-styles-labelXSmall-fontStyle);
3209
+ font-weight: var(--pte-typography-styles-labelXSmall-fontWeight);
3210
+ line-height: var(--pte-typography-styles-labelXSmall-lineHeight);
3211
+ letter-spacing: var(--pte-typography-styles-labelXSmall-letterSpacing);
3212
+ text-transform: var(--pte-typography-styles-labelXSmall-textTransform);
3213
+ }
3214
+
3215
+ .paris_labelXXSmall_k3xiC {
3216
+ font-size: var(--pte-typography-styles-labelXXSmall-fontSize);
3217
+ font-style: var(--pte-typography-styles-labelXXSmall-fontStyle);
3218
+ font-weight: var(--pte-typography-styles-labelXXSmall-fontWeight);
3219
+ line-height: var(--pte-typography-styles-labelXXSmall-lineHeight);
3220
+ letter-spacing: var(--pte-typography-styles-labelXXSmall-letterSpacing);
3221
+ text-transform: var(--pte-typography-styles-labelXXSmall-textTransform);
3222
+ }
3223
+
3224
+ .paris_paragraphLarge_-3XB- {
3225
+ font-size: var(--pte-typography-styles-paragraphLarge-fontSize);
3226
+ font-style: var(--pte-typography-styles-paragraphLarge-fontStyle);
3227
+ font-weight: var(--pte-typography-styles-paragraphLarge-fontWeight);
3228
+ line-height: var(--pte-typography-styles-paragraphLarge-lineHeight);
3229
+ letter-spacing: var(--pte-typography-styles-paragraphLarge-letterSpacing);
3230
+ text-transform: var(--pte-typography-styles-paragraphLarge-textTransform);
3231
+ }
3232
+
3233
+ .paris_paragraphMedium_ADqFP {
3234
+ font-size: var(--pte-typography-styles-paragraphMedium-fontSize);
3235
+ font-style: var(--pte-typography-styles-paragraphMedium-fontStyle);
3236
+ font-weight: var(--pte-typography-styles-paragraphMedium-fontWeight);
3237
+ line-height: var(--pte-typography-styles-paragraphMedium-lineHeight);
3238
+ letter-spacing: var(--pte-typography-styles-paragraphMedium-letterSpacing);
3239
+ text-transform: var(--pte-typography-styles-paragraphMedium-textTransform);
3240
+ }
3241
+
3242
+ .paris_paragraphSmall_MMHdb {
3243
+ font-size: var(--pte-typography-styles-paragraphSmall-fontSize);
3244
+ font-style: var(--pte-typography-styles-paragraphSmall-fontStyle);
3245
+ font-weight: var(--pte-typography-styles-paragraphSmall-fontWeight);
3246
+ line-height: var(--pte-typography-styles-paragraphSmall-lineHeight);
3247
+ letter-spacing: var(--pte-typography-styles-paragraphSmall-letterSpacing);
3248
+ text-transform: var(--pte-typography-styles-paragraphSmall-textTransform);
3249
+ }
3250
+
3251
+ .paris_paragraphXSmall_gT9ii {
3252
+ font-size: var(--pte-typography-styles-paragraphXSmall-fontSize);
3253
+ font-style: var(--pte-typography-styles-paragraphXSmall-fontStyle);
3254
+ font-weight: var(--pte-typography-styles-paragraphXSmall-fontWeight);
3255
+ line-height: var(--pte-typography-styles-paragraphXSmall-lineHeight);
3256
+ letter-spacing: var(--pte-typography-styles-paragraphXSmall-letterSpacing);
3257
+ text-transform: var(--pte-typography-styles-paragraphXSmall-textTransform);
3258
+ }
3259
+
3260
+ .paris_paragraphXXSmall_7TY90 {
3261
+ font-size: var(--pte-typography-styles-paragraphXXSmall-fontSize);
3262
+ font-style: var(--pte-typography-styles-paragraphXXSmall-fontStyle);
3263
+ font-weight: var(--pte-typography-styles-paragraphXXSmall-fontWeight);
3264
+ line-height: var(--pte-typography-styles-paragraphXXSmall-lineHeight);
3265
+ letter-spacing: var(--pte-typography-styles-paragraphXXSmall-letterSpacing);
3266
+ text-transform: var(--pte-typography-styles-paragraphXXSmall-textTransform);
3267
+ }
3268
+
3269
+ .paris_container_LkvM4 {
3270
+ position: relative;
3271
+ }
3272
+
3273
+ .paris_glareWrapper_V80bN {
3274
+ position: absolute;
3275
+ top: 0;
3276
+ left: 0;
3277
+ width: 100%;
3278
+ height: 100%;
3279
+ overflow: hidden;
3280
+ -webkit-mask-image: -webkit-radial-gradient(white, black);
3281
+ pointer-events: none;
3282
+ }
3283
+
3284
+ .paris_glare_5v3J7 {
3285
+ position: absolute;
3286
+ top: 50%;
3287
+ left: 50%;
3288
+ transform-origin: 0% 0%;
3289
+ pointer-events: none;
3290
+ }
3291
+ .paris_toast_5rwNh {
3292
+ color: var(--pte-new-colors-contentInversePrimary) !important;
3293
+ background-color: var(--pte-new-colors-buttonFill) !important;
3294
+ border-radius: var(--pte-borders-radius-rounded) !important;
3295
+ backdrop-filter: blur(4px) !important;
3296
+ box-shadow: var(--pte-new-lighting-subtlePopup) !important;
3297
+ font-weight: 500 !important;
3298
+ padding: 4px 8px !important;
3299
+ }
3300
+ .paris_toast_5rwNh svg {
3301
+ width: 10px;
3302
+ margin-left: 8px;
3303
+ }
3304
+ .paris_toast_5rwNh > div {
3305
+ margin-left: 8px;
3306
+ margin-right: 8px;
3307
+ }