@doist/reactist 9.2.0-beta.7 → 10.0.0-beta.10

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 (388) hide show
  1. package/README.md +12 -2
  2. package/dist/reactist.cjs.development.js +1405 -842
  3. package/dist/reactist.cjs.development.js.map +1 -1
  4. package/dist/reactist.cjs.production.min.js +1 -1
  5. package/dist/reactist.cjs.production.min.js.map +1 -1
  6. package/es/components/color-picker/color-picker.js +1 -1
  7. package/es/components/color-picker/color-picker.js.map +1 -1
  8. package/es/components/{button/button.js → deprecated-button/deprecated-button.js} +7 -3
  9. package/es/components/deprecated-button/deprecated-button.js.map +1 -0
  10. package/es/components/{button → deprecated-button}/index.js +1 -1
  11. package/es/components/{button → deprecated-button}/index.js.map +0 -0
  12. package/es/components/{loading/loading.js → deprecated-loading/deprecated-loading.js} +3 -1
  13. package/es/components/deprecated-loading/deprecated-loading.js.map +1 -0
  14. package/es/components/{modal/modal.js → deprecated-modal/deprecated-modal.js} +9 -2
  15. package/es/components/deprecated-modal/deprecated-modal.js.map +1 -0
  16. package/es/components/{modal → deprecated-modal}/index.js +1 -1
  17. package/es/components/deprecated-modal/index.js.map +1 -0
  18. package/es/components/dropdown/dropdown.js +5 -3
  19. package/es/components/dropdown/dropdown.js.map +1 -1
  20. package/es/components/error-message/error-message.js +3 -1
  21. package/es/components/error-message/error-message.js.map +1 -1
  22. package/es/components/keyboard-shortcut/keyboard-shortcut.js +4 -2
  23. package/es/components/keyboard-shortcut/keyboard-shortcut.js.map +1 -1
  24. package/es/components/menu/menu.js +22 -20
  25. package/es/components/menu/menu.js.map +1 -1
  26. package/es/components/range-input/range-input.js +1 -1
  27. package/es/components/range-input/range-input.js.map +1 -1
  28. package/es/components/select/select.js +1 -1
  29. package/es/components/select/select.js.map +1 -1
  30. package/es/hooks/use-previous/use-previous.js +26 -0
  31. package/es/hooks/use-previous/use-previous.js.map +1 -0
  32. package/es/index.js +11 -6
  33. package/es/index.js.map +1 -1
  34. package/es/new-components/base-button/base-button.js +70 -0
  35. package/es/new-components/base-button/base-button.js.map +1 -0
  36. package/es/new-components/base-button/base-button.module.css.js +4 -0
  37. package/es/new-components/base-button/base-button.module.css.js.map +1 -0
  38. package/es/new-components/base-field/base-field.js +29 -29
  39. package/es/new-components/base-field/base-field.js.map +1 -1
  40. package/es/new-components/base-field/base-field.module.css.js +1 -1
  41. package/es/new-components/box/box.js +28 -10
  42. package/es/new-components/box/box.js.map +1 -1
  43. package/es/new-components/box/box.module.css.js +1 -1
  44. package/es/new-components/box/margin.module.css.js +4 -0
  45. package/es/new-components/box/margin.module.css.js.map +1 -0
  46. package/es/new-components/box/padding.module.css.js +4 -0
  47. package/es/new-components/box/padding.module.css.js.map +1 -0
  48. package/es/new-components/button/button.js +40 -0
  49. package/es/new-components/button/button.js.map +1 -0
  50. package/es/new-components/button-link/button-link.js +25 -14
  51. package/es/new-components/button-link/button-link.js.map +1 -1
  52. package/es/new-components/checkbox-field/checkbox-field.js +45 -23
  53. package/es/new-components/checkbox-field/checkbox-field.js.map +1 -1
  54. package/es/new-components/checkbox-field/checkbox-field.module.css.js +1 -1
  55. package/es/new-components/columns/columns.js +28 -17
  56. package/es/new-components/columns/columns.js.map +1 -1
  57. package/es/new-components/columns/columns.module.css.js +1 -1
  58. package/es/new-components/divider/divider.js +3 -3
  59. package/es/new-components/divider/divider.js.map +1 -1
  60. package/es/new-components/divider/divider.module.css.js +1 -1
  61. package/es/new-components/heading/heading.js +9 -3
  62. package/es/new-components/heading/heading.js.map +1 -1
  63. package/es/new-components/heading/heading.module.css.js +1 -1
  64. package/es/new-components/hidden/hidden.js +54 -0
  65. package/es/new-components/hidden/hidden.js.map +1 -0
  66. package/es/new-components/hidden/hidden.module.css.js +4 -0
  67. package/es/new-components/hidden/hidden.module.css.js.map +1 -0
  68. package/es/new-components/hidden-visually/hidden-visually.js +22 -0
  69. package/es/new-components/hidden-visually/hidden-visually.js.map +1 -0
  70. package/es/new-components/hidden-visually/hidden-visually.module.css.js +4 -0
  71. package/es/new-components/hidden-visually/hidden-visually.module.css.js.map +1 -0
  72. package/es/new-components/inline/inline.js +9 -8
  73. package/es/new-components/inline/inline.js.map +1 -1
  74. package/es/new-components/loading/loading.js +33 -0
  75. package/es/new-components/loading/loading.js.map +1 -0
  76. package/es/new-components/modal/modal.js +201 -0
  77. package/es/new-components/modal/modal.js.map +1 -0
  78. package/es/new-components/modal/modal.module.css.js +4 -0
  79. package/es/new-components/modal/modal.module.css.js.map +1 -0
  80. package/es/new-components/password-field/password-field.js +7 -4
  81. package/es/new-components/password-field/password-field.js.map +1 -1
  82. package/es/new-components/responsive-props.js +21 -11
  83. package/es/new-components/responsive-props.js.map +1 -1
  84. package/es/new-components/select-field/select-field.js +12 -6
  85. package/es/new-components/select-field/select-field.js.map +1 -1
  86. package/es/new-components/select-field/select-field.module.css.js +1 -1
  87. package/es/new-components/spinner/spinner.js +26 -0
  88. package/es/new-components/spinner/spinner.js.map +1 -0
  89. package/es/new-components/spinner/spinner.module.css.js +4 -0
  90. package/es/new-components/spinner/spinner.module.css.js.map +1 -0
  91. package/es/new-components/stack/stack.js +23 -13
  92. package/es/new-components/stack/stack.js.map +1 -1
  93. package/es/new-components/switch-field/switch-field.js +47 -28
  94. package/es/new-components/switch-field/switch-field.js.map +1 -1
  95. package/es/new-components/switch-field/switch-field.module.css.js +1 -1
  96. package/es/new-components/tabs/tabs.js +142 -0
  97. package/es/new-components/tabs/tabs.js.map +1 -0
  98. package/es/new-components/tabs/tabs.module.css.js +4 -0
  99. package/es/new-components/tabs/tabs.module.css.js.map +1 -0
  100. package/es/new-components/text/text.js +15 -10
  101. package/es/new-components/text/text.js.map +1 -1
  102. package/es/new-components/text/text.module.css.js +1 -1
  103. package/es/new-components/text-area/text-area.js.map +1 -1
  104. package/es/new-components/text-area/text-area.module.css.js +1 -1
  105. package/es/new-components/text-field/text-field.js +4 -2
  106. package/es/new-components/text-field/text-field.js.map +1 -1
  107. package/es/new-components/text-field/text-field.module.css.js +1 -1
  108. package/es/new-components/text-link/text-link.js +8 -7
  109. package/es/new-components/text-link/text-link.js.map +1 -1
  110. package/es/utils/polymorphism.js +17 -0
  111. package/es/utils/polymorphism.js.map +1 -0
  112. package/lib/components/color-picker/color-picker.js +1 -1
  113. package/lib/components/color-picker/color-picker.js.map +1 -1
  114. package/lib/components/{button/button.d.ts → deprecated-button/deprecated-button.d.ts} +7 -1
  115. package/lib/components/{button/button.js → deprecated-button/deprecated-button.js} +2 -2
  116. package/lib/components/deprecated-button/deprecated-button.js.map +1 -0
  117. package/lib/components/{button/button.test.d.ts → deprecated-button/deprecated-button.test.d.ts} +0 -0
  118. package/lib/components/deprecated-button/index.d.ts +4 -0
  119. package/lib/components/{loading → deprecated-button}/index.js +1 -1
  120. package/lib/components/{button → deprecated-button}/index.js.map +0 -0
  121. package/lib/components/{loading/loading.d.ts → deprecated-loading/deprecated-loading.d.ts} +2 -1
  122. package/lib/components/{loading/loading.js → deprecated-loading/deprecated-loading.js} +1 -1
  123. package/lib/components/deprecated-loading/deprecated-loading.js.map +1 -0
  124. package/lib/components/{loading/Loading.test.d.ts → deprecated-loading/deprecated-loading.test.d.ts} +0 -0
  125. package/lib/components/deprecated-loading/index.d.ts +1 -0
  126. package/lib/components/{modal/modal.d.ts → deprecated-modal/deprecated-modal.d.ts} +6 -1
  127. package/lib/components/{modal/modal.js → deprecated-modal/deprecated-modal.js} +2 -2
  128. package/lib/components/deprecated-modal/deprecated-modal.js.map +1 -0
  129. package/lib/components/{modal/modal.test.d.ts → deprecated-modal/deprecated-modal.test.d.ts} +0 -0
  130. package/lib/components/{modal → deprecated-modal}/index.d.ts +3 -3
  131. package/lib/components/deprecated-modal/index.js +2 -0
  132. package/lib/components/deprecated-modal/index.js.map +1 -0
  133. package/lib/components/dropdown/dropdown.js +1 -1
  134. package/lib/components/dropdown/dropdown.js.map +1 -1
  135. package/lib/components/error-message/error-message.js +1 -1
  136. package/lib/components/error-message/error-message.js.map +1 -1
  137. package/lib/components/keyboard-shortcut/keyboard-shortcut.js +1 -1
  138. package/lib/components/keyboard-shortcut/keyboard-shortcut.js.map +1 -1
  139. package/lib/components/menu/index.d.ts +1 -1
  140. package/lib/components/menu/menu.d.ts +8 -10
  141. package/lib/components/menu/menu.js +1 -1
  142. package/lib/components/menu/menu.js.map +1 -1
  143. package/lib/components/range-input/range-input.js +1 -1
  144. package/lib/components/range-input/range-input.js.map +1 -1
  145. package/lib/components/select/select.js +1 -1
  146. package/lib/components/select/select.js.map +1 -1
  147. package/lib/components/tooltip/index.d.ts +1 -1
  148. package/lib/hooks/use-previous/index.d.ts +1 -0
  149. package/lib/hooks/use-previous/use-previous.d.ts +15 -0
  150. package/lib/hooks/use-previous/use-previous.js +2 -0
  151. package/lib/hooks/use-previous/use-previous.js.map +1 -0
  152. package/lib/index.d.ts +10 -5
  153. package/lib/index.js +1 -1
  154. package/lib/new-components/base-button/base-button.d.ts +65 -0
  155. package/lib/new-components/base-button/base-button.js +2 -0
  156. package/lib/new-components/base-button/base-button.js.map +1 -0
  157. package/lib/new-components/base-button/base-button.module.css.js +2 -0
  158. package/lib/new-components/base-button/base-button.module.css.js.map +1 -0
  159. package/lib/new-components/base-button/index.d.ts +1 -0
  160. package/lib/new-components/base-field/base-field.d.ts +53 -13
  161. package/lib/new-components/base-field/base-field.js +1 -1
  162. package/lib/new-components/base-field/base-field.js.map +1 -1
  163. package/lib/new-components/base-field/base-field.module.css.js +1 -1
  164. package/lib/new-components/box/box.d.ts +24 -13
  165. package/lib/new-components/box/box.js +1 -1
  166. package/lib/new-components/box/box.js.map +1 -1
  167. package/lib/new-components/box/box.module.css.js +1 -1
  168. package/lib/{components/tabs/tabs.test.d.ts → new-components/box/box.test.d.ts} +0 -0
  169. package/lib/new-components/box/margin.module.css.js +2 -0
  170. package/lib/new-components/box/margin.module.css.js.map +1 -0
  171. package/lib/new-components/box/padding.module.css.js +2 -0
  172. package/lib/new-components/box/padding.module.css.js.map +1 -0
  173. package/lib/new-components/button/button.d.ts +48 -0
  174. package/lib/new-components/button/button.js +2 -0
  175. package/lib/new-components/button/button.js.map +1 -0
  176. package/lib/new-components/button/button.test.d.ts +1 -0
  177. package/lib/new-components/button/index.d.ts +1 -0
  178. package/lib/new-components/button-link/button-link-story-wrapper.d.ts +7 -0
  179. package/lib/new-components/button-link/button-link.d.ts +14 -8
  180. package/lib/new-components/button-link/button-link.js +1 -1
  181. package/lib/new-components/button-link/button-link.js.map +1 -1
  182. package/lib/new-components/button-link/button-link.test.d.ts +1 -0
  183. package/lib/new-components/checkbox-field/checkbox-field.d.ts +3 -3
  184. package/lib/new-components/checkbox-field/checkbox-field.js +1 -1
  185. package/lib/new-components/checkbox-field/checkbox-field.js.map +1 -1
  186. package/lib/new-components/checkbox-field/checkbox-field.module.css.js +1 -1
  187. package/lib/new-components/checkbox-field/checkbox-field.test.d.ts +1 -0
  188. package/lib/new-components/columns/columns.d.ts +4 -5
  189. package/lib/new-components/columns/columns.js +1 -1
  190. package/lib/new-components/columns/columns.js.map +1 -1
  191. package/lib/new-components/columns/columns.module.css.js +1 -1
  192. package/lib/new-components/columns/columns.test.d.ts +1 -0
  193. package/lib/new-components/common-types.d.ts +2 -0
  194. package/lib/new-components/divider/divider.d.ts +2 -2
  195. package/lib/new-components/divider/divider.js +1 -1
  196. package/lib/new-components/divider/divider.js.map +1 -1
  197. package/lib/new-components/divider/divider.module.css.js +1 -1
  198. package/lib/new-components/heading/heading.d.ts +101 -2
  199. package/lib/new-components/heading/heading.js +1 -1
  200. package/lib/new-components/heading/heading.js.map +1 -1
  201. package/lib/new-components/heading/heading.module.css.js +1 -1
  202. package/lib/new-components/heading/heading.test.d.ts +1 -0
  203. package/lib/new-components/hidden/hidden.d.ts +49 -0
  204. package/lib/new-components/hidden/hidden.js +2 -0
  205. package/lib/new-components/hidden/hidden.js.map +1 -0
  206. package/lib/new-components/hidden/hidden.module.css.js +2 -0
  207. package/lib/new-components/hidden/hidden.module.css.js.map +1 -0
  208. package/lib/new-components/hidden/hidden.test.d.ts +1 -0
  209. package/lib/new-components/hidden/index.d.ts +1 -0
  210. package/lib/new-components/hidden-visually/hidden-visually.d.ts +11 -0
  211. package/lib/new-components/hidden-visually/hidden-visually.js +2 -0
  212. package/lib/new-components/hidden-visually/hidden-visually.js.map +1 -0
  213. package/lib/new-components/hidden-visually/hidden-visually.module.css.js +2 -0
  214. package/lib/new-components/hidden-visually/hidden-visually.module.css.js.map +1 -0
  215. package/lib/new-components/hidden-visually/hidden-visually.test.d.ts +1 -0
  216. package/lib/new-components/hidden-visually/index.d.ts +1 -0
  217. package/lib/new-components/inline/inline.d.ts +1 -2
  218. package/lib/new-components/inline/inline.js +1 -1
  219. package/lib/new-components/inline/inline.js.map +1 -1
  220. package/lib/new-components/inline/inline.test.d.ts +1 -0
  221. package/lib/new-components/loading/index.d.ts +1 -0
  222. package/lib/new-components/loading/loading.d.ts +26 -0
  223. package/lib/new-components/loading/loading.js +2 -0
  224. package/lib/new-components/loading/loading.js.map +1 -0
  225. package/lib/new-components/loading/loading.test.d.ts +1 -0
  226. package/lib/new-components/modal/index.d.ts +1 -0
  227. package/lib/new-components/modal/modal-stories-components.d.ts +35 -0
  228. package/lib/new-components/modal/modal.d.ts +151 -0
  229. package/lib/new-components/modal/modal.js +2 -0
  230. package/lib/new-components/modal/modal.js.map +1 -0
  231. package/lib/new-components/modal/modal.module.css.js +2 -0
  232. package/lib/new-components/modal/modal.module.css.js.map +1 -0
  233. package/lib/new-components/modal/modal.test.d.ts +1 -0
  234. package/lib/new-components/password-field/password-field.d.ts +2 -2
  235. package/lib/new-components/password-field/password-field.js +1 -1
  236. package/lib/new-components/password-field/password-field.js.map +1 -1
  237. package/lib/new-components/password-field/password-field.test.d.ts +1 -0
  238. package/lib/new-components/responsive-props.d.ts +12 -14
  239. package/lib/new-components/responsive-props.js +1 -1
  240. package/lib/new-components/responsive-props.js.map +1 -1
  241. package/lib/new-components/select-field/select-field.d.ts +4 -4
  242. package/lib/new-components/select-field/select-field.js +1 -1
  243. package/lib/new-components/select-field/select-field.js.map +1 -1
  244. package/lib/new-components/select-field/select-field.module.css.js +1 -1
  245. package/lib/new-components/select-field/select-field.test.d.ts +1 -0
  246. package/lib/new-components/spinner/index.d.ts +1 -0
  247. package/lib/new-components/spinner/spinner.d.ts +5 -0
  248. package/lib/new-components/spinner/spinner.js +2 -0
  249. package/lib/new-components/spinner/spinner.js.map +1 -0
  250. package/lib/new-components/spinner/spinner.module.css.js +2 -0
  251. package/lib/new-components/spinner/spinner.module.css.js.map +1 -0
  252. package/lib/new-components/stack/stack.d.ts +8 -5
  253. package/lib/new-components/stack/stack.js +1 -1
  254. package/lib/new-components/stack/stack.js.map +1 -1
  255. package/lib/new-components/stack/stack.test.d.ts +1 -0
  256. package/lib/new-components/switch-field/switch-field.d.ts +4 -4
  257. package/lib/new-components/switch-field/switch-field.js +1 -1
  258. package/lib/new-components/switch-field/switch-field.js.map +1 -1
  259. package/lib/new-components/switch-field/switch-field.module.css.js +1 -1
  260. package/lib/new-components/switch-field/switch-field.test.d.ts +1 -0
  261. package/lib/new-components/tabs/index.d.ts +1 -0
  262. package/lib/new-components/tabs/tabs.d.ts +92 -0
  263. package/lib/new-components/tabs/tabs.js +2 -0
  264. package/lib/new-components/tabs/tabs.js.map +1 -0
  265. package/lib/new-components/tabs/tabs.module.css.js +2 -0
  266. package/lib/new-components/tabs/tabs.module.css.js.map +1 -0
  267. package/lib/new-components/tabs/tabs.test.d.ts +1 -0
  268. package/lib/new-components/test-helpers.d.ts +9 -0
  269. package/lib/new-components/text/text.d.ts +38 -5
  270. package/lib/new-components/text/text.js +1 -1
  271. package/lib/new-components/text/text.js.map +1 -1
  272. package/lib/new-components/text/text.module.css.js +1 -1
  273. package/lib/new-components/text/text.test.d.ts +1 -0
  274. package/lib/new-components/text-area/text-area.d.ts +2 -2
  275. package/lib/new-components/text-area/text-area.js.map +1 -1
  276. package/lib/new-components/text-area/text-area.module.css.js +1 -1
  277. package/lib/new-components/text-field/text-field.d.ts +7 -4
  278. package/lib/new-components/text-field/text-field.js +1 -1
  279. package/lib/new-components/text-field/text-field.js.map +1 -1
  280. package/lib/new-components/text-field/text-field.module.css.js +1 -1
  281. package/lib/new-components/text-field/text-field.test.d.ts +1 -0
  282. package/lib/new-components/text-link/text-link.d.ts +1 -2
  283. package/lib/new-components/text-link/text-link.js +1 -1
  284. package/lib/new-components/text-link/text-link.js.map +1 -1
  285. package/lib/utils/polymorphism.d.ts +151 -0
  286. package/lib/utils/polymorphism.js +2 -0
  287. package/lib/utils/polymorphism.js.map +1 -0
  288. package/package.json +27 -23
  289. package/styles/alert.css +4 -3
  290. package/styles/base-button.css +6 -0
  291. package/styles/base-button.module.css.css +1 -0
  292. package/styles/base-field.css +7 -3
  293. package/styles/base-field.module.css.css +1 -1
  294. package/styles/box.css +3 -0
  295. package/styles/box.module.css.css +1 -1
  296. package/styles/checkbox-field.css +6 -2
  297. package/styles/checkbox-field.module.css.css +1 -1
  298. package/styles/color-picker.css +1 -1
  299. package/styles/columns.css +4 -3
  300. package/styles/columns.module.css.css +1 -1
  301. package/styles/deprecated-button.css +2 -0
  302. package/styles/deprecated-loading.css +1 -0
  303. package/styles/deprecated-modal.css +1 -0
  304. package/styles/divider.css +4 -2
  305. package/styles/divider.module.css.css +1 -1
  306. package/styles/dropdown.css +1 -1
  307. package/styles/heading.css +4 -2
  308. package/styles/heading.module.css.css +1 -1
  309. package/styles/hidden-visually.css +4 -0
  310. package/styles/hidden-visually.module.css.css +1 -0
  311. package/styles/hidden.css +4 -0
  312. package/styles/hidden.module.css.css +1 -0
  313. package/styles/inline.css +3 -1
  314. package/styles/loading.css +4 -1
  315. package/styles/margin.module.css.css +1 -0
  316. package/styles/menu.css +1 -1
  317. package/styles/modal.css +10 -1
  318. package/styles/modal.module.css.css +1 -0
  319. package/styles/notice.css +4 -3
  320. package/styles/padding.module.css.css +1 -0
  321. package/styles/password-field.css +8 -4
  322. package/styles/reactist.css +24 -19
  323. package/styles/select-field.css +8 -4
  324. package/styles/select-field.module.css.css +1 -1
  325. package/styles/spinner.module.css.css +1 -0
  326. package/styles/stack.css +4 -2
  327. package/styles/switch-field.css +9 -4
  328. package/styles/switch-field.module.css.css +1 -1
  329. package/styles/tabs.css +5 -1
  330. package/styles/tabs.module.css.css +1 -0
  331. package/styles/text-area.css +8 -4
  332. package/styles/text-area.module.css.css +1 -1
  333. package/styles/text-field.css +8 -4
  334. package/styles/text-field.module.css.css +1 -1
  335. package/styles/text-link.css +3 -1
  336. package/styles/text.css +4 -2
  337. package/styles/text.module.css.css +1 -1
  338. package/styles/tip.css +1 -1
  339. package/CHANGELOG.md +0 -492
  340. package/es/components/button/button.js.map +0 -1
  341. package/es/components/loading/index.js +0 -6
  342. package/es/components/loading/index.js.map +0 -1
  343. package/es/components/loading/loading.js.map +0 -1
  344. package/es/components/menu/type-helpers.js +0 -9
  345. package/es/components/menu/type-helpers.js.map +0 -1
  346. package/es/components/modal/index.js.map +0 -1
  347. package/es/components/modal/modal.js.map +0 -1
  348. package/es/components/tabs/tabs.js +0 -123
  349. package/es/components/tabs/tabs.js.map +0 -1
  350. package/es/new-components/button-link/button-link.module.css.js +0 -4
  351. package/es/new-components/button-link/button-link.module.css.js.map +0 -1
  352. package/es/new-components/loading-spinner/loading-spinner.js +0 -37
  353. package/es/new-components/loading-spinner/loading-spinner.js.map +0 -1
  354. package/es/new-components/loading-spinner/loading-spinner.module.css.js +0 -4
  355. package/es/new-components/loading-spinner/loading-spinner.module.css.js.map +0 -1
  356. package/es/new-components/type-helpers.js +0 -10
  357. package/es/new-components/type-helpers.js.map +0 -1
  358. package/lib/components/button/button.js.map +0 -1
  359. package/lib/components/button/index.d.ts +0 -4
  360. package/lib/components/button/index.js +0 -2
  361. package/lib/components/loading/index.d.ts +0 -2
  362. package/lib/components/loading/index.js.map +0 -1
  363. package/lib/components/loading/loading.js.map +0 -1
  364. package/lib/components/menu/type-helpers.d.ts +0 -25
  365. package/lib/components/menu/type-helpers.js +0 -2
  366. package/lib/components/menu/type-helpers.js.map +0 -1
  367. package/lib/components/modal/index.js +0 -2
  368. package/lib/components/modal/index.js.map +0 -1
  369. package/lib/components/modal/modal.js.map +0 -1
  370. package/lib/components/tabs/index.d.ts +0 -1
  371. package/lib/components/tabs/tabs.d.ts +0 -33
  372. package/lib/components/tabs/tabs.js +0 -2
  373. package/lib/components/tabs/tabs.js.map +0 -1
  374. package/lib/new-components/button-link/button-link.module.css.js +0 -2
  375. package/lib/new-components/button-link/button-link.module.css.js.map +0 -1
  376. package/lib/new-components/loading-spinner/index.d.ts +0 -1
  377. package/lib/new-components/loading-spinner/loading-spinner.d.ts +0 -8
  378. package/lib/new-components/loading-spinner/loading-spinner.js +0 -2
  379. package/lib/new-components/loading-spinner/loading-spinner.js.map +0 -1
  380. package/lib/new-components/loading-spinner/loading-spinner.module.css.js +0 -2
  381. package/lib/new-components/loading-spinner/loading-spinner.module.css.js.map +0 -1
  382. package/lib/new-components/type-helpers.d.ts +0 -26
  383. package/lib/new-components/type-helpers.js +0 -2
  384. package/lib/new-components/type-helpers.js.map +0 -1
  385. package/styles/button-link.css +0 -2
  386. package/styles/button-link.module.css.css +0 -1
  387. package/styles/button.css +0 -2
  388. package/styles/loading-spinner.module.css.css +0 -1
@@ -1 +1 @@
1
- ._81e23633.aa388da4 label{opacity:.5;cursor:not-allowed}._196b41c2{--tmp-switch-width:32px;--tmp-switch-height:18px;--tmp-inner-padding:3px;--tmp-handle-size:calc(var(--tmp-switch-height) - 2*var(--tmp-inner-padding));--tmp-slide-length:calc(var(--tmp-switch-width) - var(--tmp-handle-size) - var(--tmp-inner-padding));position:relative;display:inline-block;overflow:visible;margin-right:10px;width:var(--tmp-switch-width);height:var(--tmp-switch-height);min-height:auto;border-radius:calc(var(--tmp-switch-height)/2);background-color:var(--reactist-framework-fill-summit);cursor:pointer;flex-shrink:0}._196b41c2 input{position:absolute;opacity:0}._272b1f96{position:absolute;display:block;padding:0;top:var(--tmp-inner-padding);left:var(--tmp-inner-padding);width:var(--tmp-handle-size);height:var(--tmp-handle-size);border-radius:50%;background:var(--reactist-bg-default);transition:left .28s cubic-bezier(.4,0,.2,1)}._196b41c2.f3d4f232{background-color:var(--reactist-switch-checked)}._196b41c2.f3d4f232 ._272b1f96{left:var(--tmp-slide-length)}
1
+ ._99a80509,._99a80509 *{font-family:var(--reactist-font-family);cursor:pointer}._99a80509.b5cf26ef,._99a80509.b5cf26ef *{cursor:not-allowed}._99a80509.b5cf26ef.a63c43a2 .f318ae83,._99a80509.b5cf26ef ._427926b9{opacity:.5}.f318ae83{--tmp-switch-width:32px;--tmp-switch-height:18px;--tmp-inner-padding:3px;--tmp-handle-size:calc(var(--tmp-switch-height) - 2*var(--tmp-inner-padding));--tmp-slide-length:calc(var(--tmp-switch-width) - var(--tmp-handle-size) - var(--tmp-inner-padding));width:var(--tmp-switch-width);height:var(--tmp-switch-height);min-height:auto;border-radius:calc(var(--tmp-switch-height)/2);background-color:var(--reactist-framework-fill-summit);cursor:pointer}._9fcd994c{position:absolute;display:block;padding:0;top:var(--tmp-inner-padding);left:var(--tmp-inner-padding);width:var(--tmp-handle-size);height:var(--tmp-handle-size);border-radius:50%;background:var(--reactist-bg-default);transition:left .28s cubic-bezier(.4,0,.2,1)}.a63c43a2 .f318ae83{background-color:var(--reactist-switch-checked)}.a63c43a2 .f318ae83 ._9fcd994c{left:var(--tmp-slide-length)}
package/styles/tabs.css CHANGED
@@ -1 +1,5 @@
1
- .reactist_tabs__header{display:flex;border-bottom:1px solid #dcdcdc}.reactist_tabs__header--item{display:block;margin:0 20px 0 0;padding:10px 0;font-size:.875rem;color:grey;font-weight:400;line-height:1.7;text-decoration:none;box-sizing:border-box}.reactist_tabs__header--item.active{font-size:.875rem;color:#3f82ef;font-weight:400;line-height:1.7}.reactist_tabs__header--item.active:after{display:block;content:"";background-color:#3f82ef;height:3px;border-radius:3px 3px 0 0;position:relative;top:10px}.reactist_tabs__header--item.disabled:hover{cursor:not-allowed}.reactist_tabs--spreadlayout .reactist_tabs__header{display:flex;border-bottom:0}.reactist_tabs--spreadlayout .reactist_tabs__header--item{text-align:center;flex:1;border-bottom:1px solid #dcdcdc;margin:0}.reactist_tabs--spreadlayout .reactist_tabs__header--item.active{font-size:.875rem;color:#3f82ef;font-weight:400;line-height:1.7;border-bottom:3px solid #3f82ef}.reactist_tabs--spreadlayout .reactist_tabs__header--item:hover{text-decoration:none}
1
+ ._26c5201d{box-sizing:border-box;border:0;margin:0;padding:0;font-size:var(--reactist-font-size-body);font-family:inherit;vertical-align:baseline;background-color:transparent;list-style:none}pre._26c5201d{font-family:monospace}._26c5201d[hidden]{display:none!important}._77c3d8d1{position:absolute}._37cb98fb{position:fixed}.df16028f{position:relative}._4205abac{position:-webkit-sticky;position:sticky}@media (min-width:768px){.d6993b5e{position:absolute}.a015e0f5{position:fixed}._236dd3b1{position:relative}.b7ac4837{position:-webkit-sticky;position:sticky}}@media (min-width:992px){.fd93a726{position:absolute}._49228edc{position:fixed}.d972b518{position:relative}.b2a2baf3{position:-webkit-sticky;position:sticky}}._22f1edd1{display:block}.c23d2d6f{display:flex}._5359896d{display:inline}.a54a41a6{display:inline-block}.d02f3d43{display:inline-flex}._760c0710{display:none}@media (min-width:768px){._64e2ebe6{display:block}._25274f78{display:flex}._2077d063{display:inline}.aaed581f{display:inline-block}._1d4a6eb5{display:inline-flex}._66f24c78{display:none}}@media (min-width:992px){._145cca89{display:block}._1861c899{display:flex}._96a720c8{display:inline}._56acf5d5{display:inline-block}._2a268e4b{display:inline-flex}.b4f30b9e{display:none}}._0b071847{min-width:0}._8b67f007{min-width:220px}.e3ec3474{min-width:400px}._5cccd4fc{min-width:660px}._06eeac65{max-width:940px}.ee1b6344{min-width:1280px}._2df097d0{max-width:220px}.b771df2a{max-width:400px}._00ad4e35{max-width:660px}._4a848dab{max-width:940px}.bf216b15{max-width:1280px}.a60a7855{max-width:100%}._4cf1b6c9{flex-direction:column}.e056fa5a{flex-direction:row}@media (min-width:768px){.b9aa8d99{flex-direction:column}._2e8b3442{flex-direction:row}}@media (min-width:992px){._2162c612{flex-direction:column}._279bf1e4{flex-direction:row}}._346d3a71{flex-wrap:wrap}._786fd122{flex-wrap:nowrap}._4b864fc2{flex-shrink:0}._795f552f{flex-grow:0}.a68bcd0f{flex-grow:1}._34e24973{align-items:flex-start}._648380f4{align-items:center}._18b4e1d6{align-items:flex-end}._805c1b65{align-items:baseline}@media (min-width:768px){.fd4006c2{align-items:flex-start}.c3ba10a7{align-items:center}._984cd304{align-items:flex-end}._696cc167{align-items:baseline}}@media (min-width:992px){._74133d54{align-items:flex-start}._92ab46df{align-items:center}._177026d9{align-items:flex-end}.ebd2f31f{align-items:baseline}}._4969235b{justify-content:flex-start}._9594db58{justify-content:center}._6789fdd3{justify-content:flex-end}.b9902d94{justify-content:space-around}._3c3ae41b{justify-content:space-between}._8dce8767{justify-content:space-evenly}@media (min-width:768px){._6bd82354{justify-content:flex-start}._3044c29a{justify-content:center}._13da8745{justify-content:flex-end}._981fa9c8{justify-content:space-around}.d34811a6{justify-content:space-between}._53e07124{justify-content:space-evenly}}@media (min-width:992px){.e709f277{justify-content:flex-start}.abc87cc4{justify-content:center}.ce410292{justify-content:flex-end}._981fa9c8{justify-content:space-around}._5ab1bc04{justify-content:space-between}._53e07124{justify-content:space-evenly}}._11a684c0{overflow:hidden}._2c024f85{overflow:auto}._4d4892bd{overflow:visible}._22ffbb40{overflow:scroll}._330d9b0b{width:100%}.fb8deb05{height:100%}._133f5c00{background-color:var(--reactist-bg-default)}.b2be7ffe{background-color:var(--reactist-bg-aside)}.a45e67ff{background-color:var(--reactist-bg-highlight)}.b90226b5{background-color:var(--reactist-bg-selected)}._6e988219{border-radius:var(--reactist-border-radius-small)}._14cf204e{border-radius:var(--reactist-border-radius-large)}.a710cfdd{border:1px solid var(--reactist-divider-primary)}._52263feb{border:1px solid var(--reactist-divider-secondary)}._546ec3ef{border:1px solid var(--reactist-divider-tertiary)}._7fa90cb9{text-align:start}._54c80396{text-align:center}.e4b1ea49{text-align:end}._0eecd510{text-align:justify}@media (min-width:768px){.a309e75d{text-align:start}._67fb1a07{text-align:center}._0fa851ec{text-align:end}._585a0e34{text-align:justify}}@media (min-width:992px){._5f909690{text-align:start}._13e03993{text-align:center}.f142a1cb{text-align:end}._2bba79a9{text-align:justify}}
2
+ .c4803194{padding-top:var(--reactist-spacing-xsmall)}._4e9ab24b{padding-top:var(--reactist-spacing-small)}._1d226e27{padding-top:var(--reactist-spacing-medium)}.eb6097f1{padding-top:var(--reactist-spacing-large)}.d3229ba4{padding-top:var(--reactist-spacing-xlarge)}._47978ba4{padding-top:var(--reactist-spacing-xxlarge)}@media (min-width:768px){.f987719c{padding-top:var(--reactist-spacing-xsmall)}._8dbc4b4d{padding-top:var(--reactist-spacing-small)}.ae44fe07{padding-top:var(--reactist-spacing-medium)}.ffe9548d{padding-top:var(--reactist-spacing-large)}.f2b76a44{padding-top:var(--reactist-spacing-xlarge)}.c6eb8f43{padding-top:var(--reactist-spacing-xxlarge)}}@media (min-width:992px){._8699b560{padding-top:var(--reactist-spacing-xsmall)}._02c374b7{padding-top:var(--reactist-spacing-small)}._0dd0332f{padding-top:var(--reactist-spacing-medium)}.da55f1f6{padding-top:var(--reactist-spacing-large)}._8ef2a278{padding-top:var(--reactist-spacing-xlarge)}._8b493b28{padding-top:var(--reactist-spacing-xxlarge)}}._211eebc7{padding-right:var(--reactist-spacing-xsmall)}.ad0ccf15{padding-right:var(--reactist-spacing-small)}.a03e39af{padding-right:var(--reactist-spacing-medium)}.f0941ead{padding-right:var(--reactist-spacing-large)}.e47c5a43{padding-right:var(--reactist-spacing-xlarge)}.e849a5cf{padding-right:var(--reactist-spacing-xxlarge)}@media (min-width:768px){._85374228{padding-right:var(--reactist-spacing-xsmall)}._89df37b9{padding-right:var(--reactist-spacing-small)}._1cc50ebe{padding-right:var(--reactist-spacing-medium)}._1060982b{padding-right:var(--reactist-spacing-large)}.be58847d{padding-right:var(--reactist-spacing-xlarge)}._45093484{padding-right:var(--reactist-spacing-xxlarge)}}@media (min-width:992px){.f8d99d6a{padding-right:var(--reactist-spacing-xsmall)}.efa076d9{padding-right:var(--reactist-spacing-small)}.e59caa64{padding-right:var(--reactist-spacing-medium)}.da42f46a{padding-right:var(--reactist-spacing-large)}.b3ee2580{padding-right:var(--reactist-spacing-xlarge)}._3ef94658{padding-right:var(--reactist-spacing-xxlarge)}}.b0e6eab4{padding-bottom:var(--reactist-spacing-xsmall)}._9510d053{padding-bottom:var(--reactist-spacing-small)}.d7af60c9{padding-bottom:var(--reactist-spacing-medium)}.b75f86cd{padding-bottom:var(--reactist-spacing-large)}.fbd4ce29{padding-bottom:var(--reactist-spacing-xlarge)}._33e3ad63{padding-bottom:var(--reactist-spacing-xxlarge)}@media (min-width:768px){.f0302da7{padding-bottom:var(--reactist-spacing-xsmall)}._4f9b8012{padding-bottom:var(--reactist-spacing-small)}._4333e20e{padding-bottom:var(--reactist-spacing-medium)}._30bbc76c{padding-bottom:var(--reactist-spacing-large)}.ba5a4008{padding-bottom:var(--reactist-spacing-xlarge)}._423a3b1a{padding-bottom:var(--reactist-spacing-xxlarge)}}@media (min-width:992px){.b40139b7{padding-bottom:var(--reactist-spacing-xsmall)}.f96071fa{padding-bottom:var(--reactist-spacing-small)}.fe803c9a{padding-bottom:var(--reactist-spacing-medium)}._01686eb9{padding-bottom:var(--reactist-spacing-large)}.afa763d8{padding-bottom:var(--reactist-spacing-xlarge)}.a95785f1{padding-bottom:var(--reactist-spacing-xxlarge)}}.cad4e2ec{padding-left:var(--reactist-spacing-xsmall)}.d70b3c17{padding-left:var(--reactist-spacing-small)}._8c851bd6{padding-left:var(--reactist-spacing-medium)}._078feb3c{padding-left:var(--reactist-spacing-large)}._76ab968c{padding-left:var(--reactist-spacing-xlarge)}.aaca85d7{padding-left:var(--reactist-spacing-xxlarge)}@media (min-width:768px){._5eb0e5aa{padding-left:var(--reactist-spacing-xsmall)}._0384fb4f{padding-left:var(--reactist-spacing-small)}.edffff6f{padding-left:var(--reactist-spacing-medium)}._873b9a46{padding-left:var(--reactist-spacing-large)}._89105db5{padding-left:var(--reactist-spacing-xlarge)}.db1966fe{padding-left:var(--reactist-spacing-xxlarge)}}@media (min-width:992px){.b17f826b{padding-left:var(--reactist-spacing-xsmall)}._6dc83610{padding-left:var(--reactist-spacing-small)}._3421b8b2{padding-left:var(--reactist-spacing-medium)}._68cec7a6{padding-left:var(--reactist-spacing-large)}._94bde020{padding-left:var(--reactist-spacing-xlarge)}.b94ee579{padding-left:var(--reactist-spacing-xxlarge)}}
3
+ .c7813d79{margin-top:var(--reactist-spacing-xsmall)}.d3449da6{margin-top:var(--reactist-spacing-small)}._4ea254c1{margin-top:var(--reactist-spacing-medium)}.c0844f64{margin-top:var(--reactist-spacing-large)}._213145b4{margin-top:var(--reactist-spacing-xlarge)}.df61c84c{margin-top:var(--reactist-spacing-xxlarge)}.efe72b13{margin-top:calc(var(--reactist-spacing-xsmall)*-1)}._870c2768{margin-top:calc(var(--reactist-spacing-small)*-1)}._0b927c57{margin-top:calc(var(--reactist-spacing-medium)*-1)}._461db014{margin-top:calc(var(--reactist-spacing-large)*-1)}._2a3a8cb8{margin-top:calc(var(--reactist-spacing-xlarge)*-1)}._9bcda921{margin-top:calc(var(--reactist-spacing-xxlarge)*-1)}@media (min-width:768px){._6add01e4{margin-top:var(--reactist-spacing-xsmall)}._735ef86b{margin-top:var(--reactist-spacing-small)}._0477d068{margin-top:var(--reactist-spacing-medium)}._2c90af97{margin-top:var(--reactist-spacing-large)}._63a82db6{margin-top:var(--reactist-spacing-xlarge)}._03cd7726{margin-top:var(--reactist-spacing-xxlarge)}.c986a62a{margin-top:calc(var(--reactist-spacing-xsmall)*-1)}.be2bdcdd{margin-top:calc(var(--reactist-spacing-small)*-1)}._47d2686b{margin-top:calc(var(--reactist-spacing-medium)*-1)}._25e5af9d{margin-top:calc(var(--reactist-spacing-large)*-1)}.ee82f441{margin-top:calc(var(--reactist-spacing-xlarge)*-1)}.a6f9d404{margin-top:calc(var(--reactist-spacing-xxlarge)*-1)}}@media (min-width:992px){._4d8d9a36{margin-top:var(--reactist-spacing-xsmall)}.e813cee7{margin-top:var(--reactist-spacing-small)}._56975b7d{margin-top:var(--reactist-spacing-medium)}._53b367f6{margin-top:var(--reactist-spacing-large)}.d69e7311{margin-top:var(--reactist-spacing-xlarge)}._92f57c7e{margin-top:var(--reactist-spacing-xxlarge)}._96880d3e{margin-top:calc(var(--reactist-spacing-xsmall)*-1)}.dc3f3555{margin-top:calc(var(--reactist-spacing-small)*-1)}._86dd06bb{margin-top:calc(var(--reactist-spacing-medium)*-1)}.c93ef12e{margin-top:calc(var(--reactist-spacing-large)*-1)}.bc8fd4a2{margin-top:calc(var(--reactist-spacing-xlarge)*-1)}.b12a9124{margin-top:calc(var(--reactist-spacing-xxlarge)*-1)}}._6016f4fb{margin-right:var(--reactist-spacing-xsmall)}.b85e3dfa{margin-right:var(--reactist-spacing-small)}._297575f4{margin-right:var(--reactist-spacing-medium)}.b401ac6c{margin-right:var(--reactist-spacing-large)}.dc3ec387{margin-right:var(--reactist-spacing-xlarge)}._24694604{margin-right:var(--reactist-spacing-xxlarge)}._8e9bf2ee{margin-right:calc(var(--reactist-spacing-xsmall)*-1)}.ae9d1115{margin-right:calc(var(--reactist-spacing-small)*-1)}._14e46fc3{margin-right:calc(var(--reactist-spacing-medium)*-1)}._3370631b{margin-right:calc(var(--reactist-spacing-large)*-1)}._3f0e9b50{margin-right:calc(var(--reactist-spacing-xlarge)*-1)}.bc13e010{margin-right:calc(var(--reactist-spacing-xxlarge)*-1)}@media (min-width:768px){._6fa1aae3{margin-right:var(--reactist-spacing-xsmall)}._2976c5cb{margin-right:var(--reactist-spacing-small)}._38d94802{margin-right:var(--reactist-spacing-medium)}.db9569b5{margin-right:var(--reactist-spacing-large)}._4a52f06d{margin-right:var(--reactist-spacing-xlarge)}._8a0f0410{margin-right:var(--reactist-spacing-xxlarge)}.e7d40e9d{margin-right:calc(var(--reactist-spacing-xsmall)*-1)}._680fde91{margin-right:calc(var(--reactist-spacing-small)*-1)}._021010ca{margin-right:calc(var(--reactist-spacing-medium)*-1)}._9e52c87c{margin-right:calc(var(--reactist-spacing-large)*-1)}._4d602613{margin-right:calc(var(--reactist-spacing-xlarge)*-1)}._21b1b65a{margin-right:calc(var(--reactist-spacing-xxlarge)*-1)}}@media (min-width:992px){._7321bc07{margin-right:var(--reactist-spacing-xsmall)}.fa1721f4{margin-right:var(--reactist-spacing-small)}._3fd7b4b8{margin-right:var(--reactist-spacing-medium)}._4fdc2f74{margin-right:var(--reactist-spacing-large)}.c0254761{margin-right:var(--reactist-spacing-xlarge)}._710a5f09{margin-right:var(--reactist-spacing-xxlarge)}.e08bee7f{margin-right:calc(var(--reactist-spacing-xsmall)*-1)}.e5ab73d2{margin-right:calc(var(--reactist-spacing-small)*-1)}._5e731477{margin-right:calc(var(--reactist-spacing-medium)*-1)}._0f57a22e{margin-right:calc(var(--reactist-spacing-large)*-1)}._25f26ed3{margin-right:calc(var(--reactist-spacing-xlarge)*-1)}._11a3b4e0{margin-right:calc(var(--reactist-spacing-xxlarge)*-1)}}._6a4f69f7{margin-bottom:var(--reactist-spacing-xsmall)}.db26b033{margin-bottom:var(--reactist-spacing-small)}.c7313022{margin-bottom:var(--reactist-spacing-medium)}.a5885889{margin-bottom:var(--reactist-spacing-large)}._33dfbd8e{margin-bottom:var(--reactist-spacing-xlarge)}._795ad2de{margin-bottom:var(--reactist-spacing-xxlarge)}.a329dbd3{margin-bottom:calc(var(--reactist-spacing-xsmall)*-1)}._85e739fb{margin-bottom:calc(var(--reactist-spacing-small)*-1)}._681f65ff{margin-bottom:calc(var(--reactist-spacing-medium)*-1)}.caf50d8f{margin-bottom:calc(var(--reactist-spacing-large)*-1)}._1e084cbf{margin-bottom:calc(var(--reactist-spacing-xlarge)*-1)}._3dfb1c7e{margin-bottom:calc(var(--reactist-spacing-xxlarge)*-1)}@media (min-width:768px){.ef4735be{margin-bottom:var(--reactist-spacing-xsmall)}.de55afba{margin-bottom:var(--reactist-spacing-small)}._0e33ce88{margin-bottom:var(--reactist-spacing-medium)}._8ca391fc{margin-bottom:var(--reactist-spacing-large)}._3a609d23{margin-bottom:var(--reactist-spacing-xlarge)}._3e1177e4{margin-bottom:var(--reactist-spacing-xxlarge)}.d384884d{margin-bottom:calc(var(--reactist-spacing-xsmall)*-1)}._75254cec{margin-bottom:calc(var(--reactist-spacing-small)*-1)}._5d9f127d{margin-bottom:calc(var(--reactist-spacing-medium)*-1)}._835f1089{margin-bottom:calc(var(--reactist-spacing-large)*-1)}.dad52a72{margin-bottom:calc(var(--reactist-spacing-xlarge)*-1)}._8703a4bf{margin-bottom:calc(var(--reactist-spacing-xxlarge)*-1)}}@media (min-width:992px){._90fd20e9{margin-bottom:var(--reactist-spacing-xsmall)}.f3769191{margin-bottom:var(--reactist-spacing-small)}._156410f8{margin-bottom:var(--reactist-spacing-medium)}._7fed74d0{margin-bottom:var(--reactist-spacing-large)}._477dc10e{margin-bottom:var(--reactist-spacing-xlarge)}._85c82d89{margin-bottom:var(--reactist-spacing-xxlarge)}._4f09c1e0{margin-bottom:calc(var(--reactist-spacing-xsmall)*-1)}._9523e048{margin-bottom:calc(var(--reactist-spacing-small)*-1)}.efe10240{margin-bottom:calc(var(--reactist-spacing-medium)*-1)}.c43971e6{margin-bottom:calc(var(--reactist-spacing-large)*-1)}.f9b4da15{margin-bottom:calc(var(--reactist-spacing-xlarge)*-1)}.a10fdf70{margin-bottom:calc(var(--reactist-spacing-xxlarge)*-1)}}.f9be90b4{margin-left:var(--reactist-spacing-xsmall)}.f53218d5{margin-left:var(--reactist-spacing-small)}.c4a9b3ab{margin-left:var(--reactist-spacing-medium)}._5755e2c3{margin-left:var(--reactist-spacing-large)}._33fc9354{margin-left:var(--reactist-spacing-xlarge)}._4749a3bf{margin-left:var(--reactist-spacing-xxlarge)}.c76cb3c7{margin-left:calc(var(--reactist-spacing-xsmall)*-1)}._96003c07{margin-left:calc(var(--reactist-spacing-small)*-1)}._09988d07{margin-left:calc(var(--reactist-spacing-medium)*-1)}.b4a486f6{margin-left:calc(var(--reactist-spacing-large)*-1)}.f396e75e{margin-left:calc(var(--reactist-spacing-xlarge)*-1)}._81d1f26d{margin-left:calc(var(--reactist-spacing-xxlarge)*-1)}@media (min-width:768px){._0a46e8f1{margin-left:var(--reactist-spacing-xsmall)}._57c970af{margin-left:var(--reactist-spacing-small)}._4b6099d3{margin-left:var(--reactist-spacing-medium)}._378fcff5{margin-left:var(--reactist-spacing-large)}.f8785663{margin-left:var(--reactist-spacing-xlarge)}._72f957ee{margin-left:var(--reactist-spacing-xxlarge)}._2288c7e1{margin-left:calc(var(--reactist-spacing-xsmall)*-1)}.b27c1c05{margin-left:calc(var(--reactist-spacing-small)*-1)}._702cbb13{margin-left:calc(var(--reactist-spacing-medium)*-1)}._1a2748b4{margin-left:calc(var(--reactist-spacing-large)*-1)}.b8c043a5{margin-left:calc(var(--reactist-spacing-xlarge)*-1)}._8dc8ff63{margin-left:calc(var(--reactist-spacing-xxlarge)*-1)}}@media (min-width:992px){.c2af646d{margin-left:var(--reactist-spacing-xsmall)}.c03d07be{margin-left:var(--reactist-spacing-small)}._915fb1d3{margin-left:var(--reactist-spacing-medium)}._64214ee1{margin-left:var(--reactist-spacing-large)}._7be4a22c{margin-left:var(--reactist-spacing-xlarge)}._5ec0a401{margin-left:var(--reactist-spacing-xxlarge)}.ea29f1ee{margin-left:calc(var(--reactist-spacing-xsmall)*-1)}.c26652c7{margin-left:calc(var(--reactist-spacing-small)*-1)}.c24f6af9{margin-left:calc(var(--reactist-spacing-medium)*-1)}.c2671f27{margin-left:calc(var(--reactist-spacing-large)*-1)}.cc51a04e{margin-left:calc(var(--reactist-spacing-xlarge)*-1)}.fd581f54{margin-left:calc(var(--reactist-spacing-xxlarge)*-1)}}
4
+ ._6b1279e0{margin:calc(var(--reactist-spacing-xsmall)*-1) 0 0 calc(var(--reactist-spacing-xsmall)*-1)}._6b1279e0>*{margin:var(--reactist-spacing-xsmall) 0 0 var(--reactist-spacing-xsmall)}._0d82c42d{margin:calc(var(--reactist-spacing-small)*-1) 0 0 calc(var(--reactist-spacing-small)*-1)}._0d82c42d>*{margin:var(--reactist-spacing-small) 0 0 var(--reactist-spacing-small)}._556714e1{margin:calc(var(--reactist-spacing-medium)*-1) 0 0 calc(var(--reactist-spacing-medium)*-1)}._556714e1>*{margin:var(--reactist-spacing-medium) 0 0 var(--reactist-spacing-medium)}.e90b43fb{margin:calc(var(--reactist-spacing-large)*-1) 0 0 calc(var(--reactist-spacing-large)*-1)}.e90b43fb>*{margin:var(--reactist-spacing-large) 0 0 var(--reactist-spacing-large)}.a9c34345{margin:calc(var(--reactist-spacing-xlarge)*-1) 0 0 calc(var(--reactist-spacing-xlarge)*-1)}.a9c34345>*{margin:var(--reactist-spacing-xlarge) 0 0 var(--reactist-spacing-xlarge)}.aa102efe{margin:calc(var(--reactist-spacing-xxlarge)*-1) 0 0 calc(var(--reactist-spacing-xxlarge)*-1)}.aa102efe>*{margin:var(--reactist-spacing-xxlarge) 0 0 var(--reactist-spacing-xxlarge)}@media (min-width:768px){._34d16157{margin:calc(var(--reactist-spacing-xsmall)*-1) 0 0 calc(var(--reactist-spacing-xsmall)*-1)}._34d16157>*{margin:var(--reactist-spacing-xsmall) 0 0 var(--reactist-spacing-xsmall)}.c7e0e54f{margin:calc(var(--reactist-spacing-small)*-1) 0 0 calc(var(--reactist-spacing-small)*-1)}.c7e0e54f>*{margin:var(--reactist-spacing-small) 0 0 var(--reactist-spacing-small)}._7f2a4e4b{margin:calc(var(--reactist-spacing-medium)*-1) 0 0 calc(var(--reactist-spacing-medium)*-1)}._7f2a4e4b>*{margin:var(--reactist-spacing-medium) 0 0 var(--reactist-spacing-medium)}.ae256487{margin:calc(var(--reactist-spacing-large)*-1) 0 0 calc(var(--reactist-spacing-large)*-1)}.ae256487>*{margin:var(--reactist-spacing-large) 0 0 var(--reactist-spacing-large)}.e88be0f7{margin:calc(var(--reactist-spacing-xlarge)*-1) 0 0 calc(var(--reactist-spacing-xlarge)*-1)}.e88be0f7>*{margin:var(--reactist-spacing-xlarge) 0 0 var(--reactist-spacing-xlarge)}.dc7bcb18{margin:calc(var(--reactist-spacing-xxlarge)*-1) 0 0 calc(var(--reactist-spacing-xxlarge)*-1)}.dc7bcb18>*{margin:var(--reactist-spacing-xxlarge) 0 0 var(--reactist-spacing-xxlarge)}}@media (min-width:992px){._853f3012{margin:calc(var(--reactist-spacing-xsmall)*-1) 0 0 calc(var(--reactist-spacing-xsmall)*-1)}._853f3012>*{margin:var(--reactist-spacing-xsmall) 0 0 var(--reactist-spacing-xsmall)}._3bfaf758{margin:calc(var(--reactist-spacing-small)*-1) 0 0 calc(var(--reactist-spacing-small)*-1)}._3bfaf758>*{margin:var(--reactist-spacing-small) 0 0 var(--reactist-spacing-small)}._36462a93{margin:calc(var(--reactist-spacing-medium)*-1) 0 0 calc(var(--reactist-spacing-medium)*-1)}._36462a93>*{margin:var(--reactist-spacing-medium) 0 0 var(--reactist-spacing-medium)}.e73081b7{margin:calc(var(--reactist-spacing-large)*-1) 0 0 calc(var(--reactist-spacing-large)*-1)}.e73081b7>*{margin:var(--reactist-spacing-large) 0 0 var(--reactist-spacing-large)}.e22ec9dd{margin:calc(var(--reactist-spacing-xlarge)*-1) 0 0 calc(var(--reactist-spacing-xlarge)*-1)}.e22ec9dd>*{margin:var(--reactist-spacing-xlarge) 0 0 var(--reactist-spacing-xlarge)}._4a20bd12{margin:calc(var(--reactist-spacing-xxlarge)*-1) 0 0 calc(var(--reactist-spacing-xxlarge)*-1)}._4a20bd12>*{margin:var(--reactist-spacing-xxlarge) 0 0 var(--reactist-spacing-xxlarge)}}
5
+ :root{--reactist-tab-primary-background:var(--reactist-chromatic-fill-blue);--reactist-tab-primary-foreground:var(--reactist-content-light-on-dark);--reactist-tab-primary-unselected:var(--reactist-chromatic-content-blue);--reactist-tab-secondary-background:var(--reactist-framework-fill-selected);--reactist-tab-secondary-foreground:var(--reactist-chromatic-content-blue);--reactist-tab-secondary-unselected:var(--reactist-chromatic-content-blue);--reactist-tab-tertiary-background:var(--reactist-chromatic-fill-grey);--reactist-tab-tertiary-foreground:var(--reactist-content-light-on-dark);--reactist-tab-tertiary-unselected:var(--reactist-content-tertiary)}._7cdcd0b6{box-sizing:border-box;border:none;border-radius:var(--reactist-border-radius-small);background:none;cursor:pointer}.af6705d0{padding:0 var(--reactist-spacing-medium);font-size:var(--reactist-font-size-body);line-height:32px;border-radius:20px}.af6705d0.ad705020{color:var(--reactist-tab-primary-unselected)}.af6705d0.ad705020[aria-selected=true]{background-color:var(--reactist-tab-primary-background);color:var(--reactist-tab-primary-foreground)}.af6705d0._69a2043b{color:var(--reactist-tab-secondary-unselected)}.af6705d0._69a2043b[aria-selected=true]{background-color:var(--reactist-tab-secondary-background);color:var(--reactist-tab-secondary-foreground)}.af6705d0._5b695667{color:var(--reactist-tab-tertiary-unselected)}.af6705d0._5b695667[aria-selected=true]{background-color:var(--reactist-tab-tertiary-background);color:var(--reactist-tab-tertiary-foreground)}._88d3dc5e{padding:var(--reactist-spacing-xsmall);color:var(--reactist-content-secondary);font-size:var(--reactist-font-size-subtitle);font-weight:var(--reactist-font-weight-strong)}._88d3dc5e[aria-selected=true]{color:var(--reactist-content-primary)}
@@ -0,0 +1 @@
1
+ :root{--reactist-tab-primary-background:var(--reactist-chromatic-fill-blue);--reactist-tab-primary-foreground:var(--reactist-content-light-on-dark);--reactist-tab-primary-unselected:var(--reactist-chromatic-content-blue);--reactist-tab-secondary-background:var(--reactist-framework-fill-selected);--reactist-tab-secondary-foreground:var(--reactist-chromatic-content-blue);--reactist-tab-secondary-unselected:var(--reactist-chromatic-content-blue);--reactist-tab-tertiary-background:var(--reactist-chromatic-fill-grey);--reactist-tab-tertiary-foreground:var(--reactist-content-light-on-dark);--reactist-tab-tertiary-unselected:var(--reactist-content-tertiary)}._7cdcd0b6{box-sizing:border-box;border:none;border-radius:var(--reactist-border-radius-small);background:none;cursor:pointer}.af6705d0{padding:0 var(--reactist-spacing-medium);font-size:var(--reactist-font-size-body);line-height:32px;border-radius:20px}.af6705d0.ad705020{color:var(--reactist-tab-primary-unselected)}.af6705d0.ad705020[aria-selected=true]{background-color:var(--reactist-tab-primary-background);color:var(--reactist-tab-primary-foreground)}.af6705d0._69a2043b{color:var(--reactist-tab-secondary-unselected)}.af6705d0._69a2043b[aria-selected=true]{background-color:var(--reactist-tab-secondary-background);color:var(--reactist-tab-secondary-foreground)}.af6705d0._5b695667{color:var(--reactist-tab-tertiary-unselected)}.af6705d0._5b695667[aria-selected=true]{background-color:var(--reactist-tab-tertiary-background);color:var(--reactist-tab-tertiary-foreground)}._88d3dc5e{padding:var(--reactist-spacing-xsmall);color:var(--reactist-content-secondary);font-size:var(--reactist-font-size-subtitle);font-weight:var(--reactist-font-weight-strong)}._88d3dc5e[aria-selected=true]{color:var(--reactist-content-primary)}
@@ -1,4 +1,8 @@
1
- .e25b6eac{font-size:var(--reactist-font-size-normal);font-weight:var(--reactist-font-weight-regular);color:var(--reactist-content-primary)}._7be564c9{font-size:var(--reactist-font-size-xsmall)}._0b65f3be{font-size:var(--reactist-font-size-small)}._148c266b,.efa6a189{font-size:var(--reactist-font-size-large)}.a1ce91c1{font-weight:var(--reactist-font-weight-medium)}._615a6cf6{font-weight:var(--reactist-font-weight-strong)}.e1348c0a{color:var(--reactist-content-secondary)}.f2471c06{color:var(--reactist-chromatic-content-red)}._8f257fa0{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.b219e836{display:-webkit-box;-webkit-box-orient:vertical;overflow:hidden}.d1379189{-webkit-line-clamp:2}.edc9a040{-webkit-line-clamp:3}.d463b64b{-webkit-line-clamp:4}._4feee537{-webkit-line-clamp:5}
2
- ._4014f55e label{box-sizing:border-box;display:block;font-size:var(--reactist-font-size-normal)}._52b4c04a{font-weight:var(--reactist-font-weight-strong)}.a4e7d84d{color:var(--reactist-content-secondary)}._28fba036{padding-left:var(--reactist-spacing-small);text-align:right}
3
- ._7c657f27{box-sizing:border-box;border:0;margin:0;padding:0;font-size:var(--reactist-font-size-normal);font-family:inherit;vertical-align:baseline;background-color:transparent}._24f0305b{position:absolute}.f22516c3{position:fixed}.dd3031f0{position:relative}.c55e1376{position:-webkit-sticky;position:sticky}@media (min-width:768px){.c01b4973{position:absolute}.fe61c08e{position:fixed}._42cf42ae{position:relative}._1cd29585{position:-webkit-sticky;position:sticky}}@media (min-width:992px){._3bf17b40{position:absolute}._3c190375{position:fixed}._21549264{position:relative}.b3301c9a{position:-webkit-sticky;position:sticky}}.d0eafb3e{display:block}._29841fc9{display:flex}.be8e98ca{display:inline}._009244ff{display:inline-block}._366b4e11{display:inline-flex}._685beb97{display:none}@media (min-width:768px){.ae57c505{display:block}.e79407a2{display:flex}._4b3944fb{display:inline}._04228de9{display:inline-block}._29bbb522{display:inline-flex}._2d2052e6{display:none}}@media (min-width:992px){.b1ba4d16{display:block}.cb21a300{display:flex}._9b2d213a{display:inline}.c6b19ae4{display:inline-block}.e2d9e9ae{display:inline-flex}._69d56326{display:none}}.f87e83dc{min-width:0}._2ca630ec{min-width:220px}._7a1a60f1{min-width:400px}.c0a2d8db{min-width:660px}._95c19faa{max-width:940px}._4ab999ca{min-width:1280px}._1ca5dbf5{max-width:220px}.c3ff7c04{max-width:400px}._74540095{max-width:660px}._811b6141{max-width:940px}._52023176{max-width:1280px}._7ce9375b{flex-direction:column}._953fabba{flex-direction:row}@media (min-width:768px){.bfc2801e{flex-direction:column}._65c778a0{flex-direction:row}}@media (min-width:992px){._23be346b{flex-direction:column}._986465f5{flex-direction:row}}._2c4c621c{flex-wrap:wrap}.c3633c19{flex-wrap:nowrap}.b477fff2{flex-shrink:0}.b1b675a2{flex-grow:0}._8e345e7d{flex-grow:1}._9e819789{align-items:flex-start}._3ae82bc9{align-items:center}._00f518cd{align-items:flex-end}@media (min-width:768px){.ef284703{align-items:flex-start}.c0033f6b{align-items:center}._23222959{align-items:flex-end}}@media (min-width:992px){.f5ff68ae{align-items:flex-start}.eaa36a65{align-items:center}._2f176e1d{align-items:flex-end}}._4749a6dc{justify-content:flex-start}.c07ae3c5{justify-content:center}._92f94735{justify-content:flex-end}._654ccdee{justify-content:space-between}@media (min-width:768px){._1598cc97{justify-content:flex-start}.a70ab2a6{justify-content:center}._6a961a37{justify-content:flex-end}._0d9709e0{justify-content:space-between}}@media (min-width:992px){._9f212924{justify-content:flex-start}.c6fbe3ef{justify-content:center}.cdb44e6c{justify-content:flex-end}._70f074d7{justify-content:space-between}}._01b1b3d3{overflow:hidden}.f99741e1{overflow:auto}._3f62d2f4{overflow:visible}._58821030{overflow:scroll}._5ff2e0fb{width:100%}.b43d8faa{height:100%}._43d03f23{padding-top:var(--reactist-spacing-xsmall)}.c82a83d3{padding-top:var(--reactist-spacing-small)}._05b7d9e9{padding-top:var(--reactist-spacing-medium)}._221cd893{padding-top:var(--reactist-spacing-large)}.a303d58a{padding-top:var(--reactist-spacing-xlarge)}._543c0127{padding-top:var(--reactist-spacing-xxlarge)}@media (min-width:768px){.a2e0fd3e{padding-top:var(--reactist-spacing-xsmall)}._0bde39f9{padding-top:var(--reactist-spacing-small)}._5f4af3c6{padding-top:var(--reactist-spacing-medium)}.fa89daaa{padding-top:var(--reactist-spacing-large)}._5f9a63f3{padding-top:var(--reactist-spacing-xlarge)}.c45f5234{padding-top:var(--reactist-spacing-xxlarge)}}@media (min-width:992px){._9cf8b441{padding-top:var(--reactist-spacing-xsmall)}._2813d05c{padding-top:var(--reactist-spacing-small)}._8703333a{padding-top:var(--reactist-spacing-medium)}._13793865{padding-top:var(--reactist-spacing-large)}._240da042{padding-top:var(--reactist-spacing-xlarge)}.c9c7fbc2{padding-top:var(--reactist-spacing-xxlarge)}}.d495bb28{padding-right:var(--reactist-spacing-xsmall)}._042ac90b{padding-right:var(--reactist-spacing-small)}._1b11d4ca{padding-right:var(--reactist-spacing-medium)}.bf68852a{padding-right:var(--reactist-spacing-large)}._4e4767c7{padding-right:var(--reactist-spacing-xlarge)}.bfa73acf{padding-right:var(--reactist-spacing-xxlarge)}@media (min-width:768px){.d6462717{padding-right:var(--reactist-spacing-xsmall)}.f797ebe8{padding-right:var(--reactist-spacing-small)}._44ba8f12{padding-right:var(--reactist-spacing-medium)}._40c5576f{padding-right:var(--reactist-spacing-large)}.e7ee4168{padding-right:var(--reactist-spacing-xlarge)}._860d8fbf{padding-right:var(--reactist-spacing-xxlarge)}}@media (min-width:992px){.c97156fd{padding-right:var(--reactist-spacing-xsmall)}.c9953041{padding-right:var(--reactist-spacing-small)}._37914764{padding-right:var(--reactist-spacing-medium)}._1ca8c885{padding-right:var(--reactist-spacing-large)}._75d49cdb{padding-right:var(--reactist-spacing-xlarge)}.d32fa11d{padding-right:var(--reactist-spacing-xxlarge)}}.bc3ad5d0{padding-bottom:var(--reactist-spacing-xsmall)}._46557bc6{padding-bottom:var(--reactist-spacing-small)}.b923b5a7{padding-bottom:var(--reactist-spacing-medium)}._21795b21{padding-bottom:var(--reactist-spacing-large)}._1843b8d5{padding-bottom:var(--reactist-spacing-xlarge)}.aa17bf37{padding-bottom:var(--reactist-spacing-xxlarge)}@media (min-width:768px){.a28f6624{padding-bottom:var(--reactist-spacing-xsmall)}._7da0f299{padding-bottom:var(--reactist-spacing-small)}._50149ce3{padding-bottom:var(--reactist-spacing-medium)}.a6ab60e2{padding-bottom:var(--reactist-spacing-large)}.ce605666{padding-bottom:var(--reactist-spacing-xlarge)}.b956675e{padding-bottom:var(--reactist-spacing-xxlarge)}}@media (min-width:992px){.d5326ae6{padding-bottom:var(--reactist-spacing-xsmall)}._6803052d{padding-bottom:var(--reactist-spacing-small)}._69a10a83{padding-bottom:var(--reactist-spacing-medium)}._5a8a9ae8{padding-bottom:var(--reactist-spacing-large)}._8b25ea98{padding-bottom:var(--reactist-spacing-xlarge)}.dfd70349{padding-bottom:var(--reactist-spacing-xxlarge)}}._805ae294{padding-left:var(--reactist-spacing-xsmall)}.df5b5dfd{padding-left:var(--reactist-spacing-small)}.eadadb70{padding-left:var(--reactist-spacing-medium)}._96f7a1d7{padding-left:var(--reactist-spacing-large)}.bcc8a161{padding-left:var(--reactist-spacing-xlarge)}._3f7a75c6{padding-left:var(--reactist-spacing-xxlarge)}@media (min-width:768px){._98624fbc{padding-left:var(--reactist-spacing-xsmall)}.b27f1381{padding-left:var(--reactist-spacing-small)}._21610d64{padding-left:var(--reactist-spacing-medium)}.fa50a773{padding-left:var(--reactist-spacing-large)}.b89f0a01{padding-left:var(--reactist-spacing-xlarge)}.e9b75114{padding-left:var(--reactist-spacing-xxlarge)}}@media (min-width:992px){._1d2763bd{padding-left:var(--reactist-spacing-xsmall)}._2b159c75{padding-left:var(--reactist-spacing-small)}._91d5fe19{padding-left:var(--reactist-spacing-medium)}._1818546c{padding-left:var(--reactist-spacing-large)}.fe23556f{padding-left:var(--reactist-spacing-xlarge)}.b69c0660{padding-left:var(--reactist-spacing-xxlarge)}}._191675e3{background-color:var(--reactist-bg-default)}.c9237bd2{background-color:var(--reactist-bg-aside)}.c6d1677f{background-color:var(--reactist-bg-highlight)}.e4c307c8{background-color:var(--reactist-bg-selected)}.d96494dc{border-radius:var(--reactist-border-radius-small)}.e4c4cad8{border-radius:var(--reactist-border-radius-large)}.ba98367a{border:1px solid var(--reactist-framework-border)}
4
- .b2fe9429 textarea{padding:var(--reactist-spacing-small);width:100%;box-sizing:border-box;border-radius:var(--reactist-border-radius-small);border:1px solid var(--reactist-framework-border)}.b2fe9429 textarea:focus{border-color:var(--reactist-framework-border-focus)}
1
+ .c12d1277{font-family:var(--reactist-font-family);font-size:var(--reactist-font-size-body);font-weight:var(--reactist-font-weight-regular);color:var(--reactist-content-primary)}.c88e1204{font-size:var(--reactist-font-size-caption)}._426d67ec{font-size:var(--reactist-font-size-copy)}.f978d6c7{font-size:var(--reactist-font-size-subtitle)}._0c31eccd{font-weight:var(--reactist-font-weight-medium)}.aba17bdd{font-weight:var(--reactist-font-weight-strong)}._2767b43d{color:var(--reactist-content-secondary)}.e8ae531e{color:var(--reactist-chromatic-content-red)}.dc839422{display:-webkit-box;-webkit-box-orient:vertical;overflow:hidden}.e2d23135{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}._7c778b7e{-webkit-line-clamp:2}._5ff41166{-webkit-line-clamp:3}.b7a4998e{-webkit-line-clamp:4}._6a7f8803{-webkit-line-clamp:5}
2
+ .ed7d894c{font-family:var(--reactist-font-family)}._22213081{font-weight:var(--reactist-font-weight-strong)}.be8637dd{color:var(--reactist-content-secondary)}._72b46ad5{text-align:right}
3
+ ._3f3a401c{border-bottom:1px solid var(--reactist-divider-primary)}._03b05b70{border-bottom:1px solid var(--reactist-divider-secondary)}.b6f67ff8{border-bottom:1px solid var(--reactist-divider-tertiary)}
4
+ ._7b475ead>:not(:first-child){margin-top:var(--reactist-spacing-xsmall)}._5641699f>:not(:first-child){margin-top:var(--reactist-spacing-small)}._1a1c63e4>:not(:first-child){margin-top:var(--reactist-spacing-medium)}._560f80a0>:not(:first-child){margin-top:var(--reactist-spacing-large)}._84ffebbc>:not(:first-child){margin-top:var(--reactist-spacing-xlarge)}.b60a65cb>:not(:first-child){margin-top:var(--reactist-spacing-xxlarge)}@media (min-width:768px){.d808f5c3>:not(:first-child){margin-top:var(--reactist-spacing-xsmall)}.a51c76b3>:not(:first-child){margin-top:var(--reactist-spacing-small)}._7185a7aa>:not(:first-child){margin-top:var(--reactist-spacing-medium)}.af82e610>:not(:first-child){margin-top:var(--reactist-spacing-large)}._88b4ff46>:not(:first-child){margin-top:var(--reactist-spacing-xlarge)}._9de15321>:not(:first-child){margin-top:var(--reactist-spacing-xxlarge)}}@media (min-width:992px){._6fb32d20>:not(:first-child){margin-top:var(--reactist-spacing-xsmall)}._07ee315a>:not(:first-child){margin-top:var(--reactist-spacing-small)}.a270d7ec>:not(:first-child){margin-top:var(--reactist-spacing-medium)}.ea6ebb29>:not(:first-child){margin-top:var(--reactist-spacing-large)}._35b36178>:not(:first-child){margin-top:var(--reactist-spacing-xlarge)}._56c7dc23>:not(:first-child){margin-top:var(--reactist-spacing-xxlarge)}}
5
+ ._26c5201d{box-sizing:border-box;border:0;margin:0;padding:0;font-size:var(--reactist-font-size-body);font-family:inherit;vertical-align:baseline;background-color:transparent;list-style:none}pre._26c5201d{font-family:monospace}._26c5201d[hidden]{display:none!important}._77c3d8d1{position:absolute}._37cb98fb{position:fixed}.df16028f{position:relative}._4205abac{position:-webkit-sticky;position:sticky}@media (min-width:768px){.d6993b5e{position:absolute}.a015e0f5{position:fixed}._236dd3b1{position:relative}.b7ac4837{position:-webkit-sticky;position:sticky}}@media (min-width:992px){.fd93a726{position:absolute}._49228edc{position:fixed}.d972b518{position:relative}.b2a2baf3{position:-webkit-sticky;position:sticky}}._22f1edd1{display:block}.c23d2d6f{display:flex}._5359896d{display:inline}.a54a41a6{display:inline-block}.d02f3d43{display:inline-flex}._760c0710{display:none}@media (min-width:768px){._64e2ebe6{display:block}._25274f78{display:flex}._2077d063{display:inline}.aaed581f{display:inline-block}._1d4a6eb5{display:inline-flex}._66f24c78{display:none}}@media (min-width:992px){._145cca89{display:block}._1861c899{display:flex}._96a720c8{display:inline}._56acf5d5{display:inline-block}._2a268e4b{display:inline-flex}.b4f30b9e{display:none}}._0b071847{min-width:0}._8b67f007{min-width:220px}.e3ec3474{min-width:400px}._5cccd4fc{min-width:660px}._06eeac65{max-width:940px}.ee1b6344{min-width:1280px}._2df097d0{max-width:220px}.b771df2a{max-width:400px}._00ad4e35{max-width:660px}._4a848dab{max-width:940px}.bf216b15{max-width:1280px}.a60a7855{max-width:100%}._4cf1b6c9{flex-direction:column}.e056fa5a{flex-direction:row}@media (min-width:768px){.b9aa8d99{flex-direction:column}._2e8b3442{flex-direction:row}}@media (min-width:992px){._2162c612{flex-direction:column}._279bf1e4{flex-direction:row}}._346d3a71{flex-wrap:wrap}._786fd122{flex-wrap:nowrap}._4b864fc2{flex-shrink:0}._795f552f{flex-grow:0}.a68bcd0f{flex-grow:1}._34e24973{align-items:flex-start}._648380f4{align-items:center}._18b4e1d6{align-items:flex-end}._805c1b65{align-items:baseline}@media (min-width:768px){.fd4006c2{align-items:flex-start}.c3ba10a7{align-items:center}._984cd304{align-items:flex-end}._696cc167{align-items:baseline}}@media (min-width:992px){._74133d54{align-items:flex-start}._92ab46df{align-items:center}._177026d9{align-items:flex-end}.ebd2f31f{align-items:baseline}}._4969235b{justify-content:flex-start}._9594db58{justify-content:center}._6789fdd3{justify-content:flex-end}.b9902d94{justify-content:space-around}._3c3ae41b{justify-content:space-between}._8dce8767{justify-content:space-evenly}@media (min-width:768px){._6bd82354{justify-content:flex-start}._3044c29a{justify-content:center}._13da8745{justify-content:flex-end}._981fa9c8{justify-content:space-around}.d34811a6{justify-content:space-between}._53e07124{justify-content:space-evenly}}@media (min-width:992px){.e709f277{justify-content:flex-start}.abc87cc4{justify-content:center}.ce410292{justify-content:flex-end}._981fa9c8{justify-content:space-around}._5ab1bc04{justify-content:space-between}._53e07124{justify-content:space-evenly}}._11a684c0{overflow:hidden}._2c024f85{overflow:auto}._4d4892bd{overflow:visible}._22ffbb40{overflow:scroll}._330d9b0b{width:100%}.fb8deb05{height:100%}._133f5c00{background-color:var(--reactist-bg-default)}.b2be7ffe{background-color:var(--reactist-bg-aside)}.a45e67ff{background-color:var(--reactist-bg-highlight)}.b90226b5{background-color:var(--reactist-bg-selected)}._6e988219{border-radius:var(--reactist-border-radius-small)}._14cf204e{border-radius:var(--reactist-border-radius-large)}.a710cfdd{border:1px solid var(--reactist-divider-primary)}._52263feb{border:1px solid var(--reactist-divider-secondary)}._546ec3ef{border:1px solid var(--reactist-divider-tertiary)}._7fa90cb9{text-align:start}._54c80396{text-align:center}.e4b1ea49{text-align:end}._0eecd510{text-align:justify}@media (min-width:768px){.a309e75d{text-align:start}._67fb1a07{text-align:center}._0fa851ec{text-align:end}._585a0e34{text-align:justify}}@media (min-width:992px){._5f909690{text-align:start}._13e03993{text-align:center}.f142a1cb{text-align:end}._2bba79a9{text-align:justify}}
6
+ .c4803194{padding-top:var(--reactist-spacing-xsmall)}._4e9ab24b{padding-top:var(--reactist-spacing-small)}._1d226e27{padding-top:var(--reactist-spacing-medium)}.eb6097f1{padding-top:var(--reactist-spacing-large)}.d3229ba4{padding-top:var(--reactist-spacing-xlarge)}._47978ba4{padding-top:var(--reactist-spacing-xxlarge)}@media (min-width:768px){.f987719c{padding-top:var(--reactist-spacing-xsmall)}._8dbc4b4d{padding-top:var(--reactist-spacing-small)}.ae44fe07{padding-top:var(--reactist-spacing-medium)}.ffe9548d{padding-top:var(--reactist-spacing-large)}.f2b76a44{padding-top:var(--reactist-spacing-xlarge)}.c6eb8f43{padding-top:var(--reactist-spacing-xxlarge)}}@media (min-width:992px){._8699b560{padding-top:var(--reactist-spacing-xsmall)}._02c374b7{padding-top:var(--reactist-spacing-small)}._0dd0332f{padding-top:var(--reactist-spacing-medium)}.da55f1f6{padding-top:var(--reactist-spacing-large)}._8ef2a278{padding-top:var(--reactist-spacing-xlarge)}._8b493b28{padding-top:var(--reactist-spacing-xxlarge)}}._211eebc7{padding-right:var(--reactist-spacing-xsmall)}.ad0ccf15{padding-right:var(--reactist-spacing-small)}.a03e39af{padding-right:var(--reactist-spacing-medium)}.f0941ead{padding-right:var(--reactist-spacing-large)}.e47c5a43{padding-right:var(--reactist-spacing-xlarge)}.e849a5cf{padding-right:var(--reactist-spacing-xxlarge)}@media (min-width:768px){._85374228{padding-right:var(--reactist-spacing-xsmall)}._89df37b9{padding-right:var(--reactist-spacing-small)}._1cc50ebe{padding-right:var(--reactist-spacing-medium)}._1060982b{padding-right:var(--reactist-spacing-large)}.be58847d{padding-right:var(--reactist-spacing-xlarge)}._45093484{padding-right:var(--reactist-spacing-xxlarge)}}@media (min-width:992px){.f8d99d6a{padding-right:var(--reactist-spacing-xsmall)}.efa076d9{padding-right:var(--reactist-spacing-small)}.e59caa64{padding-right:var(--reactist-spacing-medium)}.da42f46a{padding-right:var(--reactist-spacing-large)}.b3ee2580{padding-right:var(--reactist-spacing-xlarge)}._3ef94658{padding-right:var(--reactist-spacing-xxlarge)}}.b0e6eab4{padding-bottom:var(--reactist-spacing-xsmall)}._9510d053{padding-bottom:var(--reactist-spacing-small)}.d7af60c9{padding-bottom:var(--reactist-spacing-medium)}.b75f86cd{padding-bottom:var(--reactist-spacing-large)}.fbd4ce29{padding-bottom:var(--reactist-spacing-xlarge)}._33e3ad63{padding-bottom:var(--reactist-spacing-xxlarge)}@media (min-width:768px){.f0302da7{padding-bottom:var(--reactist-spacing-xsmall)}._4f9b8012{padding-bottom:var(--reactist-spacing-small)}._4333e20e{padding-bottom:var(--reactist-spacing-medium)}._30bbc76c{padding-bottom:var(--reactist-spacing-large)}.ba5a4008{padding-bottom:var(--reactist-spacing-xlarge)}._423a3b1a{padding-bottom:var(--reactist-spacing-xxlarge)}}@media (min-width:992px){.b40139b7{padding-bottom:var(--reactist-spacing-xsmall)}.f96071fa{padding-bottom:var(--reactist-spacing-small)}.fe803c9a{padding-bottom:var(--reactist-spacing-medium)}._01686eb9{padding-bottom:var(--reactist-spacing-large)}.afa763d8{padding-bottom:var(--reactist-spacing-xlarge)}.a95785f1{padding-bottom:var(--reactist-spacing-xxlarge)}}.cad4e2ec{padding-left:var(--reactist-spacing-xsmall)}.d70b3c17{padding-left:var(--reactist-spacing-small)}._8c851bd6{padding-left:var(--reactist-spacing-medium)}._078feb3c{padding-left:var(--reactist-spacing-large)}._76ab968c{padding-left:var(--reactist-spacing-xlarge)}.aaca85d7{padding-left:var(--reactist-spacing-xxlarge)}@media (min-width:768px){._5eb0e5aa{padding-left:var(--reactist-spacing-xsmall)}._0384fb4f{padding-left:var(--reactist-spacing-small)}.edffff6f{padding-left:var(--reactist-spacing-medium)}._873b9a46{padding-left:var(--reactist-spacing-large)}._89105db5{padding-left:var(--reactist-spacing-xlarge)}.db1966fe{padding-left:var(--reactist-spacing-xxlarge)}}@media (min-width:992px){.b17f826b{padding-left:var(--reactist-spacing-xsmall)}._6dc83610{padding-left:var(--reactist-spacing-small)}._3421b8b2{padding-left:var(--reactist-spacing-medium)}._68cec7a6{padding-left:var(--reactist-spacing-large)}._94bde020{padding-left:var(--reactist-spacing-xlarge)}.b94ee579{padding-left:var(--reactist-spacing-xxlarge)}}
7
+ .c7813d79{margin-top:var(--reactist-spacing-xsmall)}.d3449da6{margin-top:var(--reactist-spacing-small)}._4ea254c1{margin-top:var(--reactist-spacing-medium)}.c0844f64{margin-top:var(--reactist-spacing-large)}._213145b4{margin-top:var(--reactist-spacing-xlarge)}.df61c84c{margin-top:var(--reactist-spacing-xxlarge)}.efe72b13{margin-top:calc(var(--reactist-spacing-xsmall)*-1)}._870c2768{margin-top:calc(var(--reactist-spacing-small)*-1)}._0b927c57{margin-top:calc(var(--reactist-spacing-medium)*-1)}._461db014{margin-top:calc(var(--reactist-spacing-large)*-1)}._2a3a8cb8{margin-top:calc(var(--reactist-spacing-xlarge)*-1)}._9bcda921{margin-top:calc(var(--reactist-spacing-xxlarge)*-1)}@media (min-width:768px){._6add01e4{margin-top:var(--reactist-spacing-xsmall)}._735ef86b{margin-top:var(--reactist-spacing-small)}._0477d068{margin-top:var(--reactist-spacing-medium)}._2c90af97{margin-top:var(--reactist-spacing-large)}._63a82db6{margin-top:var(--reactist-spacing-xlarge)}._03cd7726{margin-top:var(--reactist-spacing-xxlarge)}.c986a62a{margin-top:calc(var(--reactist-spacing-xsmall)*-1)}.be2bdcdd{margin-top:calc(var(--reactist-spacing-small)*-1)}._47d2686b{margin-top:calc(var(--reactist-spacing-medium)*-1)}._25e5af9d{margin-top:calc(var(--reactist-spacing-large)*-1)}.ee82f441{margin-top:calc(var(--reactist-spacing-xlarge)*-1)}.a6f9d404{margin-top:calc(var(--reactist-spacing-xxlarge)*-1)}}@media (min-width:992px){._4d8d9a36{margin-top:var(--reactist-spacing-xsmall)}.e813cee7{margin-top:var(--reactist-spacing-small)}._56975b7d{margin-top:var(--reactist-spacing-medium)}._53b367f6{margin-top:var(--reactist-spacing-large)}.d69e7311{margin-top:var(--reactist-spacing-xlarge)}._92f57c7e{margin-top:var(--reactist-spacing-xxlarge)}._96880d3e{margin-top:calc(var(--reactist-spacing-xsmall)*-1)}.dc3f3555{margin-top:calc(var(--reactist-spacing-small)*-1)}._86dd06bb{margin-top:calc(var(--reactist-spacing-medium)*-1)}.c93ef12e{margin-top:calc(var(--reactist-spacing-large)*-1)}.bc8fd4a2{margin-top:calc(var(--reactist-spacing-xlarge)*-1)}.b12a9124{margin-top:calc(var(--reactist-spacing-xxlarge)*-1)}}._6016f4fb{margin-right:var(--reactist-spacing-xsmall)}.b85e3dfa{margin-right:var(--reactist-spacing-small)}._297575f4{margin-right:var(--reactist-spacing-medium)}.b401ac6c{margin-right:var(--reactist-spacing-large)}.dc3ec387{margin-right:var(--reactist-spacing-xlarge)}._24694604{margin-right:var(--reactist-spacing-xxlarge)}._8e9bf2ee{margin-right:calc(var(--reactist-spacing-xsmall)*-1)}.ae9d1115{margin-right:calc(var(--reactist-spacing-small)*-1)}._14e46fc3{margin-right:calc(var(--reactist-spacing-medium)*-1)}._3370631b{margin-right:calc(var(--reactist-spacing-large)*-1)}._3f0e9b50{margin-right:calc(var(--reactist-spacing-xlarge)*-1)}.bc13e010{margin-right:calc(var(--reactist-spacing-xxlarge)*-1)}@media (min-width:768px){._6fa1aae3{margin-right:var(--reactist-spacing-xsmall)}._2976c5cb{margin-right:var(--reactist-spacing-small)}._38d94802{margin-right:var(--reactist-spacing-medium)}.db9569b5{margin-right:var(--reactist-spacing-large)}._4a52f06d{margin-right:var(--reactist-spacing-xlarge)}._8a0f0410{margin-right:var(--reactist-spacing-xxlarge)}.e7d40e9d{margin-right:calc(var(--reactist-spacing-xsmall)*-1)}._680fde91{margin-right:calc(var(--reactist-spacing-small)*-1)}._021010ca{margin-right:calc(var(--reactist-spacing-medium)*-1)}._9e52c87c{margin-right:calc(var(--reactist-spacing-large)*-1)}._4d602613{margin-right:calc(var(--reactist-spacing-xlarge)*-1)}._21b1b65a{margin-right:calc(var(--reactist-spacing-xxlarge)*-1)}}@media (min-width:992px){._7321bc07{margin-right:var(--reactist-spacing-xsmall)}.fa1721f4{margin-right:var(--reactist-spacing-small)}._3fd7b4b8{margin-right:var(--reactist-spacing-medium)}._4fdc2f74{margin-right:var(--reactist-spacing-large)}.c0254761{margin-right:var(--reactist-spacing-xlarge)}._710a5f09{margin-right:var(--reactist-spacing-xxlarge)}.e08bee7f{margin-right:calc(var(--reactist-spacing-xsmall)*-1)}.e5ab73d2{margin-right:calc(var(--reactist-spacing-small)*-1)}._5e731477{margin-right:calc(var(--reactist-spacing-medium)*-1)}._0f57a22e{margin-right:calc(var(--reactist-spacing-large)*-1)}._25f26ed3{margin-right:calc(var(--reactist-spacing-xlarge)*-1)}._11a3b4e0{margin-right:calc(var(--reactist-spacing-xxlarge)*-1)}}._6a4f69f7{margin-bottom:var(--reactist-spacing-xsmall)}.db26b033{margin-bottom:var(--reactist-spacing-small)}.c7313022{margin-bottom:var(--reactist-spacing-medium)}.a5885889{margin-bottom:var(--reactist-spacing-large)}._33dfbd8e{margin-bottom:var(--reactist-spacing-xlarge)}._795ad2de{margin-bottom:var(--reactist-spacing-xxlarge)}.a329dbd3{margin-bottom:calc(var(--reactist-spacing-xsmall)*-1)}._85e739fb{margin-bottom:calc(var(--reactist-spacing-small)*-1)}._681f65ff{margin-bottom:calc(var(--reactist-spacing-medium)*-1)}.caf50d8f{margin-bottom:calc(var(--reactist-spacing-large)*-1)}._1e084cbf{margin-bottom:calc(var(--reactist-spacing-xlarge)*-1)}._3dfb1c7e{margin-bottom:calc(var(--reactist-spacing-xxlarge)*-1)}@media (min-width:768px){.ef4735be{margin-bottom:var(--reactist-spacing-xsmall)}.de55afba{margin-bottom:var(--reactist-spacing-small)}._0e33ce88{margin-bottom:var(--reactist-spacing-medium)}._8ca391fc{margin-bottom:var(--reactist-spacing-large)}._3a609d23{margin-bottom:var(--reactist-spacing-xlarge)}._3e1177e4{margin-bottom:var(--reactist-spacing-xxlarge)}.d384884d{margin-bottom:calc(var(--reactist-spacing-xsmall)*-1)}._75254cec{margin-bottom:calc(var(--reactist-spacing-small)*-1)}._5d9f127d{margin-bottom:calc(var(--reactist-spacing-medium)*-1)}._835f1089{margin-bottom:calc(var(--reactist-spacing-large)*-1)}.dad52a72{margin-bottom:calc(var(--reactist-spacing-xlarge)*-1)}._8703a4bf{margin-bottom:calc(var(--reactist-spacing-xxlarge)*-1)}}@media (min-width:992px){._90fd20e9{margin-bottom:var(--reactist-spacing-xsmall)}.f3769191{margin-bottom:var(--reactist-spacing-small)}._156410f8{margin-bottom:var(--reactist-spacing-medium)}._7fed74d0{margin-bottom:var(--reactist-spacing-large)}._477dc10e{margin-bottom:var(--reactist-spacing-xlarge)}._85c82d89{margin-bottom:var(--reactist-spacing-xxlarge)}._4f09c1e0{margin-bottom:calc(var(--reactist-spacing-xsmall)*-1)}._9523e048{margin-bottom:calc(var(--reactist-spacing-small)*-1)}.efe10240{margin-bottom:calc(var(--reactist-spacing-medium)*-1)}.c43971e6{margin-bottom:calc(var(--reactist-spacing-large)*-1)}.f9b4da15{margin-bottom:calc(var(--reactist-spacing-xlarge)*-1)}.a10fdf70{margin-bottom:calc(var(--reactist-spacing-xxlarge)*-1)}}.f9be90b4{margin-left:var(--reactist-spacing-xsmall)}.f53218d5{margin-left:var(--reactist-spacing-small)}.c4a9b3ab{margin-left:var(--reactist-spacing-medium)}._5755e2c3{margin-left:var(--reactist-spacing-large)}._33fc9354{margin-left:var(--reactist-spacing-xlarge)}._4749a3bf{margin-left:var(--reactist-spacing-xxlarge)}.c76cb3c7{margin-left:calc(var(--reactist-spacing-xsmall)*-1)}._96003c07{margin-left:calc(var(--reactist-spacing-small)*-1)}._09988d07{margin-left:calc(var(--reactist-spacing-medium)*-1)}.b4a486f6{margin-left:calc(var(--reactist-spacing-large)*-1)}.f396e75e{margin-left:calc(var(--reactist-spacing-xlarge)*-1)}._81d1f26d{margin-left:calc(var(--reactist-spacing-xxlarge)*-1)}@media (min-width:768px){._0a46e8f1{margin-left:var(--reactist-spacing-xsmall)}._57c970af{margin-left:var(--reactist-spacing-small)}._4b6099d3{margin-left:var(--reactist-spacing-medium)}._378fcff5{margin-left:var(--reactist-spacing-large)}.f8785663{margin-left:var(--reactist-spacing-xlarge)}._72f957ee{margin-left:var(--reactist-spacing-xxlarge)}._2288c7e1{margin-left:calc(var(--reactist-spacing-xsmall)*-1)}.b27c1c05{margin-left:calc(var(--reactist-spacing-small)*-1)}._702cbb13{margin-left:calc(var(--reactist-spacing-medium)*-1)}._1a2748b4{margin-left:calc(var(--reactist-spacing-large)*-1)}.b8c043a5{margin-left:calc(var(--reactist-spacing-xlarge)*-1)}._8dc8ff63{margin-left:calc(var(--reactist-spacing-xxlarge)*-1)}}@media (min-width:992px){.c2af646d{margin-left:var(--reactist-spacing-xsmall)}.c03d07be{margin-left:var(--reactist-spacing-small)}._915fb1d3{margin-left:var(--reactist-spacing-medium)}._64214ee1{margin-left:var(--reactist-spacing-large)}._7be4a22c{margin-left:var(--reactist-spacing-xlarge)}._5ec0a401{margin-left:var(--reactist-spacing-xxlarge)}.ea29f1ee{margin-left:calc(var(--reactist-spacing-xsmall)*-1)}.c26652c7{margin-left:calc(var(--reactist-spacing-small)*-1)}.c24f6af9{margin-left:calc(var(--reactist-spacing-medium)*-1)}.c2671f27{margin-left:calc(var(--reactist-spacing-large)*-1)}.cc51a04e{margin-left:calc(var(--reactist-spacing-xlarge)*-1)}.fd581f54{margin-left:calc(var(--reactist-spacing-xxlarge)*-1)}}
8
+ ._5a579f96 textarea{padding:var(--reactist-spacing-small);width:100%;box-sizing:border-box;border-radius:var(--reactist-border-radius-small);border:1px solid var(--reactist-divider-secondary)}._5a579f96 textarea:focus{border-color:var(--reactist-divider-primary)}
@@ -1 +1 @@
1
- .b2fe9429 textarea{padding:var(--reactist-spacing-small);width:100%;box-sizing:border-box;border-radius:var(--reactist-border-radius-small);border:1px solid var(--reactist-framework-border)}.b2fe9429 textarea:focus{border-color:var(--reactist-framework-border-focus)}
1
+ ._5a579f96 textarea{padding:var(--reactist-spacing-small);width:100%;box-sizing:border-box;border-radius:var(--reactist-border-radius-small);border:1px solid var(--reactist-divider-secondary)}._5a579f96 textarea:focus{border-color:var(--reactist-divider-primary)}
@@ -1,4 +1,8 @@
1
- .e25b6eac{font-size:var(--reactist-font-size-normal);font-weight:var(--reactist-font-weight-regular);color:var(--reactist-content-primary)}._7be564c9{font-size:var(--reactist-font-size-xsmall)}._0b65f3be{font-size:var(--reactist-font-size-small)}._148c266b,.efa6a189{font-size:var(--reactist-font-size-large)}.a1ce91c1{font-weight:var(--reactist-font-weight-medium)}._615a6cf6{font-weight:var(--reactist-font-weight-strong)}.e1348c0a{color:var(--reactist-content-secondary)}.f2471c06{color:var(--reactist-chromatic-content-red)}._8f257fa0{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.b219e836{display:-webkit-box;-webkit-box-orient:vertical;overflow:hidden}.d1379189{-webkit-line-clamp:2}.edc9a040{-webkit-line-clamp:3}.d463b64b{-webkit-line-clamp:4}._4feee537{-webkit-line-clamp:5}
2
- ._4014f55e label{box-sizing:border-box;display:block;font-size:var(--reactist-font-size-normal)}._52b4c04a{font-weight:var(--reactist-font-weight-strong)}.a4e7d84d{color:var(--reactist-content-secondary)}._28fba036{padding-left:var(--reactist-spacing-small);text-align:right}
3
- ._7c657f27{box-sizing:border-box;border:0;margin:0;padding:0;font-size:var(--reactist-font-size-normal);font-family:inherit;vertical-align:baseline;background-color:transparent}._24f0305b{position:absolute}.f22516c3{position:fixed}.dd3031f0{position:relative}.c55e1376{position:-webkit-sticky;position:sticky}@media (min-width:768px){.c01b4973{position:absolute}.fe61c08e{position:fixed}._42cf42ae{position:relative}._1cd29585{position:-webkit-sticky;position:sticky}}@media (min-width:992px){._3bf17b40{position:absolute}._3c190375{position:fixed}._21549264{position:relative}.b3301c9a{position:-webkit-sticky;position:sticky}}.d0eafb3e{display:block}._29841fc9{display:flex}.be8e98ca{display:inline}._009244ff{display:inline-block}._366b4e11{display:inline-flex}._685beb97{display:none}@media (min-width:768px){.ae57c505{display:block}.e79407a2{display:flex}._4b3944fb{display:inline}._04228de9{display:inline-block}._29bbb522{display:inline-flex}._2d2052e6{display:none}}@media (min-width:992px){.b1ba4d16{display:block}.cb21a300{display:flex}._9b2d213a{display:inline}.c6b19ae4{display:inline-block}.e2d9e9ae{display:inline-flex}._69d56326{display:none}}.f87e83dc{min-width:0}._2ca630ec{min-width:220px}._7a1a60f1{min-width:400px}.c0a2d8db{min-width:660px}._95c19faa{max-width:940px}._4ab999ca{min-width:1280px}._1ca5dbf5{max-width:220px}.c3ff7c04{max-width:400px}._74540095{max-width:660px}._811b6141{max-width:940px}._52023176{max-width:1280px}._7ce9375b{flex-direction:column}._953fabba{flex-direction:row}@media (min-width:768px){.bfc2801e{flex-direction:column}._65c778a0{flex-direction:row}}@media (min-width:992px){._23be346b{flex-direction:column}._986465f5{flex-direction:row}}._2c4c621c{flex-wrap:wrap}.c3633c19{flex-wrap:nowrap}.b477fff2{flex-shrink:0}.b1b675a2{flex-grow:0}._8e345e7d{flex-grow:1}._9e819789{align-items:flex-start}._3ae82bc9{align-items:center}._00f518cd{align-items:flex-end}@media (min-width:768px){.ef284703{align-items:flex-start}.c0033f6b{align-items:center}._23222959{align-items:flex-end}}@media (min-width:992px){.f5ff68ae{align-items:flex-start}.eaa36a65{align-items:center}._2f176e1d{align-items:flex-end}}._4749a6dc{justify-content:flex-start}.c07ae3c5{justify-content:center}._92f94735{justify-content:flex-end}._654ccdee{justify-content:space-between}@media (min-width:768px){._1598cc97{justify-content:flex-start}.a70ab2a6{justify-content:center}._6a961a37{justify-content:flex-end}._0d9709e0{justify-content:space-between}}@media (min-width:992px){._9f212924{justify-content:flex-start}.c6fbe3ef{justify-content:center}.cdb44e6c{justify-content:flex-end}._70f074d7{justify-content:space-between}}._01b1b3d3{overflow:hidden}.f99741e1{overflow:auto}._3f62d2f4{overflow:visible}._58821030{overflow:scroll}._5ff2e0fb{width:100%}.b43d8faa{height:100%}._43d03f23{padding-top:var(--reactist-spacing-xsmall)}.c82a83d3{padding-top:var(--reactist-spacing-small)}._05b7d9e9{padding-top:var(--reactist-spacing-medium)}._221cd893{padding-top:var(--reactist-spacing-large)}.a303d58a{padding-top:var(--reactist-spacing-xlarge)}._543c0127{padding-top:var(--reactist-spacing-xxlarge)}@media (min-width:768px){.a2e0fd3e{padding-top:var(--reactist-spacing-xsmall)}._0bde39f9{padding-top:var(--reactist-spacing-small)}._5f4af3c6{padding-top:var(--reactist-spacing-medium)}.fa89daaa{padding-top:var(--reactist-spacing-large)}._5f9a63f3{padding-top:var(--reactist-spacing-xlarge)}.c45f5234{padding-top:var(--reactist-spacing-xxlarge)}}@media (min-width:992px){._9cf8b441{padding-top:var(--reactist-spacing-xsmall)}._2813d05c{padding-top:var(--reactist-spacing-small)}._8703333a{padding-top:var(--reactist-spacing-medium)}._13793865{padding-top:var(--reactist-spacing-large)}._240da042{padding-top:var(--reactist-spacing-xlarge)}.c9c7fbc2{padding-top:var(--reactist-spacing-xxlarge)}}.d495bb28{padding-right:var(--reactist-spacing-xsmall)}._042ac90b{padding-right:var(--reactist-spacing-small)}._1b11d4ca{padding-right:var(--reactist-spacing-medium)}.bf68852a{padding-right:var(--reactist-spacing-large)}._4e4767c7{padding-right:var(--reactist-spacing-xlarge)}.bfa73acf{padding-right:var(--reactist-spacing-xxlarge)}@media (min-width:768px){.d6462717{padding-right:var(--reactist-spacing-xsmall)}.f797ebe8{padding-right:var(--reactist-spacing-small)}._44ba8f12{padding-right:var(--reactist-spacing-medium)}._40c5576f{padding-right:var(--reactist-spacing-large)}.e7ee4168{padding-right:var(--reactist-spacing-xlarge)}._860d8fbf{padding-right:var(--reactist-spacing-xxlarge)}}@media (min-width:992px){.c97156fd{padding-right:var(--reactist-spacing-xsmall)}.c9953041{padding-right:var(--reactist-spacing-small)}._37914764{padding-right:var(--reactist-spacing-medium)}._1ca8c885{padding-right:var(--reactist-spacing-large)}._75d49cdb{padding-right:var(--reactist-spacing-xlarge)}.d32fa11d{padding-right:var(--reactist-spacing-xxlarge)}}.bc3ad5d0{padding-bottom:var(--reactist-spacing-xsmall)}._46557bc6{padding-bottom:var(--reactist-spacing-small)}.b923b5a7{padding-bottom:var(--reactist-spacing-medium)}._21795b21{padding-bottom:var(--reactist-spacing-large)}._1843b8d5{padding-bottom:var(--reactist-spacing-xlarge)}.aa17bf37{padding-bottom:var(--reactist-spacing-xxlarge)}@media (min-width:768px){.a28f6624{padding-bottom:var(--reactist-spacing-xsmall)}._7da0f299{padding-bottom:var(--reactist-spacing-small)}._50149ce3{padding-bottom:var(--reactist-spacing-medium)}.a6ab60e2{padding-bottom:var(--reactist-spacing-large)}.ce605666{padding-bottom:var(--reactist-spacing-xlarge)}.b956675e{padding-bottom:var(--reactist-spacing-xxlarge)}}@media (min-width:992px){.d5326ae6{padding-bottom:var(--reactist-spacing-xsmall)}._6803052d{padding-bottom:var(--reactist-spacing-small)}._69a10a83{padding-bottom:var(--reactist-spacing-medium)}._5a8a9ae8{padding-bottom:var(--reactist-spacing-large)}._8b25ea98{padding-bottom:var(--reactist-spacing-xlarge)}.dfd70349{padding-bottom:var(--reactist-spacing-xxlarge)}}._805ae294{padding-left:var(--reactist-spacing-xsmall)}.df5b5dfd{padding-left:var(--reactist-spacing-small)}.eadadb70{padding-left:var(--reactist-spacing-medium)}._96f7a1d7{padding-left:var(--reactist-spacing-large)}.bcc8a161{padding-left:var(--reactist-spacing-xlarge)}._3f7a75c6{padding-left:var(--reactist-spacing-xxlarge)}@media (min-width:768px){._98624fbc{padding-left:var(--reactist-spacing-xsmall)}.b27f1381{padding-left:var(--reactist-spacing-small)}._21610d64{padding-left:var(--reactist-spacing-medium)}.fa50a773{padding-left:var(--reactist-spacing-large)}.b89f0a01{padding-left:var(--reactist-spacing-xlarge)}.e9b75114{padding-left:var(--reactist-spacing-xxlarge)}}@media (min-width:992px){._1d2763bd{padding-left:var(--reactist-spacing-xsmall)}._2b159c75{padding-left:var(--reactist-spacing-small)}._91d5fe19{padding-left:var(--reactist-spacing-medium)}._1818546c{padding-left:var(--reactist-spacing-large)}.fe23556f{padding-left:var(--reactist-spacing-xlarge)}.b69c0660{padding-left:var(--reactist-spacing-xxlarge)}}._191675e3{background-color:var(--reactist-bg-default)}.c9237bd2{background-color:var(--reactist-bg-aside)}.c6d1677f{background-color:var(--reactist-bg-highlight)}.e4c307c8{background-color:var(--reactist-bg-selected)}.d96494dc{border-radius:var(--reactist-border-radius-small)}.e4c4cad8{border-radius:var(--reactist-border-radius-large)}.ba98367a{border:1px solid var(--reactist-framework-border)}
4
- ._509cf6b5{border-radius:var(--reactist-border-radius-small);border:1px solid var(--reactist-framework-border);overflow:clip}._509cf6b5:focus-within{border-color:var(--reactist-framework-border-focus)}._509cf6b5 input{color:var(--reactist-content-primary);flex:1;outline:none;box-sizing:border-box;width:100%;background:transparent;border:none;--tmp-desired-height:30px;--tmp-line-height-increase:4px;--tmp-vertical-padding:calc((var(--tmp-desired-height) - var(--reactist-font-size-normal) - var(--tmp-line-height-increase))/2);font-size:var(--reactist-font-size-normal);line-height:calc(var(--reactist-font-size-normal) + 4px);padding:var(--tmp-vertical-padding) 10px;margin:0}
1
+ .c12d1277{font-family:var(--reactist-font-family);font-size:var(--reactist-font-size-body);font-weight:var(--reactist-font-weight-regular);color:var(--reactist-content-primary)}.c88e1204{font-size:var(--reactist-font-size-caption)}._426d67ec{font-size:var(--reactist-font-size-copy)}.f978d6c7{font-size:var(--reactist-font-size-subtitle)}._0c31eccd{font-weight:var(--reactist-font-weight-medium)}.aba17bdd{font-weight:var(--reactist-font-weight-strong)}._2767b43d{color:var(--reactist-content-secondary)}.e8ae531e{color:var(--reactist-chromatic-content-red)}.dc839422{display:-webkit-box;-webkit-box-orient:vertical;overflow:hidden}.e2d23135{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}._7c778b7e{-webkit-line-clamp:2}._5ff41166{-webkit-line-clamp:3}.b7a4998e{-webkit-line-clamp:4}._6a7f8803{-webkit-line-clamp:5}
2
+ .ed7d894c{font-family:var(--reactist-font-family)}._22213081{font-weight:var(--reactist-font-weight-strong)}.be8637dd{color:var(--reactist-content-secondary)}._72b46ad5{text-align:right}
3
+ ._3f3a401c{border-bottom:1px solid var(--reactist-divider-primary)}._03b05b70{border-bottom:1px solid var(--reactist-divider-secondary)}.b6f67ff8{border-bottom:1px solid var(--reactist-divider-tertiary)}
4
+ ._7b475ead>:not(:first-child){margin-top:var(--reactist-spacing-xsmall)}._5641699f>:not(:first-child){margin-top:var(--reactist-spacing-small)}._1a1c63e4>:not(:first-child){margin-top:var(--reactist-spacing-medium)}._560f80a0>:not(:first-child){margin-top:var(--reactist-spacing-large)}._84ffebbc>:not(:first-child){margin-top:var(--reactist-spacing-xlarge)}.b60a65cb>:not(:first-child){margin-top:var(--reactist-spacing-xxlarge)}@media (min-width:768px){.d808f5c3>:not(:first-child){margin-top:var(--reactist-spacing-xsmall)}.a51c76b3>:not(:first-child){margin-top:var(--reactist-spacing-small)}._7185a7aa>:not(:first-child){margin-top:var(--reactist-spacing-medium)}.af82e610>:not(:first-child){margin-top:var(--reactist-spacing-large)}._88b4ff46>:not(:first-child){margin-top:var(--reactist-spacing-xlarge)}._9de15321>:not(:first-child){margin-top:var(--reactist-spacing-xxlarge)}}@media (min-width:992px){._6fb32d20>:not(:first-child){margin-top:var(--reactist-spacing-xsmall)}._07ee315a>:not(:first-child){margin-top:var(--reactist-spacing-small)}.a270d7ec>:not(:first-child){margin-top:var(--reactist-spacing-medium)}.ea6ebb29>:not(:first-child){margin-top:var(--reactist-spacing-large)}._35b36178>:not(:first-child){margin-top:var(--reactist-spacing-xlarge)}._56c7dc23>:not(:first-child){margin-top:var(--reactist-spacing-xxlarge)}}
5
+ ._26c5201d{box-sizing:border-box;border:0;margin:0;padding:0;font-size:var(--reactist-font-size-body);font-family:inherit;vertical-align:baseline;background-color:transparent;list-style:none}pre._26c5201d{font-family:monospace}._26c5201d[hidden]{display:none!important}._77c3d8d1{position:absolute}._37cb98fb{position:fixed}.df16028f{position:relative}._4205abac{position:-webkit-sticky;position:sticky}@media (min-width:768px){.d6993b5e{position:absolute}.a015e0f5{position:fixed}._236dd3b1{position:relative}.b7ac4837{position:-webkit-sticky;position:sticky}}@media (min-width:992px){.fd93a726{position:absolute}._49228edc{position:fixed}.d972b518{position:relative}.b2a2baf3{position:-webkit-sticky;position:sticky}}._22f1edd1{display:block}.c23d2d6f{display:flex}._5359896d{display:inline}.a54a41a6{display:inline-block}.d02f3d43{display:inline-flex}._760c0710{display:none}@media (min-width:768px){._64e2ebe6{display:block}._25274f78{display:flex}._2077d063{display:inline}.aaed581f{display:inline-block}._1d4a6eb5{display:inline-flex}._66f24c78{display:none}}@media (min-width:992px){._145cca89{display:block}._1861c899{display:flex}._96a720c8{display:inline}._56acf5d5{display:inline-block}._2a268e4b{display:inline-flex}.b4f30b9e{display:none}}._0b071847{min-width:0}._8b67f007{min-width:220px}.e3ec3474{min-width:400px}._5cccd4fc{min-width:660px}._06eeac65{max-width:940px}.ee1b6344{min-width:1280px}._2df097d0{max-width:220px}.b771df2a{max-width:400px}._00ad4e35{max-width:660px}._4a848dab{max-width:940px}.bf216b15{max-width:1280px}.a60a7855{max-width:100%}._4cf1b6c9{flex-direction:column}.e056fa5a{flex-direction:row}@media (min-width:768px){.b9aa8d99{flex-direction:column}._2e8b3442{flex-direction:row}}@media (min-width:992px){._2162c612{flex-direction:column}._279bf1e4{flex-direction:row}}._346d3a71{flex-wrap:wrap}._786fd122{flex-wrap:nowrap}._4b864fc2{flex-shrink:0}._795f552f{flex-grow:0}.a68bcd0f{flex-grow:1}._34e24973{align-items:flex-start}._648380f4{align-items:center}._18b4e1d6{align-items:flex-end}._805c1b65{align-items:baseline}@media (min-width:768px){.fd4006c2{align-items:flex-start}.c3ba10a7{align-items:center}._984cd304{align-items:flex-end}._696cc167{align-items:baseline}}@media (min-width:992px){._74133d54{align-items:flex-start}._92ab46df{align-items:center}._177026d9{align-items:flex-end}.ebd2f31f{align-items:baseline}}._4969235b{justify-content:flex-start}._9594db58{justify-content:center}._6789fdd3{justify-content:flex-end}.b9902d94{justify-content:space-around}._3c3ae41b{justify-content:space-between}._8dce8767{justify-content:space-evenly}@media (min-width:768px){._6bd82354{justify-content:flex-start}._3044c29a{justify-content:center}._13da8745{justify-content:flex-end}._981fa9c8{justify-content:space-around}.d34811a6{justify-content:space-between}._53e07124{justify-content:space-evenly}}@media (min-width:992px){.e709f277{justify-content:flex-start}.abc87cc4{justify-content:center}.ce410292{justify-content:flex-end}._981fa9c8{justify-content:space-around}._5ab1bc04{justify-content:space-between}._53e07124{justify-content:space-evenly}}._11a684c0{overflow:hidden}._2c024f85{overflow:auto}._4d4892bd{overflow:visible}._22ffbb40{overflow:scroll}._330d9b0b{width:100%}.fb8deb05{height:100%}._133f5c00{background-color:var(--reactist-bg-default)}.b2be7ffe{background-color:var(--reactist-bg-aside)}.a45e67ff{background-color:var(--reactist-bg-highlight)}.b90226b5{background-color:var(--reactist-bg-selected)}._6e988219{border-radius:var(--reactist-border-radius-small)}._14cf204e{border-radius:var(--reactist-border-radius-large)}.a710cfdd{border:1px solid var(--reactist-divider-primary)}._52263feb{border:1px solid var(--reactist-divider-secondary)}._546ec3ef{border:1px solid var(--reactist-divider-tertiary)}._7fa90cb9{text-align:start}._54c80396{text-align:center}.e4b1ea49{text-align:end}._0eecd510{text-align:justify}@media (min-width:768px){.a309e75d{text-align:start}._67fb1a07{text-align:center}._0fa851ec{text-align:end}._585a0e34{text-align:justify}}@media (min-width:992px){._5f909690{text-align:start}._13e03993{text-align:center}.f142a1cb{text-align:end}._2bba79a9{text-align:justify}}
6
+ .c4803194{padding-top:var(--reactist-spacing-xsmall)}._4e9ab24b{padding-top:var(--reactist-spacing-small)}._1d226e27{padding-top:var(--reactist-spacing-medium)}.eb6097f1{padding-top:var(--reactist-spacing-large)}.d3229ba4{padding-top:var(--reactist-spacing-xlarge)}._47978ba4{padding-top:var(--reactist-spacing-xxlarge)}@media (min-width:768px){.f987719c{padding-top:var(--reactist-spacing-xsmall)}._8dbc4b4d{padding-top:var(--reactist-spacing-small)}.ae44fe07{padding-top:var(--reactist-spacing-medium)}.ffe9548d{padding-top:var(--reactist-spacing-large)}.f2b76a44{padding-top:var(--reactist-spacing-xlarge)}.c6eb8f43{padding-top:var(--reactist-spacing-xxlarge)}}@media (min-width:992px){._8699b560{padding-top:var(--reactist-spacing-xsmall)}._02c374b7{padding-top:var(--reactist-spacing-small)}._0dd0332f{padding-top:var(--reactist-spacing-medium)}.da55f1f6{padding-top:var(--reactist-spacing-large)}._8ef2a278{padding-top:var(--reactist-spacing-xlarge)}._8b493b28{padding-top:var(--reactist-spacing-xxlarge)}}._211eebc7{padding-right:var(--reactist-spacing-xsmall)}.ad0ccf15{padding-right:var(--reactist-spacing-small)}.a03e39af{padding-right:var(--reactist-spacing-medium)}.f0941ead{padding-right:var(--reactist-spacing-large)}.e47c5a43{padding-right:var(--reactist-spacing-xlarge)}.e849a5cf{padding-right:var(--reactist-spacing-xxlarge)}@media (min-width:768px){._85374228{padding-right:var(--reactist-spacing-xsmall)}._89df37b9{padding-right:var(--reactist-spacing-small)}._1cc50ebe{padding-right:var(--reactist-spacing-medium)}._1060982b{padding-right:var(--reactist-spacing-large)}.be58847d{padding-right:var(--reactist-spacing-xlarge)}._45093484{padding-right:var(--reactist-spacing-xxlarge)}}@media (min-width:992px){.f8d99d6a{padding-right:var(--reactist-spacing-xsmall)}.efa076d9{padding-right:var(--reactist-spacing-small)}.e59caa64{padding-right:var(--reactist-spacing-medium)}.da42f46a{padding-right:var(--reactist-spacing-large)}.b3ee2580{padding-right:var(--reactist-spacing-xlarge)}._3ef94658{padding-right:var(--reactist-spacing-xxlarge)}}.b0e6eab4{padding-bottom:var(--reactist-spacing-xsmall)}._9510d053{padding-bottom:var(--reactist-spacing-small)}.d7af60c9{padding-bottom:var(--reactist-spacing-medium)}.b75f86cd{padding-bottom:var(--reactist-spacing-large)}.fbd4ce29{padding-bottom:var(--reactist-spacing-xlarge)}._33e3ad63{padding-bottom:var(--reactist-spacing-xxlarge)}@media (min-width:768px){.f0302da7{padding-bottom:var(--reactist-spacing-xsmall)}._4f9b8012{padding-bottom:var(--reactist-spacing-small)}._4333e20e{padding-bottom:var(--reactist-spacing-medium)}._30bbc76c{padding-bottom:var(--reactist-spacing-large)}.ba5a4008{padding-bottom:var(--reactist-spacing-xlarge)}._423a3b1a{padding-bottom:var(--reactist-spacing-xxlarge)}}@media (min-width:992px){.b40139b7{padding-bottom:var(--reactist-spacing-xsmall)}.f96071fa{padding-bottom:var(--reactist-spacing-small)}.fe803c9a{padding-bottom:var(--reactist-spacing-medium)}._01686eb9{padding-bottom:var(--reactist-spacing-large)}.afa763d8{padding-bottom:var(--reactist-spacing-xlarge)}.a95785f1{padding-bottom:var(--reactist-spacing-xxlarge)}}.cad4e2ec{padding-left:var(--reactist-spacing-xsmall)}.d70b3c17{padding-left:var(--reactist-spacing-small)}._8c851bd6{padding-left:var(--reactist-spacing-medium)}._078feb3c{padding-left:var(--reactist-spacing-large)}._76ab968c{padding-left:var(--reactist-spacing-xlarge)}.aaca85d7{padding-left:var(--reactist-spacing-xxlarge)}@media (min-width:768px){._5eb0e5aa{padding-left:var(--reactist-spacing-xsmall)}._0384fb4f{padding-left:var(--reactist-spacing-small)}.edffff6f{padding-left:var(--reactist-spacing-medium)}._873b9a46{padding-left:var(--reactist-spacing-large)}._89105db5{padding-left:var(--reactist-spacing-xlarge)}.db1966fe{padding-left:var(--reactist-spacing-xxlarge)}}@media (min-width:992px){.b17f826b{padding-left:var(--reactist-spacing-xsmall)}._6dc83610{padding-left:var(--reactist-spacing-small)}._3421b8b2{padding-left:var(--reactist-spacing-medium)}._68cec7a6{padding-left:var(--reactist-spacing-large)}._94bde020{padding-left:var(--reactist-spacing-xlarge)}.b94ee579{padding-left:var(--reactist-spacing-xxlarge)}}
7
+ .c7813d79{margin-top:var(--reactist-spacing-xsmall)}.d3449da6{margin-top:var(--reactist-spacing-small)}._4ea254c1{margin-top:var(--reactist-spacing-medium)}.c0844f64{margin-top:var(--reactist-spacing-large)}._213145b4{margin-top:var(--reactist-spacing-xlarge)}.df61c84c{margin-top:var(--reactist-spacing-xxlarge)}.efe72b13{margin-top:calc(var(--reactist-spacing-xsmall)*-1)}._870c2768{margin-top:calc(var(--reactist-spacing-small)*-1)}._0b927c57{margin-top:calc(var(--reactist-spacing-medium)*-1)}._461db014{margin-top:calc(var(--reactist-spacing-large)*-1)}._2a3a8cb8{margin-top:calc(var(--reactist-spacing-xlarge)*-1)}._9bcda921{margin-top:calc(var(--reactist-spacing-xxlarge)*-1)}@media (min-width:768px){._6add01e4{margin-top:var(--reactist-spacing-xsmall)}._735ef86b{margin-top:var(--reactist-spacing-small)}._0477d068{margin-top:var(--reactist-spacing-medium)}._2c90af97{margin-top:var(--reactist-spacing-large)}._63a82db6{margin-top:var(--reactist-spacing-xlarge)}._03cd7726{margin-top:var(--reactist-spacing-xxlarge)}.c986a62a{margin-top:calc(var(--reactist-spacing-xsmall)*-1)}.be2bdcdd{margin-top:calc(var(--reactist-spacing-small)*-1)}._47d2686b{margin-top:calc(var(--reactist-spacing-medium)*-1)}._25e5af9d{margin-top:calc(var(--reactist-spacing-large)*-1)}.ee82f441{margin-top:calc(var(--reactist-spacing-xlarge)*-1)}.a6f9d404{margin-top:calc(var(--reactist-spacing-xxlarge)*-1)}}@media (min-width:992px){._4d8d9a36{margin-top:var(--reactist-spacing-xsmall)}.e813cee7{margin-top:var(--reactist-spacing-small)}._56975b7d{margin-top:var(--reactist-spacing-medium)}._53b367f6{margin-top:var(--reactist-spacing-large)}.d69e7311{margin-top:var(--reactist-spacing-xlarge)}._92f57c7e{margin-top:var(--reactist-spacing-xxlarge)}._96880d3e{margin-top:calc(var(--reactist-spacing-xsmall)*-1)}.dc3f3555{margin-top:calc(var(--reactist-spacing-small)*-1)}._86dd06bb{margin-top:calc(var(--reactist-spacing-medium)*-1)}.c93ef12e{margin-top:calc(var(--reactist-spacing-large)*-1)}.bc8fd4a2{margin-top:calc(var(--reactist-spacing-xlarge)*-1)}.b12a9124{margin-top:calc(var(--reactist-spacing-xxlarge)*-1)}}._6016f4fb{margin-right:var(--reactist-spacing-xsmall)}.b85e3dfa{margin-right:var(--reactist-spacing-small)}._297575f4{margin-right:var(--reactist-spacing-medium)}.b401ac6c{margin-right:var(--reactist-spacing-large)}.dc3ec387{margin-right:var(--reactist-spacing-xlarge)}._24694604{margin-right:var(--reactist-spacing-xxlarge)}._8e9bf2ee{margin-right:calc(var(--reactist-spacing-xsmall)*-1)}.ae9d1115{margin-right:calc(var(--reactist-spacing-small)*-1)}._14e46fc3{margin-right:calc(var(--reactist-spacing-medium)*-1)}._3370631b{margin-right:calc(var(--reactist-spacing-large)*-1)}._3f0e9b50{margin-right:calc(var(--reactist-spacing-xlarge)*-1)}.bc13e010{margin-right:calc(var(--reactist-spacing-xxlarge)*-1)}@media (min-width:768px){._6fa1aae3{margin-right:var(--reactist-spacing-xsmall)}._2976c5cb{margin-right:var(--reactist-spacing-small)}._38d94802{margin-right:var(--reactist-spacing-medium)}.db9569b5{margin-right:var(--reactist-spacing-large)}._4a52f06d{margin-right:var(--reactist-spacing-xlarge)}._8a0f0410{margin-right:var(--reactist-spacing-xxlarge)}.e7d40e9d{margin-right:calc(var(--reactist-spacing-xsmall)*-1)}._680fde91{margin-right:calc(var(--reactist-spacing-small)*-1)}._021010ca{margin-right:calc(var(--reactist-spacing-medium)*-1)}._9e52c87c{margin-right:calc(var(--reactist-spacing-large)*-1)}._4d602613{margin-right:calc(var(--reactist-spacing-xlarge)*-1)}._21b1b65a{margin-right:calc(var(--reactist-spacing-xxlarge)*-1)}}@media (min-width:992px){._7321bc07{margin-right:var(--reactist-spacing-xsmall)}.fa1721f4{margin-right:var(--reactist-spacing-small)}._3fd7b4b8{margin-right:var(--reactist-spacing-medium)}._4fdc2f74{margin-right:var(--reactist-spacing-large)}.c0254761{margin-right:var(--reactist-spacing-xlarge)}._710a5f09{margin-right:var(--reactist-spacing-xxlarge)}.e08bee7f{margin-right:calc(var(--reactist-spacing-xsmall)*-1)}.e5ab73d2{margin-right:calc(var(--reactist-spacing-small)*-1)}._5e731477{margin-right:calc(var(--reactist-spacing-medium)*-1)}._0f57a22e{margin-right:calc(var(--reactist-spacing-large)*-1)}._25f26ed3{margin-right:calc(var(--reactist-spacing-xlarge)*-1)}._11a3b4e0{margin-right:calc(var(--reactist-spacing-xxlarge)*-1)}}._6a4f69f7{margin-bottom:var(--reactist-spacing-xsmall)}.db26b033{margin-bottom:var(--reactist-spacing-small)}.c7313022{margin-bottom:var(--reactist-spacing-medium)}.a5885889{margin-bottom:var(--reactist-spacing-large)}._33dfbd8e{margin-bottom:var(--reactist-spacing-xlarge)}._795ad2de{margin-bottom:var(--reactist-spacing-xxlarge)}.a329dbd3{margin-bottom:calc(var(--reactist-spacing-xsmall)*-1)}._85e739fb{margin-bottom:calc(var(--reactist-spacing-small)*-1)}._681f65ff{margin-bottom:calc(var(--reactist-spacing-medium)*-1)}.caf50d8f{margin-bottom:calc(var(--reactist-spacing-large)*-1)}._1e084cbf{margin-bottom:calc(var(--reactist-spacing-xlarge)*-1)}._3dfb1c7e{margin-bottom:calc(var(--reactist-spacing-xxlarge)*-1)}@media (min-width:768px){.ef4735be{margin-bottom:var(--reactist-spacing-xsmall)}.de55afba{margin-bottom:var(--reactist-spacing-small)}._0e33ce88{margin-bottom:var(--reactist-spacing-medium)}._8ca391fc{margin-bottom:var(--reactist-spacing-large)}._3a609d23{margin-bottom:var(--reactist-spacing-xlarge)}._3e1177e4{margin-bottom:var(--reactist-spacing-xxlarge)}.d384884d{margin-bottom:calc(var(--reactist-spacing-xsmall)*-1)}._75254cec{margin-bottom:calc(var(--reactist-spacing-small)*-1)}._5d9f127d{margin-bottom:calc(var(--reactist-spacing-medium)*-1)}._835f1089{margin-bottom:calc(var(--reactist-spacing-large)*-1)}.dad52a72{margin-bottom:calc(var(--reactist-spacing-xlarge)*-1)}._8703a4bf{margin-bottom:calc(var(--reactist-spacing-xxlarge)*-1)}}@media (min-width:992px){._90fd20e9{margin-bottom:var(--reactist-spacing-xsmall)}.f3769191{margin-bottom:var(--reactist-spacing-small)}._156410f8{margin-bottom:var(--reactist-spacing-medium)}._7fed74d0{margin-bottom:var(--reactist-spacing-large)}._477dc10e{margin-bottom:var(--reactist-spacing-xlarge)}._85c82d89{margin-bottom:var(--reactist-spacing-xxlarge)}._4f09c1e0{margin-bottom:calc(var(--reactist-spacing-xsmall)*-1)}._9523e048{margin-bottom:calc(var(--reactist-spacing-small)*-1)}.efe10240{margin-bottom:calc(var(--reactist-spacing-medium)*-1)}.c43971e6{margin-bottom:calc(var(--reactist-spacing-large)*-1)}.f9b4da15{margin-bottom:calc(var(--reactist-spacing-xlarge)*-1)}.a10fdf70{margin-bottom:calc(var(--reactist-spacing-xxlarge)*-1)}}.f9be90b4{margin-left:var(--reactist-spacing-xsmall)}.f53218d5{margin-left:var(--reactist-spacing-small)}.c4a9b3ab{margin-left:var(--reactist-spacing-medium)}._5755e2c3{margin-left:var(--reactist-spacing-large)}._33fc9354{margin-left:var(--reactist-spacing-xlarge)}._4749a3bf{margin-left:var(--reactist-spacing-xxlarge)}.c76cb3c7{margin-left:calc(var(--reactist-spacing-xsmall)*-1)}._96003c07{margin-left:calc(var(--reactist-spacing-small)*-1)}._09988d07{margin-left:calc(var(--reactist-spacing-medium)*-1)}.b4a486f6{margin-left:calc(var(--reactist-spacing-large)*-1)}.f396e75e{margin-left:calc(var(--reactist-spacing-xlarge)*-1)}._81d1f26d{margin-left:calc(var(--reactist-spacing-xxlarge)*-1)}@media (min-width:768px){._0a46e8f1{margin-left:var(--reactist-spacing-xsmall)}._57c970af{margin-left:var(--reactist-spacing-small)}._4b6099d3{margin-left:var(--reactist-spacing-medium)}._378fcff5{margin-left:var(--reactist-spacing-large)}.f8785663{margin-left:var(--reactist-spacing-xlarge)}._72f957ee{margin-left:var(--reactist-spacing-xxlarge)}._2288c7e1{margin-left:calc(var(--reactist-spacing-xsmall)*-1)}.b27c1c05{margin-left:calc(var(--reactist-spacing-small)*-1)}._702cbb13{margin-left:calc(var(--reactist-spacing-medium)*-1)}._1a2748b4{margin-left:calc(var(--reactist-spacing-large)*-1)}.b8c043a5{margin-left:calc(var(--reactist-spacing-xlarge)*-1)}._8dc8ff63{margin-left:calc(var(--reactist-spacing-xxlarge)*-1)}}@media (min-width:992px){.c2af646d{margin-left:var(--reactist-spacing-xsmall)}.c03d07be{margin-left:var(--reactist-spacing-small)}._915fb1d3{margin-left:var(--reactist-spacing-medium)}._64214ee1{margin-left:var(--reactist-spacing-large)}._7be4a22c{margin-left:var(--reactist-spacing-xlarge)}._5ec0a401{margin-left:var(--reactist-spacing-xxlarge)}.ea29f1ee{margin-left:calc(var(--reactist-spacing-xsmall)*-1)}.c26652c7{margin-left:calc(var(--reactist-spacing-small)*-1)}.c24f6af9{margin-left:calc(var(--reactist-spacing-medium)*-1)}.c2671f27{margin-left:calc(var(--reactist-spacing-large)*-1)}.cc51a04e{margin-left:calc(var(--reactist-spacing-xlarge)*-1)}.fd581f54{margin-left:calc(var(--reactist-spacing-xxlarge)*-1)}}
8
+ .dd9ffeab{border-radius:var(--reactist-border-radius-small);border:1px solid var(--reactist-divider-secondary);overflow:clip}.dd9ffeab:focus-within{border-color:var(--reactist-divider-primary)}.dd9ffeab input{color:var(--reactist-content-primary);flex:1;outline:none;box-sizing:border-box;width:100%;background:transparent;border:none;--tmp-desired-height:30px;--tmp-line-height-increase:4px;--tmp-vertical-padding:calc((var(--tmp-desired-height) - var(--reactist-font-size-body) - var(--tmp-line-height-increase))/2);font-size:var(--reactist-font-size-body);line-height:calc(var(--reactist-font-size-body) + 4px);padding:var(--tmp-vertical-padding) 10px;margin:0}
@@ -1 +1 @@
1
- ._509cf6b5{border-radius:var(--reactist-border-radius-small);border:1px solid var(--reactist-framework-border);overflow:clip}._509cf6b5:focus-within{border-color:var(--reactist-framework-border-focus)}._509cf6b5 input{color:var(--reactist-content-primary);flex:1;outline:none;box-sizing:border-box;width:100%;background:transparent;border:none;--tmp-desired-height:30px;--tmp-line-height-increase:4px;--tmp-vertical-padding:calc((var(--tmp-desired-height) - var(--reactist-font-size-normal) - var(--tmp-line-height-increase))/2);font-size:var(--reactist-font-size-normal);line-height:calc(var(--reactist-font-size-normal) + 4px);padding:var(--tmp-vertical-padding) 10px;margin:0}
1
+ .dd9ffeab{border-radius:var(--reactist-border-radius-small);border:1px solid var(--reactist-divider-secondary);overflow:clip}.dd9ffeab:focus-within{border-color:var(--reactist-divider-primary)}.dd9ffeab input{color:var(--reactist-content-primary);flex:1;outline:none;box-sizing:border-box;width:100%;background:transparent;border:none;--tmp-desired-height:30px;--tmp-line-height-increase:4px;--tmp-vertical-padding:calc((var(--tmp-desired-height) - var(--reactist-font-size-body) - var(--tmp-line-height-increase))/2);font-size:var(--reactist-font-size-body);line-height:calc(var(--reactist-font-size-body) + 4px);padding:var(--tmp-vertical-padding) 10px;margin:0}
@@ -1,2 +1,4 @@
1
- ._7c657f27{box-sizing:border-box;border:0;margin:0;padding:0;font-size:var(--reactist-font-size-normal);font-family:inherit;vertical-align:baseline;background-color:transparent}._24f0305b{position:absolute}.f22516c3{position:fixed}.dd3031f0{position:relative}.c55e1376{position:-webkit-sticky;position:sticky}@media (min-width:768px){.c01b4973{position:absolute}.fe61c08e{position:fixed}._42cf42ae{position:relative}._1cd29585{position:-webkit-sticky;position:sticky}}@media (min-width:992px){._3bf17b40{position:absolute}._3c190375{position:fixed}._21549264{position:relative}.b3301c9a{position:-webkit-sticky;position:sticky}}.d0eafb3e{display:block}._29841fc9{display:flex}.be8e98ca{display:inline}._009244ff{display:inline-block}._366b4e11{display:inline-flex}._685beb97{display:none}@media (min-width:768px){.ae57c505{display:block}.e79407a2{display:flex}._4b3944fb{display:inline}._04228de9{display:inline-block}._29bbb522{display:inline-flex}._2d2052e6{display:none}}@media (min-width:992px){.b1ba4d16{display:block}.cb21a300{display:flex}._9b2d213a{display:inline}.c6b19ae4{display:inline-block}.e2d9e9ae{display:inline-flex}._69d56326{display:none}}.f87e83dc{min-width:0}._2ca630ec{min-width:220px}._7a1a60f1{min-width:400px}.c0a2d8db{min-width:660px}._95c19faa{max-width:940px}._4ab999ca{min-width:1280px}._1ca5dbf5{max-width:220px}.c3ff7c04{max-width:400px}._74540095{max-width:660px}._811b6141{max-width:940px}._52023176{max-width:1280px}._7ce9375b{flex-direction:column}._953fabba{flex-direction:row}@media (min-width:768px){.bfc2801e{flex-direction:column}._65c778a0{flex-direction:row}}@media (min-width:992px){._23be346b{flex-direction:column}._986465f5{flex-direction:row}}._2c4c621c{flex-wrap:wrap}.c3633c19{flex-wrap:nowrap}.b477fff2{flex-shrink:0}.b1b675a2{flex-grow:0}._8e345e7d{flex-grow:1}._9e819789{align-items:flex-start}._3ae82bc9{align-items:center}._00f518cd{align-items:flex-end}@media (min-width:768px){.ef284703{align-items:flex-start}.c0033f6b{align-items:center}._23222959{align-items:flex-end}}@media (min-width:992px){.f5ff68ae{align-items:flex-start}.eaa36a65{align-items:center}._2f176e1d{align-items:flex-end}}._4749a6dc{justify-content:flex-start}.c07ae3c5{justify-content:center}._92f94735{justify-content:flex-end}._654ccdee{justify-content:space-between}@media (min-width:768px){._1598cc97{justify-content:flex-start}.a70ab2a6{justify-content:center}._6a961a37{justify-content:flex-end}._0d9709e0{justify-content:space-between}}@media (min-width:992px){._9f212924{justify-content:flex-start}.c6fbe3ef{justify-content:center}.cdb44e6c{justify-content:flex-end}._70f074d7{justify-content:space-between}}._01b1b3d3{overflow:hidden}.f99741e1{overflow:auto}._3f62d2f4{overflow:visible}._58821030{overflow:scroll}._5ff2e0fb{width:100%}.b43d8faa{height:100%}._43d03f23{padding-top:var(--reactist-spacing-xsmall)}.c82a83d3{padding-top:var(--reactist-spacing-small)}._05b7d9e9{padding-top:var(--reactist-spacing-medium)}._221cd893{padding-top:var(--reactist-spacing-large)}.a303d58a{padding-top:var(--reactist-spacing-xlarge)}._543c0127{padding-top:var(--reactist-spacing-xxlarge)}@media (min-width:768px){.a2e0fd3e{padding-top:var(--reactist-spacing-xsmall)}._0bde39f9{padding-top:var(--reactist-spacing-small)}._5f4af3c6{padding-top:var(--reactist-spacing-medium)}.fa89daaa{padding-top:var(--reactist-spacing-large)}._5f9a63f3{padding-top:var(--reactist-spacing-xlarge)}.c45f5234{padding-top:var(--reactist-spacing-xxlarge)}}@media (min-width:992px){._9cf8b441{padding-top:var(--reactist-spacing-xsmall)}._2813d05c{padding-top:var(--reactist-spacing-small)}._8703333a{padding-top:var(--reactist-spacing-medium)}._13793865{padding-top:var(--reactist-spacing-large)}._240da042{padding-top:var(--reactist-spacing-xlarge)}.c9c7fbc2{padding-top:var(--reactist-spacing-xxlarge)}}.d495bb28{padding-right:var(--reactist-spacing-xsmall)}._042ac90b{padding-right:var(--reactist-spacing-small)}._1b11d4ca{padding-right:var(--reactist-spacing-medium)}.bf68852a{padding-right:var(--reactist-spacing-large)}._4e4767c7{padding-right:var(--reactist-spacing-xlarge)}.bfa73acf{padding-right:var(--reactist-spacing-xxlarge)}@media (min-width:768px){.d6462717{padding-right:var(--reactist-spacing-xsmall)}.f797ebe8{padding-right:var(--reactist-spacing-small)}._44ba8f12{padding-right:var(--reactist-spacing-medium)}._40c5576f{padding-right:var(--reactist-spacing-large)}.e7ee4168{padding-right:var(--reactist-spacing-xlarge)}._860d8fbf{padding-right:var(--reactist-spacing-xxlarge)}}@media (min-width:992px){.c97156fd{padding-right:var(--reactist-spacing-xsmall)}.c9953041{padding-right:var(--reactist-spacing-small)}._37914764{padding-right:var(--reactist-spacing-medium)}._1ca8c885{padding-right:var(--reactist-spacing-large)}._75d49cdb{padding-right:var(--reactist-spacing-xlarge)}.d32fa11d{padding-right:var(--reactist-spacing-xxlarge)}}.bc3ad5d0{padding-bottom:var(--reactist-spacing-xsmall)}._46557bc6{padding-bottom:var(--reactist-spacing-small)}.b923b5a7{padding-bottom:var(--reactist-spacing-medium)}._21795b21{padding-bottom:var(--reactist-spacing-large)}._1843b8d5{padding-bottom:var(--reactist-spacing-xlarge)}.aa17bf37{padding-bottom:var(--reactist-spacing-xxlarge)}@media (min-width:768px){.a28f6624{padding-bottom:var(--reactist-spacing-xsmall)}._7da0f299{padding-bottom:var(--reactist-spacing-small)}._50149ce3{padding-bottom:var(--reactist-spacing-medium)}.a6ab60e2{padding-bottom:var(--reactist-spacing-large)}.ce605666{padding-bottom:var(--reactist-spacing-xlarge)}.b956675e{padding-bottom:var(--reactist-spacing-xxlarge)}}@media (min-width:992px){.d5326ae6{padding-bottom:var(--reactist-spacing-xsmall)}._6803052d{padding-bottom:var(--reactist-spacing-small)}._69a10a83{padding-bottom:var(--reactist-spacing-medium)}._5a8a9ae8{padding-bottom:var(--reactist-spacing-large)}._8b25ea98{padding-bottom:var(--reactist-spacing-xlarge)}.dfd70349{padding-bottom:var(--reactist-spacing-xxlarge)}}._805ae294{padding-left:var(--reactist-spacing-xsmall)}.df5b5dfd{padding-left:var(--reactist-spacing-small)}.eadadb70{padding-left:var(--reactist-spacing-medium)}._96f7a1d7{padding-left:var(--reactist-spacing-large)}.bcc8a161{padding-left:var(--reactist-spacing-xlarge)}._3f7a75c6{padding-left:var(--reactist-spacing-xxlarge)}@media (min-width:768px){._98624fbc{padding-left:var(--reactist-spacing-xsmall)}.b27f1381{padding-left:var(--reactist-spacing-small)}._21610d64{padding-left:var(--reactist-spacing-medium)}.fa50a773{padding-left:var(--reactist-spacing-large)}.b89f0a01{padding-left:var(--reactist-spacing-xlarge)}.e9b75114{padding-left:var(--reactist-spacing-xxlarge)}}@media (min-width:992px){._1d2763bd{padding-left:var(--reactist-spacing-xsmall)}._2b159c75{padding-left:var(--reactist-spacing-small)}._91d5fe19{padding-left:var(--reactist-spacing-medium)}._1818546c{padding-left:var(--reactist-spacing-large)}.fe23556f{padding-left:var(--reactist-spacing-xlarge)}.b69c0660{padding-left:var(--reactist-spacing-xxlarge)}}._191675e3{background-color:var(--reactist-bg-default)}.c9237bd2{background-color:var(--reactist-bg-aside)}.c6d1677f{background-color:var(--reactist-bg-highlight)}.e4c307c8{background-color:var(--reactist-bg-selected)}.d96494dc{border-radius:var(--reactist-border-radius-small)}.e4c4cad8{border-radius:var(--reactist-border-radius-large)}.ba98367a{border:1px solid var(--reactist-framework-border)}
1
+ ._26c5201d{box-sizing:border-box;border:0;margin:0;padding:0;font-size:var(--reactist-font-size-body);font-family:inherit;vertical-align:baseline;background-color:transparent;list-style:none}pre._26c5201d{font-family:monospace}._26c5201d[hidden]{display:none!important}._77c3d8d1{position:absolute}._37cb98fb{position:fixed}.df16028f{position:relative}._4205abac{position:-webkit-sticky;position:sticky}@media (min-width:768px){.d6993b5e{position:absolute}.a015e0f5{position:fixed}._236dd3b1{position:relative}.b7ac4837{position:-webkit-sticky;position:sticky}}@media (min-width:992px){.fd93a726{position:absolute}._49228edc{position:fixed}.d972b518{position:relative}.b2a2baf3{position:-webkit-sticky;position:sticky}}._22f1edd1{display:block}.c23d2d6f{display:flex}._5359896d{display:inline}.a54a41a6{display:inline-block}.d02f3d43{display:inline-flex}._760c0710{display:none}@media (min-width:768px){._64e2ebe6{display:block}._25274f78{display:flex}._2077d063{display:inline}.aaed581f{display:inline-block}._1d4a6eb5{display:inline-flex}._66f24c78{display:none}}@media (min-width:992px){._145cca89{display:block}._1861c899{display:flex}._96a720c8{display:inline}._56acf5d5{display:inline-block}._2a268e4b{display:inline-flex}.b4f30b9e{display:none}}._0b071847{min-width:0}._8b67f007{min-width:220px}.e3ec3474{min-width:400px}._5cccd4fc{min-width:660px}._06eeac65{max-width:940px}.ee1b6344{min-width:1280px}._2df097d0{max-width:220px}.b771df2a{max-width:400px}._00ad4e35{max-width:660px}._4a848dab{max-width:940px}.bf216b15{max-width:1280px}.a60a7855{max-width:100%}._4cf1b6c9{flex-direction:column}.e056fa5a{flex-direction:row}@media (min-width:768px){.b9aa8d99{flex-direction:column}._2e8b3442{flex-direction:row}}@media (min-width:992px){._2162c612{flex-direction:column}._279bf1e4{flex-direction:row}}._346d3a71{flex-wrap:wrap}._786fd122{flex-wrap:nowrap}._4b864fc2{flex-shrink:0}._795f552f{flex-grow:0}.a68bcd0f{flex-grow:1}._34e24973{align-items:flex-start}._648380f4{align-items:center}._18b4e1d6{align-items:flex-end}._805c1b65{align-items:baseline}@media (min-width:768px){.fd4006c2{align-items:flex-start}.c3ba10a7{align-items:center}._984cd304{align-items:flex-end}._696cc167{align-items:baseline}}@media (min-width:992px){._74133d54{align-items:flex-start}._92ab46df{align-items:center}._177026d9{align-items:flex-end}.ebd2f31f{align-items:baseline}}._4969235b{justify-content:flex-start}._9594db58{justify-content:center}._6789fdd3{justify-content:flex-end}.b9902d94{justify-content:space-around}._3c3ae41b{justify-content:space-between}._8dce8767{justify-content:space-evenly}@media (min-width:768px){._6bd82354{justify-content:flex-start}._3044c29a{justify-content:center}._13da8745{justify-content:flex-end}._981fa9c8{justify-content:space-around}.d34811a6{justify-content:space-between}._53e07124{justify-content:space-evenly}}@media (min-width:992px){.e709f277{justify-content:flex-start}.abc87cc4{justify-content:center}.ce410292{justify-content:flex-end}._981fa9c8{justify-content:space-around}._5ab1bc04{justify-content:space-between}._53e07124{justify-content:space-evenly}}._11a684c0{overflow:hidden}._2c024f85{overflow:auto}._4d4892bd{overflow:visible}._22ffbb40{overflow:scroll}._330d9b0b{width:100%}.fb8deb05{height:100%}._133f5c00{background-color:var(--reactist-bg-default)}.b2be7ffe{background-color:var(--reactist-bg-aside)}.a45e67ff{background-color:var(--reactist-bg-highlight)}.b90226b5{background-color:var(--reactist-bg-selected)}._6e988219{border-radius:var(--reactist-border-radius-small)}._14cf204e{border-radius:var(--reactist-border-radius-large)}.a710cfdd{border:1px solid var(--reactist-divider-primary)}._52263feb{border:1px solid var(--reactist-divider-secondary)}._546ec3ef{border:1px solid var(--reactist-divider-tertiary)}._7fa90cb9{text-align:start}._54c80396{text-align:center}.e4b1ea49{text-align:end}._0eecd510{text-align:justify}@media (min-width:768px){.a309e75d{text-align:start}._67fb1a07{text-align:center}._0fa851ec{text-align:end}._585a0e34{text-align:justify}}@media (min-width:992px){._5f909690{text-align:start}._13e03993{text-align:center}.f142a1cb{text-align:end}._2bba79a9{text-align:justify}}
2
+ .c4803194{padding-top:var(--reactist-spacing-xsmall)}._4e9ab24b{padding-top:var(--reactist-spacing-small)}._1d226e27{padding-top:var(--reactist-spacing-medium)}.eb6097f1{padding-top:var(--reactist-spacing-large)}.d3229ba4{padding-top:var(--reactist-spacing-xlarge)}._47978ba4{padding-top:var(--reactist-spacing-xxlarge)}@media (min-width:768px){.f987719c{padding-top:var(--reactist-spacing-xsmall)}._8dbc4b4d{padding-top:var(--reactist-spacing-small)}.ae44fe07{padding-top:var(--reactist-spacing-medium)}.ffe9548d{padding-top:var(--reactist-spacing-large)}.f2b76a44{padding-top:var(--reactist-spacing-xlarge)}.c6eb8f43{padding-top:var(--reactist-spacing-xxlarge)}}@media (min-width:992px){._8699b560{padding-top:var(--reactist-spacing-xsmall)}._02c374b7{padding-top:var(--reactist-spacing-small)}._0dd0332f{padding-top:var(--reactist-spacing-medium)}.da55f1f6{padding-top:var(--reactist-spacing-large)}._8ef2a278{padding-top:var(--reactist-spacing-xlarge)}._8b493b28{padding-top:var(--reactist-spacing-xxlarge)}}._211eebc7{padding-right:var(--reactist-spacing-xsmall)}.ad0ccf15{padding-right:var(--reactist-spacing-small)}.a03e39af{padding-right:var(--reactist-spacing-medium)}.f0941ead{padding-right:var(--reactist-spacing-large)}.e47c5a43{padding-right:var(--reactist-spacing-xlarge)}.e849a5cf{padding-right:var(--reactist-spacing-xxlarge)}@media (min-width:768px){._85374228{padding-right:var(--reactist-spacing-xsmall)}._89df37b9{padding-right:var(--reactist-spacing-small)}._1cc50ebe{padding-right:var(--reactist-spacing-medium)}._1060982b{padding-right:var(--reactist-spacing-large)}.be58847d{padding-right:var(--reactist-spacing-xlarge)}._45093484{padding-right:var(--reactist-spacing-xxlarge)}}@media (min-width:992px){.f8d99d6a{padding-right:var(--reactist-spacing-xsmall)}.efa076d9{padding-right:var(--reactist-spacing-small)}.e59caa64{padding-right:var(--reactist-spacing-medium)}.da42f46a{padding-right:var(--reactist-spacing-large)}.b3ee2580{padding-right:var(--reactist-spacing-xlarge)}._3ef94658{padding-right:var(--reactist-spacing-xxlarge)}}.b0e6eab4{padding-bottom:var(--reactist-spacing-xsmall)}._9510d053{padding-bottom:var(--reactist-spacing-small)}.d7af60c9{padding-bottom:var(--reactist-spacing-medium)}.b75f86cd{padding-bottom:var(--reactist-spacing-large)}.fbd4ce29{padding-bottom:var(--reactist-spacing-xlarge)}._33e3ad63{padding-bottom:var(--reactist-spacing-xxlarge)}@media (min-width:768px){.f0302da7{padding-bottom:var(--reactist-spacing-xsmall)}._4f9b8012{padding-bottom:var(--reactist-spacing-small)}._4333e20e{padding-bottom:var(--reactist-spacing-medium)}._30bbc76c{padding-bottom:var(--reactist-spacing-large)}.ba5a4008{padding-bottom:var(--reactist-spacing-xlarge)}._423a3b1a{padding-bottom:var(--reactist-spacing-xxlarge)}}@media (min-width:992px){.b40139b7{padding-bottom:var(--reactist-spacing-xsmall)}.f96071fa{padding-bottom:var(--reactist-spacing-small)}.fe803c9a{padding-bottom:var(--reactist-spacing-medium)}._01686eb9{padding-bottom:var(--reactist-spacing-large)}.afa763d8{padding-bottom:var(--reactist-spacing-xlarge)}.a95785f1{padding-bottom:var(--reactist-spacing-xxlarge)}}.cad4e2ec{padding-left:var(--reactist-spacing-xsmall)}.d70b3c17{padding-left:var(--reactist-spacing-small)}._8c851bd6{padding-left:var(--reactist-spacing-medium)}._078feb3c{padding-left:var(--reactist-spacing-large)}._76ab968c{padding-left:var(--reactist-spacing-xlarge)}.aaca85d7{padding-left:var(--reactist-spacing-xxlarge)}@media (min-width:768px){._5eb0e5aa{padding-left:var(--reactist-spacing-xsmall)}._0384fb4f{padding-left:var(--reactist-spacing-small)}.edffff6f{padding-left:var(--reactist-spacing-medium)}._873b9a46{padding-left:var(--reactist-spacing-large)}._89105db5{padding-left:var(--reactist-spacing-xlarge)}.db1966fe{padding-left:var(--reactist-spacing-xxlarge)}}@media (min-width:992px){.b17f826b{padding-left:var(--reactist-spacing-xsmall)}._6dc83610{padding-left:var(--reactist-spacing-small)}._3421b8b2{padding-left:var(--reactist-spacing-medium)}._68cec7a6{padding-left:var(--reactist-spacing-large)}._94bde020{padding-left:var(--reactist-spacing-xlarge)}.b94ee579{padding-left:var(--reactist-spacing-xxlarge)}}
3
+ .c7813d79{margin-top:var(--reactist-spacing-xsmall)}.d3449da6{margin-top:var(--reactist-spacing-small)}._4ea254c1{margin-top:var(--reactist-spacing-medium)}.c0844f64{margin-top:var(--reactist-spacing-large)}._213145b4{margin-top:var(--reactist-spacing-xlarge)}.df61c84c{margin-top:var(--reactist-spacing-xxlarge)}.efe72b13{margin-top:calc(var(--reactist-spacing-xsmall)*-1)}._870c2768{margin-top:calc(var(--reactist-spacing-small)*-1)}._0b927c57{margin-top:calc(var(--reactist-spacing-medium)*-1)}._461db014{margin-top:calc(var(--reactist-spacing-large)*-1)}._2a3a8cb8{margin-top:calc(var(--reactist-spacing-xlarge)*-1)}._9bcda921{margin-top:calc(var(--reactist-spacing-xxlarge)*-1)}@media (min-width:768px){._6add01e4{margin-top:var(--reactist-spacing-xsmall)}._735ef86b{margin-top:var(--reactist-spacing-small)}._0477d068{margin-top:var(--reactist-spacing-medium)}._2c90af97{margin-top:var(--reactist-spacing-large)}._63a82db6{margin-top:var(--reactist-spacing-xlarge)}._03cd7726{margin-top:var(--reactist-spacing-xxlarge)}.c986a62a{margin-top:calc(var(--reactist-spacing-xsmall)*-1)}.be2bdcdd{margin-top:calc(var(--reactist-spacing-small)*-1)}._47d2686b{margin-top:calc(var(--reactist-spacing-medium)*-1)}._25e5af9d{margin-top:calc(var(--reactist-spacing-large)*-1)}.ee82f441{margin-top:calc(var(--reactist-spacing-xlarge)*-1)}.a6f9d404{margin-top:calc(var(--reactist-spacing-xxlarge)*-1)}}@media (min-width:992px){._4d8d9a36{margin-top:var(--reactist-spacing-xsmall)}.e813cee7{margin-top:var(--reactist-spacing-small)}._56975b7d{margin-top:var(--reactist-spacing-medium)}._53b367f6{margin-top:var(--reactist-spacing-large)}.d69e7311{margin-top:var(--reactist-spacing-xlarge)}._92f57c7e{margin-top:var(--reactist-spacing-xxlarge)}._96880d3e{margin-top:calc(var(--reactist-spacing-xsmall)*-1)}.dc3f3555{margin-top:calc(var(--reactist-spacing-small)*-1)}._86dd06bb{margin-top:calc(var(--reactist-spacing-medium)*-1)}.c93ef12e{margin-top:calc(var(--reactist-spacing-large)*-1)}.bc8fd4a2{margin-top:calc(var(--reactist-spacing-xlarge)*-1)}.b12a9124{margin-top:calc(var(--reactist-spacing-xxlarge)*-1)}}._6016f4fb{margin-right:var(--reactist-spacing-xsmall)}.b85e3dfa{margin-right:var(--reactist-spacing-small)}._297575f4{margin-right:var(--reactist-spacing-medium)}.b401ac6c{margin-right:var(--reactist-spacing-large)}.dc3ec387{margin-right:var(--reactist-spacing-xlarge)}._24694604{margin-right:var(--reactist-spacing-xxlarge)}._8e9bf2ee{margin-right:calc(var(--reactist-spacing-xsmall)*-1)}.ae9d1115{margin-right:calc(var(--reactist-spacing-small)*-1)}._14e46fc3{margin-right:calc(var(--reactist-spacing-medium)*-1)}._3370631b{margin-right:calc(var(--reactist-spacing-large)*-1)}._3f0e9b50{margin-right:calc(var(--reactist-spacing-xlarge)*-1)}.bc13e010{margin-right:calc(var(--reactist-spacing-xxlarge)*-1)}@media (min-width:768px){._6fa1aae3{margin-right:var(--reactist-spacing-xsmall)}._2976c5cb{margin-right:var(--reactist-spacing-small)}._38d94802{margin-right:var(--reactist-spacing-medium)}.db9569b5{margin-right:var(--reactist-spacing-large)}._4a52f06d{margin-right:var(--reactist-spacing-xlarge)}._8a0f0410{margin-right:var(--reactist-spacing-xxlarge)}.e7d40e9d{margin-right:calc(var(--reactist-spacing-xsmall)*-1)}._680fde91{margin-right:calc(var(--reactist-spacing-small)*-1)}._021010ca{margin-right:calc(var(--reactist-spacing-medium)*-1)}._9e52c87c{margin-right:calc(var(--reactist-spacing-large)*-1)}._4d602613{margin-right:calc(var(--reactist-spacing-xlarge)*-1)}._21b1b65a{margin-right:calc(var(--reactist-spacing-xxlarge)*-1)}}@media (min-width:992px){._7321bc07{margin-right:var(--reactist-spacing-xsmall)}.fa1721f4{margin-right:var(--reactist-spacing-small)}._3fd7b4b8{margin-right:var(--reactist-spacing-medium)}._4fdc2f74{margin-right:var(--reactist-spacing-large)}.c0254761{margin-right:var(--reactist-spacing-xlarge)}._710a5f09{margin-right:var(--reactist-spacing-xxlarge)}.e08bee7f{margin-right:calc(var(--reactist-spacing-xsmall)*-1)}.e5ab73d2{margin-right:calc(var(--reactist-spacing-small)*-1)}._5e731477{margin-right:calc(var(--reactist-spacing-medium)*-1)}._0f57a22e{margin-right:calc(var(--reactist-spacing-large)*-1)}._25f26ed3{margin-right:calc(var(--reactist-spacing-xlarge)*-1)}._11a3b4e0{margin-right:calc(var(--reactist-spacing-xxlarge)*-1)}}._6a4f69f7{margin-bottom:var(--reactist-spacing-xsmall)}.db26b033{margin-bottom:var(--reactist-spacing-small)}.c7313022{margin-bottom:var(--reactist-spacing-medium)}.a5885889{margin-bottom:var(--reactist-spacing-large)}._33dfbd8e{margin-bottom:var(--reactist-spacing-xlarge)}._795ad2de{margin-bottom:var(--reactist-spacing-xxlarge)}.a329dbd3{margin-bottom:calc(var(--reactist-spacing-xsmall)*-1)}._85e739fb{margin-bottom:calc(var(--reactist-spacing-small)*-1)}._681f65ff{margin-bottom:calc(var(--reactist-spacing-medium)*-1)}.caf50d8f{margin-bottom:calc(var(--reactist-spacing-large)*-1)}._1e084cbf{margin-bottom:calc(var(--reactist-spacing-xlarge)*-1)}._3dfb1c7e{margin-bottom:calc(var(--reactist-spacing-xxlarge)*-1)}@media (min-width:768px){.ef4735be{margin-bottom:var(--reactist-spacing-xsmall)}.de55afba{margin-bottom:var(--reactist-spacing-small)}._0e33ce88{margin-bottom:var(--reactist-spacing-medium)}._8ca391fc{margin-bottom:var(--reactist-spacing-large)}._3a609d23{margin-bottom:var(--reactist-spacing-xlarge)}._3e1177e4{margin-bottom:var(--reactist-spacing-xxlarge)}.d384884d{margin-bottom:calc(var(--reactist-spacing-xsmall)*-1)}._75254cec{margin-bottom:calc(var(--reactist-spacing-small)*-1)}._5d9f127d{margin-bottom:calc(var(--reactist-spacing-medium)*-1)}._835f1089{margin-bottom:calc(var(--reactist-spacing-large)*-1)}.dad52a72{margin-bottom:calc(var(--reactist-spacing-xlarge)*-1)}._8703a4bf{margin-bottom:calc(var(--reactist-spacing-xxlarge)*-1)}}@media (min-width:992px){._90fd20e9{margin-bottom:var(--reactist-spacing-xsmall)}.f3769191{margin-bottom:var(--reactist-spacing-small)}._156410f8{margin-bottom:var(--reactist-spacing-medium)}._7fed74d0{margin-bottom:var(--reactist-spacing-large)}._477dc10e{margin-bottom:var(--reactist-spacing-xlarge)}._85c82d89{margin-bottom:var(--reactist-spacing-xxlarge)}._4f09c1e0{margin-bottom:calc(var(--reactist-spacing-xsmall)*-1)}._9523e048{margin-bottom:calc(var(--reactist-spacing-small)*-1)}.efe10240{margin-bottom:calc(var(--reactist-spacing-medium)*-1)}.c43971e6{margin-bottom:calc(var(--reactist-spacing-large)*-1)}.f9b4da15{margin-bottom:calc(var(--reactist-spacing-xlarge)*-1)}.a10fdf70{margin-bottom:calc(var(--reactist-spacing-xxlarge)*-1)}}.f9be90b4{margin-left:var(--reactist-spacing-xsmall)}.f53218d5{margin-left:var(--reactist-spacing-small)}.c4a9b3ab{margin-left:var(--reactist-spacing-medium)}._5755e2c3{margin-left:var(--reactist-spacing-large)}._33fc9354{margin-left:var(--reactist-spacing-xlarge)}._4749a3bf{margin-left:var(--reactist-spacing-xxlarge)}.c76cb3c7{margin-left:calc(var(--reactist-spacing-xsmall)*-1)}._96003c07{margin-left:calc(var(--reactist-spacing-small)*-1)}._09988d07{margin-left:calc(var(--reactist-spacing-medium)*-1)}.b4a486f6{margin-left:calc(var(--reactist-spacing-large)*-1)}.f396e75e{margin-left:calc(var(--reactist-spacing-xlarge)*-1)}._81d1f26d{margin-left:calc(var(--reactist-spacing-xxlarge)*-1)}@media (min-width:768px){._0a46e8f1{margin-left:var(--reactist-spacing-xsmall)}._57c970af{margin-left:var(--reactist-spacing-small)}._4b6099d3{margin-left:var(--reactist-spacing-medium)}._378fcff5{margin-left:var(--reactist-spacing-large)}.f8785663{margin-left:var(--reactist-spacing-xlarge)}._72f957ee{margin-left:var(--reactist-spacing-xxlarge)}._2288c7e1{margin-left:calc(var(--reactist-spacing-xsmall)*-1)}.b27c1c05{margin-left:calc(var(--reactist-spacing-small)*-1)}._702cbb13{margin-left:calc(var(--reactist-spacing-medium)*-1)}._1a2748b4{margin-left:calc(var(--reactist-spacing-large)*-1)}.b8c043a5{margin-left:calc(var(--reactist-spacing-xlarge)*-1)}._8dc8ff63{margin-left:calc(var(--reactist-spacing-xxlarge)*-1)}}@media (min-width:992px){.c2af646d{margin-left:var(--reactist-spacing-xsmall)}.c03d07be{margin-left:var(--reactist-spacing-small)}._915fb1d3{margin-left:var(--reactist-spacing-medium)}._64214ee1{margin-left:var(--reactist-spacing-large)}._7be4a22c{margin-left:var(--reactist-spacing-xlarge)}._5ec0a401{margin-left:var(--reactist-spacing-xxlarge)}.ea29f1ee{margin-left:calc(var(--reactist-spacing-xsmall)*-1)}.c26652c7{margin-left:calc(var(--reactist-spacing-small)*-1)}.c24f6af9{margin-left:calc(var(--reactist-spacing-medium)*-1)}.c2671f27{margin-left:calc(var(--reactist-spacing-large)*-1)}.cc51a04e{margin-left:calc(var(--reactist-spacing-xlarge)*-1)}.fd581f54{margin-left:calc(var(--reactist-spacing-xxlarge)*-1)}}
2
4
  ._12eda218{font-size:inherit;font-weight:inherit;font-family:inherit;text-decoration:none;color:var(--reactist-chromatic-content-blue);cursor:pointer}._12eda218:hover{text-decoration:underline}._12eda218 svg{display:inline-block;width:1em;height:1em;font-size:inherit;color:inherit;vertical-align:-.125em;fill:currentColor;padding:0 6px}
package/styles/text.css CHANGED
@@ -1,2 +1,4 @@
1
- ._7c657f27{box-sizing:border-box;border:0;margin:0;padding:0;font-size:var(--reactist-font-size-normal);font-family:inherit;vertical-align:baseline;background-color:transparent}._24f0305b{position:absolute}.f22516c3{position:fixed}.dd3031f0{position:relative}.c55e1376{position:-webkit-sticky;position:sticky}@media (min-width:768px){.c01b4973{position:absolute}.fe61c08e{position:fixed}._42cf42ae{position:relative}._1cd29585{position:-webkit-sticky;position:sticky}}@media (min-width:992px){._3bf17b40{position:absolute}._3c190375{position:fixed}._21549264{position:relative}.b3301c9a{position:-webkit-sticky;position:sticky}}.d0eafb3e{display:block}._29841fc9{display:flex}.be8e98ca{display:inline}._009244ff{display:inline-block}._366b4e11{display:inline-flex}._685beb97{display:none}@media (min-width:768px){.ae57c505{display:block}.e79407a2{display:flex}._4b3944fb{display:inline}._04228de9{display:inline-block}._29bbb522{display:inline-flex}._2d2052e6{display:none}}@media (min-width:992px){.b1ba4d16{display:block}.cb21a300{display:flex}._9b2d213a{display:inline}.c6b19ae4{display:inline-block}.e2d9e9ae{display:inline-flex}._69d56326{display:none}}.f87e83dc{min-width:0}._2ca630ec{min-width:220px}._7a1a60f1{min-width:400px}.c0a2d8db{min-width:660px}._95c19faa{max-width:940px}._4ab999ca{min-width:1280px}._1ca5dbf5{max-width:220px}.c3ff7c04{max-width:400px}._74540095{max-width:660px}._811b6141{max-width:940px}._52023176{max-width:1280px}._7ce9375b{flex-direction:column}._953fabba{flex-direction:row}@media (min-width:768px){.bfc2801e{flex-direction:column}._65c778a0{flex-direction:row}}@media (min-width:992px){._23be346b{flex-direction:column}._986465f5{flex-direction:row}}._2c4c621c{flex-wrap:wrap}.c3633c19{flex-wrap:nowrap}.b477fff2{flex-shrink:0}.b1b675a2{flex-grow:0}._8e345e7d{flex-grow:1}._9e819789{align-items:flex-start}._3ae82bc9{align-items:center}._00f518cd{align-items:flex-end}@media (min-width:768px){.ef284703{align-items:flex-start}.c0033f6b{align-items:center}._23222959{align-items:flex-end}}@media (min-width:992px){.f5ff68ae{align-items:flex-start}.eaa36a65{align-items:center}._2f176e1d{align-items:flex-end}}._4749a6dc{justify-content:flex-start}.c07ae3c5{justify-content:center}._92f94735{justify-content:flex-end}._654ccdee{justify-content:space-between}@media (min-width:768px){._1598cc97{justify-content:flex-start}.a70ab2a6{justify-content:center}._6a961a37{justify-content:flex-end}._0d9709e0{justify-content:space-between}}@media (min-width:992px){._9f212924{justify-content:flex-start}.c6fbe3ef{justify-content:center}.cdb44e6c{justify-content:flex-end}._70f074d7{justify-content:space-between}}._01b1b3d3{overflow:hidden}.f99741e1{overflow:auto}._3f62d2f4{overflow:visible}._58821030{overflow:scroll}._5ff2e0fb{width:100%}.b43d8faa{height:100%}._43d03f23{padding-top:var(--reactist-spacing-xsmall)}.c82a83d3{padding-top:var(--reactist-spacing-small)}._05b7d9e9{padding-top:var(--reactist-spacing-medium)}._221cd893{padding-top:var(--reactist-spacing-large)}.a303d58a{padding-top:var(--reactist-spacing-xlarge)}._543c0127{padding-top:var(--reactist-spacing-xxlarge)}@media (min-width:768px){.a2e0fd3e{padding-top:var(--reactist-spacing-xsmall)}._0bde39f9{padding-top:var(--reactist-spacing-small)}._5f4af3c6{padding-top:var(--reactist-spacing-medium)}.fa89daaa{padding-top:var(--reactist-spacing-large)}._5f9a63f3{padding-top:var(--reactist-spacing-xlarge)}.c45f5234{padding-top:var(--reactist-spacing-xxlarge)}}@media (min-width:992px){._9cf8b441{padding-top:var(--reactist-spacing-xsmall)}._2813d05c{padding-top:var(--reactist-spacing-small)}._8703333a{padding-top:var(--reactist-spacing-medium)}._13793865{padding-top:var(--reactist-spacing-large)}._240da042{padding-top:var(--reactist-spacing-xlarge)}.c9c7fbc2{padding-top:var(--reactist-spacing-xxlarge)}}.d495bb28{padding-right:var(--reactist-spacing-xsmall)}._042ac90b{padding-right:var(--reactist-spacing-small)}._1b11d4ca{padding-right:var(--reactist-spacing-medium)}.bf68852a{padding-right:var(--reactist-spacing-large)}._4e4767c7{padding-right:var(--reactist-spacing-xlarge)}.bfa73acf{padding-right:var(--reactist-spacing-xxlarge)}@media (min-width:768px){.d6462717{padding-right:var(--reactist-spacing-xsmall)}.f797ebe8{padding-right:var(--reactist-spacing-small)}._44ba8f12{padding-right:var(--reactist-spacing-medium)}._40c5576f{padding-right:var(--reactist-spacing-large)}.e7ee4168{padding-right:var(--reactist-spacing-xlarge)}._860d8fbf{padding-right:var(--reactist-spacing-xxlarge)}}@media (min-width:992px){.c97156fd{padding-right:var(--reactist-spacing-xsmall)}.c9953041{padding-right:var(--reactist-spacing-small)}._37914764{padding-right:var(--reactist-spacing-medium)}._1ca8c885{padding-right:var(--reactist-spacing-large)}._75d49cdb{padding-right:var(--reactist-spacing-xlarge)}.d32fa11d{padding-right:var(--reactist-spacing-xxlarge)}}.bc3ad5d0{padding-bottom:var(--reactist-spacing-xsmall)}._46557bc6{padding-bottom:var(--reactist-spacing-small)}.b923b5a7{padding-bottom:var(--reactist-spacing-medium)}._21795b21{padding-bottom:var(--reactist-spacing-large)}._1843b8d5{padding-bottom:var(--reactist-spacing-xlarge)}.aa17bf37{padding-bottom:var(--reactist-spacing-xxlarge)}@media (min-width:768px){.a28f6624{padding-bottom:var(--reactist-spacing-xsmall)}._7da0f299{padding-bottom:var(--reactist-spacing-small)}._50149ce3{padding-bottom:var(--reactist-spacing-medium)}.a6ab60e2{padding-bottom:var(--reactist-spacing-large)}.ce605666{padding-bottom:var(--reactist-spacing-xlarge)}.b956675e{padding-bottom:var(--reactist-spacing-xxlarge)}}@media (min-width:992px){.d5326ae6{padding-bottom:var(--reactist-spacing-xsmall)}._6803052d{padding-bottom:var(--reactist-spacing-small)}._69a10a83{padding-bottom:var(--reactist-spacing-medium)}._5a8a9ae8{padding-bottom:var(--reactist-spacing-large)}._8b25ea98{padding-bottom:var(--reactist-spacing-xlarge)}.dfd70349{padding-bottom:var(--reactist-spacing-xxlarge)}}._805ae294{padding-left:var(--reactist-spacing-xsmall)}.df5b5dfd{padding-left:var(--reactist-spacing-small)}.eadadb70{padding-left:var(--reactist-spacing-medium)}._96f7a1d7{padding-left:var(--reactist-spacing-large)}.bcc8a161{padding-left:var(--reactist-spacing-xlarge)}._3f7a75c6{padding-left:var(--reactist-spacing-xxlarge)}@media (min-width:768px){._98624fbc{padding-left:var(--reactist-spacing-xsmall)}.b27f1381{padding-left:var(--reactist-spacing-small)}._21610d64{padding-left:var(--reactist-spacing-medium)}.fa50a773{padding-left:var(--reactist-spacing-large)}.b89f0a01{padding-left:var(--reactist-spacing-xlarge)}.e9b75114{padding-left:var(--reactist-spacing-xxlarge)}}@media (min-width:992px){._1d2763bd{padding-left:var(--reactist-spacing-xsmall)}._2b159c75{padding-left:var(--reactist-spacing-small)}._91d5fe19{padding-left:var(--reactist-spacing-medium)}._1818546c{padding-left:var(--reactist-spacing-large)}.fe23556f{padding-left:var(--reactist-spacing-xlarge)}.b69c0660{padding-left:var(--reactist-spacing-xxlarge)}}._191675e3{background-color:var(--reactist-bg-default)}.c9237bd2{background-color:var(--reactist-bg-aside)}.c6d1677f{background-color:var(--reactist-bg-highlight)}.e4c307c8{background-color:var(--reactist-bg-selected)}.d96494dc{border-radius:var(--reactist-border-radius-small)}.e4c4cad8{border-radius:var(--reactist-border-radius-large)}.ba98367a{border:1px solid var(--reactist-framework-border)}
2
- .e25b6eac{font-size:var(--reactist-font-size-normal);font-weight:var(--reactist-font-weight-regular);color:var(--reactist-content-primary)}._7be564c9{font-size:var(--reactist-font-size-xsmall)}._0b65f3be{font-size:var(--reactist-font-size-small)}._148c266b,.efa6a189{font-size:var(--reactist-font-size-large)}.a1ce91c1{font-weight:var(--reactist-font-weight-medium)}._615a6cf6{font-weight:var(--reactist-font-weight-strong)}.e1348c0a{color:var(--reactist-content-secondary)}.f2471c06{color:var(--reactist-chromatic-content-red)}._8f257fa0{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.b219e836{display:-webkit-box;-webkit-box-orient:vertical;overflow:hidden}.d1379189{-webkit-line-clamp:2}.edc9a040{-webkit-line-clamp:3}.d463b64b{-webkit-line-clamp:4}._4feee537{-webkit-line-clamp:5}
1
+ ._26c5201d{box-sizing:border-box;border:0;margin:0;padding:0;font-size:var(--reactist-font-size-body);font-family:inherit;vertical-align:baseline;background-color:transparent;list-style:none}pre._26c5201d{font-family:monospace}._26c5201d[hidden]{display:none!important}._77c3d8d1{position:absolute}._37cb98fb{position:fixed}.df16028f{position:relative}._4205abac{position:-webkit-sticky;position:sticky}@media (min-width:768px){.d6993b5e{position:absolute}.a015e0f5{position:fixed}._236dd3b1{position:relative}.b7ac4837{position:-webkit-sticky;position:sticky}}@media (min-width:992px){.fd93a726{position:absolute}._49228edc{position:fixed}.d972b518{position:relative}.b2a2baf3{position:-webkit-sticky;position:sticky}}._22f1edd1{display:block}.c23d2d6f{display:flex}._5359896d{display:inline}.a54a41a6{display:inline-block}.d02f3d43{display:inline-flex}._760c0710{display:none}@media (min-width:768px){._64e2ebe6{display:block}._25274f78{display:flex}._2077d063{display:inline}.aaed581f{display:inline-block}._1d4a6eb5{display:inline-flex}._66f24c78{display:none}}@media (min-width:992px){._145cca89{display:block}._1861c899{display:flex}._96a720c8{display:inline}._56acf5d5{display:inline-block}._2a268e4b{display:inline-flex}.b4f30b9e{display:none}}._0b071847{min-width:0}._8b67f007{min-width:220px}.e3ec3474{min-width:400px}._5cccd4fc{min-width:660px}._06eeac65{max-width:940px}.ee1b6344{min-width:1280px}._2df097d0{max-width:220px}.b771df2a{max-width:400px}._00ad4e35{max-width:660px}._4a848dab{max-width:940px}.bf216b15{max-width:1280px}.a60a7855{max-width:100%}._4cf1b6c9{flex-direction:column}.e056fa5a{flex-direction:row}@media (min-width:768px){.b9aa8d99{flex-direction:column}._2e8b3442{flex-direction:row}}@media (min-width:992px){._2162c612{flex-direction:column}._279bf1e4{flex-direction:row}}._346d3a71{flex-wrap:wrap}._786fd122{flex-wrap:nowrap}._4b864fc2{flex-shrink:0}._795f552f{flex-grow:0}.a68bcd0f{flex-grow:1}._34e24973{align-items:flex-start}._648380f4{align-items:center}._18b4e1d6{align-items:flex-end}._805c1b65{align-items:baseline}@media (min-width:768px){.fd4006c2{align-items:flex-start}.c3ba10a7{align-items:center}._984cd304{align-items:flex-end}._696cc167{align-items:baseline}}@media (min-width:992px){._74133d54{align-items:flex-start}._92ab46df{align-items:center}._177026d9{align-items:flex-end}.ebd2f31f{align-items:baseline}}._4969235b{justify-content:flex-start}._9594db58{justify-content:center}._6789fdd3{justify-content:flex-end}.b9902d94{justify-content:space-around}._3c3ae41b{justify-content:space-between}._8dce8767{justify-content:space-evenly}@media (min-width:768px){._6bd82354{justify-content:flex-start}._3044c29a{justify-content:center}._13da8745{justify-content:flex-end}._981fa9c8{justify-content:space-around}.d34811a6{justify-content:space-between}._53e07124{justify-content:space-evenly}}@media (min-width:992px){.e709f277{justify-content:flex-start}.abc87cc4{justify-content:center}.ce410292{justify-content:flex-end}._981fa9c8{justify-content:space-around}._5ab1bc04{justify-content:space-between}._53e07124{justify-content:space-evenly}}._11a684c0{overflow:hidden}._2c024f85{overflow:auto}._4d4892bd{overflow:visible}._22ffbb40{overflow:scroll}._330d9b0b{width:100%}.fb8deb05{height:100%}._133f5c00{background-color:var(--reactist-bg-default)}.b2be7ffe{background-color:var(--reactist-bg-aside)}.a45e67ff{background-color:var(--reactist-bg-highlight)}.b90226b5{background-color:var(--reactist-bg-selected)}._6e988219{border-radius:var(--reactist-border-radius-small)}._14cf204e{border-radius:var(--reactist-border-radius-large)}.a710cfdd{border:1px solid var(--reactist-divider-primary)}._52263feb{border:1px solid var(--reactist-divider-secondary)}._546ec3ef{border:1px solid var(--reactist-divider-tertiary)}._7fa90cb9{text-align:start}._54c80396{text-align:center}.e4b1ea49{text-align:end}._0eecd510{text-align:justify}@media (min-width:768px){.a309e75d{text-align:start}._67fb1a07{text-align:center}._0fa851ec{text-align:end}._585a0e34{text-align:justify}}@media (min-width:992px){._5f909690{text-align:start}._13e03993{text-align:center}.f142a1cb{text-align:end}._2bba79a9{text-align:justify}}
2
+ .c4803194{padding-top:var(--reactist-spacing-xsmall)}._4e9ab24b{padding-top:var(--reactist-spacing-small)}._1d226e27{padding-top:var(--reactist-spacing-medium)}.eb6097f1{padding-top:var(--reactist-spacing-large)}.d3229ba4{padding-top:var(--reactist-spacing-xlarge)}._47978ba4{padding-top:var(--reactist-spacing-xxlarge)}@media (min-width:768px){.f987719c{padding-top:var(--reactist-spacing-xsmall)}._8dbc4b4d{padding-top:var(--reactist-spacing-small)}.ae44fe07{padding-top:var(--reactist-spacing-medium)}.ffe9548d{padding-top:var(--reactist-spacing-large)}.f2b76a44{padding-top:var(--reactist-spacing-xlarge)}.c6eb8f43{padding-top:var(--reactist-spacing-xxlarge)}}@media (min-width:992px){._8699b560{padding-top:var(--reactist-spacing-xsmall)}._02c374b7{padding-top:var(--reactist-spacing-small)}._0dd0332f{padding-top:var(--reactist-spacing-medium)}.da55f1f6{padding-top:var(--reactist-spacing-large)}._8ef2a278{padding-top:var(--reactist-spacing-xlarge)}._8b493b28{padding-top:var(--reactist-spacing-xxlarge)}}._211eebc7{padding-right:var(--reactist-spacing-xsmall)}.ad0ccf15{padding-right:var(--reactist-spacing-small)}.a03e39af{padding-right:var(--reactist-spacing-medium)}.f0941ead{padding-right:var(--reactist-spacing-large)}.e47c5a43{padding-right:var(--reactist-spacing-xlarge)}.e849a5cf{padding-right:var(--reactist-spacing-xxlarge)}@media (min-width:768px){._85374228{padding-right:var(--reactist-spacing-xsmall)}._89df37b9{padding-right:var(--reactist-spacing-small)}._1cc50ebe{padding-right:var(--reactist-spacing-medium)}._1060982b{padding-right:var(--reactist-spacing-large)}.be58847d{padding-right:var(--reactist-spacing-xlarge)}._45093484{padding-right:var(--reactist-spacing-xxlarge)}}@media (min-width:992px){.f8d99d6a{padding-right:var(--reactist-spacing-xsmall)}.efa076d9{padding-right:var(--reactist-spacing-small)}.e59caa64{padding-right:var(--reactist-spacing-medium)}.da42f46a{padding-right:var(--reactist-spacing-large)}.b3ee2580{padding-right:var(--reactist-spacing-xlarge)}._3ef94658{padding-right:var(--reactist-spacing-xxlarge)}}.b0e6eab4{padding-bottom:var(--reactist-spacing-xsmall)}._9510d053{padding-bottom:var(--reactist-spacing-small)}.d7af60c9{padding-bottom:var(--reactist-spacing-medium)}.b75f86cd{padding-bottom:var(--reactist-spacing-large)}.fbd4ce29{padding-bottom:var(--reactist-spacing-xlarge)}._33e3ad63{padding-bottom:var(--reactist-spacing-xxlarge)}@media (min-width:768px){.f0302da7{padding-bottom:var(--reactist-spacing-xsmall)}._4f9b8012{padding-bottom:var(--reactist-spacing-small)}._4333e20e{padding-bottom:var(--reactist-spacing-medium)}._30bbc76c{padding-bottom:var(--reactist-spacing-large)}.ba5a4008{padding-bottom:var(--reactist-spacing-xlarge)}._423a3b1a{padding-bottom:var(--reactist-spacing-xxlarge)}}@media (min-width:992px){.b40139b7{padding-bottom:var(--reactist-spacing-xsmall)}.f96071fa{padding-bottom:var(--reactist-spacing-small)}.fe803c9a{padding-bottom:var(--reactist-spacing-medium)}._01686eb9{padding-bottom:var(--reactist-spacing-large)}.afa763d8{padding-bottom:var(--reactist-spacing-xlarge)}.a95785f1{padding-bottom:var(--reactist-spacing-xxlarge)}}.cad4e2ec{padding-left:var(--reactist-spacing-xsmall)}.d70b3c17{padding-left:var(--reactist-spacing-small)}._8c851bd6{padding-left:var(--reactist-spacing-medium)}._078feb3c{padding-left:var(--reactist-spacing-large)}._76ab968c{padding-left:var(--reactist-spacing-xlarge)}.aaca85d7{padding-left:var(--reactist-spacing-xxlarge)}@media (min-width:768px){._5eb0e5aa{padding-left:var(--reactist-spacing-xsmall)}._0384fb4f{padding-left:var(--reactist-spacing-small)}.edffff6f{padding-left:var(--reactist-spacing-medium)}._873b9a46{padding-left:var(--reactist-spacing-large)}._89105db5{padding-left:var(--reactist-spacing-xlarge)}.db1966fe{padding-left:var(--reactist-spacing-xxlarge)}}@media (min-width:992px){.b17f826b{padding-left:var(--reactist-spacing-xsmall)}._6dc83610{padding-left:var(--reactist-spacing-small)}._3421b8b2{padding-left:var(--reactist-spacing-medium)}._68cec7a6{padding-left:var(--reactist-spacing-large)}._94bde020{padding-left:var(--reactist-spacing-xlarge)}.b94ee579{padding-left:var(--reactist-spacing-xxlarge)}}
3
+ .c7813d79{margin-top:var(--reactist-spacing-xsmall)}.d3449da6{margin-top:var(--reactist-spacing-small)}._4ea254c1{margin-top:var(--reactist-spacing-medium)}.c0844f64{margin-top:var(--reactist-spacing-large)}._213145b4{margin-top:var(--reactist-spacing-xlarge)}.df61c84c{margin-top:var(--reactist-spacing-xxlarge)}.efe72b13{margin-top:calc(var(--reactist-spacing-xsmall)*-1)}._870c2768{margin-top:calc(var(--reactist-spacing-small)*-1)}._0b927c57{margin-top:calc(var(--reactist-spacing-medium)*-1)}._461db014{margin-top:calc(var(--reactist-spacing-large)*-1)}._2a3a8cb8{margin-top:calc(var(--reactist-spacing-xlarge)*-1)}._9bcda921{margin-top:calc(var(--reactist-spacing-xxlarge)*-1)}@media (min-width:768px){._6add01e4{margin-top:var(--reactist-spacing-xsmall)}._735ef86b{margin-top:var(--reactist-spacing-small)}._0477d068{margin-top:var(--reactist-spacing-medium)}._2c90af97{margin-top:var(--reactist-spacing-large)}._63a82db6{margin-top:var(--reactist-spacing-xlarge)}._03cd7726{margin-top:var(--reactist-spacing-xxlarge)}.c986a62a{margin-top:calc(var(--reactist-spacing-xsmall)*-1)}.be2bdcdd{margin-top:calc(var(--reactist-spacing-small)*-1)}._47d2686b{margin-top:calc(var(--reactist-spacing-medium)*-1)}._25e5af9d{margin-top:calc(var(--reactist-spacing-large)*-1)}.ee82f441{margin-top:calc(var(--reactist-spacing-xlarge)*-1)}.a6f9d404{margin-top:calc(var(--reactist-spacing-xxlarge)*-1)}}@media (min-width:992px){._4d8d9a36{margin-top:var(--reactist-spacing-xsmall)}.e813cee7{margin-top:var(--reactist-spacing-small)}._56975b7d{margin-top:var(--reactist-spacing-medium)}._53b367f6{margin-top:var(--reactist-spacing-large)}.d69e7311{margin-top:var(--reactist-spacing-xlarge)}._92f57c7e{margin-top:var(--reactist-spacing-xxlarge)}._96880d3e{margin-top:calc(var(--reactist-spacing-xsmall)*-1)}.dc3f3555{margin-top:calc(var(--reactist-spacing-small)*-1)}._86dd06bb{margin-top:calc(var(--reactist-spacing-medium)*-1)}.c93ef12e{margin-top:calc(var(--reactist-spacing-large)*-1)}.bc8fd4a2{margin-top:calc(var(--reactist-spacing-xlarge)*-1)}.b12a9124{margin-top:calc(var(--reactist-spacing-xxlarge)*-1)}}._6016f4fb{margin-right:var(--reactist-spacing-xsmall)}.b85e3dfa{margin-right:var(--reactist-spacing-small)}._297575f4{margin-right:var(--reactist-spacing-medium)}.b401ac6c{margin-right:var(--reactist-spacing-large)}.dc3ec387{margin-right:var(--reactist-spacing-xlarge)}._24694604{margin-right:var(--reactist-spacing-xxlarge)}._8e9bf2ee{margin-right:calc(var(--reactist-spacing-xsmall)*-1)}.ae9d1115{margin-right:calc(var(--reactist-spacing-small)*-1)}._14e46fc3{margin-right:calc(var(--reactist-spacing-medium)*-1)}._3370631b{margin-right:calc(var(--reactist-spacing-large)*-1)}._3f0e9b50{margin-right:calc(var(--reactist-spacing-xlarge)*-1)}.bc13e010{margin-right:calc(var(--reactist-spacing-xxlarge)*-1)}@media (min-width:768px){._6fa1aae3{margin-right:var(--reactist-spacing-xsmall)}._2976c5cb{margin-right:var(--reactist-spacing-small)}._38d94802{margin-right:var(--reactist-spacing-medium)}.db9569b5{margin-right:var(--reactist-spacing-large)}._4a52f06d{margin-right:var(--reactist-spacing-xlarge)}._8a0f0410{margin-right:var(--reactist-spacing-xxlarge)}.e7d40e9d{margin-right:calc(var(--reactist-spacing-xsmall)*-1)}._680fde91{margin-right:calc(var(--reactist-spacing-small)*-1)}._021010ca{margin-right:calc(var(--reactist-spacing-medium)*-1)}._9e52c87c{margin-right:calc(var(--reactist-spacing-large)*-1)}._4d602613{margin-right:calc(var(--reactist-spacing-xlarge)*-1)}._21b1b65a{margin-right:calc(var(--reactist-spacing-xxlarge)*-1)}}@media (min-width:992px){._7321bc07{margin-right:var(--reactist-spacing-xsmall)}.fa1721f4{margin-right:var(--reactist-spacing-small)}._3fd7b4b8{margin-right:var(--reactist-spacing-medium)}._4fdc2f74{margin-right:var(--reactist-spacing-large)}.c0254761{margin-right:var(--reactist-spacing-xlarge)}._710a5f09{margin-right:var(--reactist-spacing-xxlarge)}.e08bee7f{margin-right:calc(var(--reactist-spacing-xsmall)*-1)}.e5ab73d2{margin-right:calc(var(--reactist-spacing-small)*-1)}._5e731477{margin-right:calc(var(--reactist-spacing-medium)*-1)}._0f57a22e{margin-right:calc(var(--reactist-spacing-large)*-1)}._25f26ed3{margin-right:calc(var(--reactist-spacing-xlarge)*-1)}._11a3b4e0{margin-right:calc(var(--reactist-spacing-xxlarge)*-1)}}._6a4f69f7{margin-bottom:var(--reactist-spacing-xsmall)}.db26b033{margin-bottom:var(--reactist-spacing-small)}.c7313022{margin-bottom:var(--reactist-spacing-medium)}.a5885889{margin-bottom:var(--reactist-spacing-large)}._33dfbd8e{margin-bottom:var(--reactist-spacing-xlarge)}._795ad2de{margin-bottom:var(--reactist-spacing-xxlarge)}.a329dbd3{margin-bottom:calc(var(--reactist-spacing-xsmall)*-1)}._85e739fb{margin-bottom:calc(var(--reactist-spacing-small)*-1)}._681f65ff{margin-bottom:calc(var(--reactist-spacing-medium)*-1)}.caf50d8f{margin-bottom:calc(var(--reactist-spacing-large)*-1)}._1e084cbf{margin-bottom:calc(var(--reactist-spacing-xlarge)*-1)}._3dfb1c7e{margin-bottom:calc(var(--reactist-spacing-xxlarge)*-1)}@media (min-width:768px){.ef4735be{margin-bottom:var(--reactist-spacing-xsmall)}.de55afba{margin-bottom:var(--reactist-spacing-small)}._0e33ce88{margin-bottom:var(--reactist-spacing-medium)}._8ca391fc{margin-bottom:var(--reactist-spacing-large)}._3a609d23{margin-bottom:var(--reactist-spacing-xlarge)}._3e1177e4{margin-bottom:var(--reactist-spacing-xxlarge)}.d384884d{margin-bottom:calc(var(--reactist-spacing-xsmall)*-1)}._75254cec{margin-bottom:calc(var(--reactist-spacing-small)*-1)}._5d9f127d{margin-bottom:calc(var(--reactist-spacing-medium)*-1)}._835f1089{margin-bottom:calc(var(--reactist-spacing-large)*-1)}.dad52a72{margin-bottom:calc(var(--reactist-spacing-xlarge)*-1)}._8703a4bf{margin-bottom:calc(var(--reactist-spacing-xxlarge)*-1)}}@media (min-width:992px){._90fd20e9{margin-bottom:var(--reactist-spacing-xsmall)}.f3769191{margin-bottom:var(--reactist-spacing-small)}._156410f8{margin-bottom:var(--reactist-spacing-medium)}._7fed74d0{margin-bottom:var(--reactist-spacing-large)}._477dc10e{margin-bottom:var(--reactist-spacing-xlarge)}._85c82d89{margin-bottom:var(--reactist-spacing-xxlarge)}._4f09c1e0{margin-bottom:calc(var(--reactist-spacing-xsmall)*-1)}._9523e048{margin-bottom:calc(var(--reactist-spacing-small)*-1)}.efe10240{margin-bottom:calc(var(--reactist-spacing-medium)*-1)}.c43971e6{margin-bottom:calc(var(--reactist-spacing-large)*-1)}.f9b4da15{margin-bottom:calc(var(--reactist-spacing-xlarge)*-1)}.a10fdf70{margin-bottom:calc(var(--reactist-spacing-xxlarge)*-1)}}.f9be90b4{margin-left:var(--reactist-spacing-xsmall)}.f53218d5{margin-left:var(--reactist-spacing-small)}.c4a9b3ab{margin-left:var(--reactist-spacing-medium)}._5755e2c3{margin-left:var(--reactist-spacing-large)}._33fc9354{margin-left:var(--reactist-spacing-xlarge)}._4749a3bf{margin-left:var(--reactist-spacing-xxlarge)}.c76cb3c7{margin-left:calc(var(--reactist-spacing-xsmall)*-1)}._96003c07{margin-left:calc(var(--reactist-spacing-small)*-1)}._09988d07{margin-left:calc(var(--reactist-spacing-medium)*-1)}.b4a486f6{margin-left:calc(var(--reactist-spacing-large)*-1)}.f396e75e{margin-left:calc(var(--reactist-spacing-xlarge)*-1)}._81d1f26d{margin-left:calc(var(--reactist-spacing-xxlarge)*-1)}@media (min-width:768px){._0a46e8f1{margin-left:var(--reactist-spacing-xsmall)}._57c970af{margin-left:var(--reactist-spacing-small)}._4b6099d3{margin-left:var(--reactist-spacing-medium)}._378fcff5{margin-left:var(--reactist-spacing-large)}.f8785663{margin-left:var(--reactist-spacing-xlarge)}._72f957ee{margin-left:var(--reactist-spacing-xxlarge)}._2288c7e1{margin-left:calc(var(--reactist-spacing-xsmall)*-1)}.b27c1c05{margin-left:calc(var(--reactist-spacing-small)*-1)}._702cbb13{margin-left:calc(var(--reactist-spacing-medium)*-1)}._1a2748b4{margin-left:calc(var(--reactist-spacing-large)*-1)}.b8c043a5{margin-left:calc(var(--reactist-spacing-xlarge)*-1)}._8dc8ff63{margin-left:calc(var(--reactist-spacing-xxlarge)*-1)}}@media (min-width:992px){.c2af646d{margin-left:var(--reactist-spacing-xsmall)}.c03d07be{margin-left:var(--reactist-spacing-small)}._915fb1d3{margin-left:var(--reactist-spacing-medium)}._64214ee1{margin-left:var(--reactist-spacing-large)}._7be4a22c{margin-left:var(--reactist-spacing-xlarge)}._5ec0a401{margin-left:var(--reactist-spacing-xxlarge)}.ea29f1ee{margin-left:calc(var(--reactist-spacing-xsmall)*-1)}.c26652c7{margin-left:calc(var(--reactist-spacing-small)*-1)}.c24f6af9{margin-left:calc(var(--reactist-spacing-medium)*-1)}.c2671f27{margin-left:calc(var(--reactist-spacing-large)*-1)}.cc51a04e{margin-left:calc(var(--reactist-spacing-xlarge)*-1)}.fd581f54{margin-left:calc(var(--reactist-spacing-xxlarge)*-1)}}
4
+ .c12d1277{font-family:var(--reactist-font-family);font-size:var(--reactist-font-size-body);font-weight:var(--reactist-font-weight-regular);color:var(--reactist-content-primary)}.c88e1204{font-size:var(--reactist-font-size-caption)}._426d67ec{font-size:var(--reactist-font-size-copy)}.f978d6c7{font-size:var(--reactist-font-size-subtitle)}._0c31eccd{font-weight:var(--reactist-font-weight-medium)}.aba17bdd{font-weight:var(--reactist-font-weight-strong)}._2767b43d{color:var(--reactist-content-secondary)}.e8ae531e{color:var(--reactist-chromatic-content-red)}.dc839422{display:-webkit-box;-webkit-box-orient:vertical;overflow:hidden}.e2d23135{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}._7c778b7e{-webkit-line-clamp:2}._5ff41166{-webkit-line-clamp:3}.b7a4998e{-webkit-line-clamp:4}._6a7f8803{-webkit-line-clamp:5}
@@ -1 +1 @@
1
- .e25b6eac{font-size:var(--reactist-font-size-normal);font-weight:var(--reactist-font-weight-regular);color:var(--reactist-content-primary)}._7be564c9{font-size:var(--reactist-font-size-xsmall)}._0b65f3be{font-size:var(--reactist-font-size-small)}._148c266b,.efa6a189{font-size:var(--reactist-font-size-large)}.a1ce91c1{font-weight:var(--reactist-font-weight-medium)}._615a6cf6{font-weight:var(--reactist-font-weight-strong)}.e1348c0a{color:var(--reactist-content-secondary)}.f2471c06{color:var(--reactist-chromatic-content-red)}._8f257fa0{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.b219e836{display:-webkit-box;-webkit-box-orient:vertical;overflow:hidden}.d1379189{-webkit-line-clamp:2}.edc9a040{-webkit-line-clamp:3}.d463b64b{-webkit-line-clamp:4}._4feee537{-webkit-line-clamp:5}
1
+ .c12d1277{font-family:var(--reactist-font-family);font-size:var(--reactist-font-size-body);font-weight:var(--reactist-font-weight-regular);color:var(--reactist-content-primary)}.c88e1204{font-size:var(--reactist-font-size-caption)}._426d67ec{font-size:var(--reactist-font-size-copy)}.f978d6c7{font-size:var(--reactist-font-size-subtitle)}._0c31eccd{font-weight:var(--reactist-font-weight-medium)}.aba17bdd{font-weight:var(--reactist-font-weight-strong)}._2767b43d{color:var(--reactist-content-secondary)}.e8ae531e{color:var(--reactist-chromatic-content-red)}.dc839422{display:-webkit-box;-webkit-box-orient:vertical;overflow:hidden}.e2d23135{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}._7c778b7e{-webkit-line-clamp:2}._5ff41166{-webkit-line-clamp:3}.b7a4998e{-webkit-line-clamp:4}._6a7f8803{-webkit-line-clamp:5}
package/styles/tip.css CHANGED
@@ -1,4 +1,4 @@
1
1
  .reactist_tooltip{font-size:.81rem;color:#202020;font-weight:400;line-height:1.6;text-align:center;text-overflow:ellipsis;overflow:hidden;max-width:100%;padding:5px 10px;background-color:#333;color:#fff;border:none;border-radius:3px;z-index:1000}
2
- .reactist_button{cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;color:inherit;border:none;background-color:transparent;padding:0}.reactist_button:disabled{opacity:.4;cursor:not-allowed}.reactist_button--small{font-size:.81rem;color:#202020;font-weight:400;line-height:1.6}.reactist_button--danger,.reactist_button--primary,.reactist_button--secondary{font-size:.875rem;color:#202020;font-weight:400;line-height:1.7;box-sizing:border-box;padding:5px 15px;border:1px solid rgba(0,0,0,.1);border-radius:3px}.reactist_button--danger.reactist_button--small,.reactist_button--primary.reactist_button--small,.reactist_button--secondary.reactist_button--small{padding:5px 10px}.reactist_button--danger.reactist_button--large,.reactist_button--primary.reactist_button--large,.reactist_button--secondary.reactist_button--large{padding:10px 15px}.reactist_button--primary{background-color:#3f82ef;color:#fff!important}.reactist_button--primary:not([disabled]):hover{background-color:#3b7be2}.reactist_button--danger{background-color:#de4c4a;color:#fff!important}.reactist_button--danger:not([disabled]):hover{background-color:#cf2826}.reactist_button--secondary{background-color:#fff;color:#202020!important;border-color:#dcdcdc}.reactist_button--secondary:not([disabled]):hover{background-color:#f9f9f9}.reactist_button--link{color:#3f82ef;text-decoration:none}.reactist_button--link:disabled{color:grey}.reactist_button--link:not(:disabled):hover{text-decoration:underline}.reactist_button--link:not(.reactist_button--link--small):not(.reactist_button--link--large){font-size:inherit}.reactist_button--danger.reactist_button--loading,.reactist_button--primary.reactist_button--loading,.reactist_button--secondary.reactist_button--loading{cursor:progress!important}.reactist_button--danger.reactist_button--loading:after,.reactist_button--primary.reactist_button--loading:after,.reactist_button--secondary.reactist_button--loading:after{background-repeat:no-repeat;background-size:15px;content:"";display:inline-block;height:15px;margin-left:12px;vertical-align:middle;width:15px;animation-duration:1s;animation-iteration-count:infinite;animation-name:reactistRotateRight;animation-timing-function:linear;color:#fff;background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNi4yNTciIGhlaWdodD0iMTYuMjU3IiB2aWV3Qm94PSItMTQ3LjgxMyAyMDYuNzUgMTYuMjU3IDE2LjI1NyIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAtMTQ3LjgxMyAyMDYuNzUgMTYuMjU3IDE2LjI1NyI+PGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMCAtMikiPjxkZWZzPjxmaWx0ZXIgaWQ9ImEiIGZpbHRlclVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeD0iLTE0Ny42ODQiIHk9IjIxMC45MjkiIHdpZHRoPSIxNiIgaGVpZ2h0PSIxMy45NSI+PGZlQ29sb3JNYXRyaXggdmFsdWVzPSIxIDAgMCAwIDAgMCAxIDAgMCAwIDAgMCAxIDAgMCAwIDAgMCAxIDAiLz48L2ZpbHRlcj48L2RlZnM+PG1hc2sgbWFza1VuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeD0iLTE0Ny42ODQiIHk9IjIxMC45MjkiIHdpZHRoPSIxNiIgaGVpZ2h0PSIxMy45NSIgaWQ9ImIiPjxnIGZpbHRlcj0idXJsKCNhKSI+PHBhdGggZmlsbD0iI0ZGRiIgZD0iTS0xNDguNTg0IDIwNy45NzloMTh2MThoLTE4eiIvPjwvZz48L21hc2s+PHBhdGggbWFzaz0idXJsKCNiKSIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjRkZGIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgZD0iTS0xNDQuNjM0IDIxMS45MjlhNi45OTkgNi45OTkgMCAwMDAgOS44OTloMGE2Ljk5OSA2Ljk5OSAwIDAwOS44OTkgMCA2Ljk5OSA2Ljk5OSAwIDAwMC05Ljg5OSIvPjwvZz48L3N2Zz4=")}.reactist_button--secondary.reactist_button--loading{border-color:#dcdcdc;background-color:#dcdcdc;color:grey}@keyframes reactistRotateRight{0%{transform:rotate(0deg);transform-origin:center center}to{transform:rotate(1turn);transform-origin:center center}}
2
+ .reactist_button{cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;color:inherit;border:none;background-color:transparent;padding:0}.reactist_button[aria-disabled=true]{opacity:.4;cursor:not-allowed}.reactist_button--small{font-size:.81rem;color:#202020;font-weight:400;line-height:1.6}.reactist_button--danger,.reactist_button--primary,.reactist_button--secondary{font-size:.875rem;color:#202020;font-weight:400;line-height:1.7;box-sizing:border-box;padding:5px 15px;border:1px solid rgba(0,0,0,.1);border-radius:3px}.reactist_button--danger.reactist_button--small,.reactist_button--primary.reactist_button--small,.reactist_button--secondary.reactist_button--small{padding:5px 10px}.reactist_button--danger.reactist_button--large,.reactist_button--primary.reactist_button--large,.reactist_button--secondary.reactist_button--large{padding:10px 15px}.reactist_button--primary{background-color:#3f82ef;color:#fff}.reactist_button--primary:not([disabled]):hover{background-color:#3b7be2}.reactist_button--danger{background-color:#de4c4a;color:#fff}.reactist_button--danger:not([disabled]):hover{background-color:#cf2826}.reactist_button--secondary{background-color:#fff;color:#202020;border-color:#dcdcdc}.reactist_button--secondary:not([disabled]):hover{background-color:#f9f9f9}.reactist_button--link{color:#3f82ef;text-decoration:none}.reactist_button--link:disabled{color:grey}.reactist_button--link:not(:disabled):hover{text-decoration:underline}.reactist_button--link:not(.reactist_button--link--small):not(.reactist_button--link--large){font-size:inherit}.reactist_button--danger.reactist_button--loading,.reactist_button--primary.reactist_button--loading,.reactist_button--secondary.reactist_button--loading{cursor:progress!important}.reactist_button--danger.reactist_button--loading:after,.reactist_button--primary.reactist_button--loading:after,.reactist_button--secondary.reactist_button--loading:after{background-repeat:no-repeat;background-size:15px;content:"";display:inline-block;height:15px;margin-left:12px;vertical-align:middle;width:15px;animation-duration:1s;animation-iteration-count:infinite;animation-name:reactistRotateRight;animation-timing-function:linear;color:#fff;background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNi4yNTciIGhlaWdodD0iMTYuMjU3IiB2aWV3Qm94PSItMTQ3LjgxMyAyMDYuNzUgMTYuMjU3IDE2LjI1NyIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAtMTQ3LjgxMyAyMDYuNzUgMTYuMjU3IDE2LjI1NyI+PGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMCAtMikiPjxkZWZzPjxmaWx0ZXIgaWQ9ImEiIGZpbHRlclVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeD0iLTE0Ny42ODQiIHk9IjIxMC45MjkiIHdpZHRoPSIxNiIgaGVpZ2h0PSIxMy45NSI+PGZlQ29sb3JNYXRyaXggdmFsdWVzPSIxIDAgMCAwIDAgMCAxIDAgMCAwIDAgMCAxIDAgMCAwIDAgMCAxIDAiLz48L2ZpbHRlcj48L2RlZnM+PG1hc2sgbWFza1VuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeD0iLTE0Ny42ODQiIHk9IjIxMC45MjkiIHdpZHRoPSIxNiIgaGVpZ2h0PSIxMy45NSIgaWQ9ImIiPjxnIGZpbHRlcj0idXJsKCNhKSI+PHBhdGggZmlsbD0iI0ZGRiIgZD0iTS0xNDguNTg0IDIwNy45NzloMTh2MThoLTE4eiIvPjwvZz48L21hc2s+PHBhdGggbWFzaz0idXJsKCNiKSIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjRkZGIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgZD0iTS0xNDQuNjM0IDIxMS45MjlhNi45OTkgNi45OTkgMCAwMDAgOS44OTloMGE2Ljk5OSA2Ljk5OSAwIDAwOS44OTkgMCA2Ljk5OSA2Ljk5OSAwIDAwMC05Ljg5OSIvPjwvZz48L3N2Zz4=")}.reactist_button--secondary.reactist_button--loading{border-color:#dcdcdc;background-color:#dcdcdc;color:grey}@keyframes reactistRotateRight{0%{transform:rotate(0deg);transform-origin:center center}to{transform:rotate(1turn);transform-origin:center center}}
3
3
  .reactist_dropdown .trigger{cursor:pointer;display:block}.reactist_dropdown .body{border-radius:3px;border:1px solid #dcdcdc;overflow:hidden;box-shadow:0 1px 8px 0 rgba(0,0,0,.08);z-index:1;background-color:#fff}.reactist_dropdown hr{border:none;height:1px;background-color:#dcdcdc;margin:0 5px}.reactist_dropdown .with_arrow:after,.reactist_dropdown .with_arrow:before{z-index:1;content:"";display:block;position:absolute;width:0;height:0;border-style:solid;border-width:6px;right:14px}.reactist_dropdown .with_arrow:after{top:-11px;border-color:transparent transparent #fff}.reactist_dropdown .with_arrow:before{top:-12px;border-color:transparent transparent #dcdcdc}.reactist_dropdown .with_arrow.top:after{top:-1px;border-color:#fff transparent transparent}.reactist_dropdown .with_arrow.top:before{top:-1px;right:13px;border-width:7px;border-color:#dcdcdc transparent transparent}
4
4
  .reactist_tip{width:250px;padding:10px 20px}.reactist_tip__container{width:20px;height:20px}.reactist_tip--title{margin:0 0 10px;font-weight:700}.reactist_tip--message,.reactist_tip--title{font-size:.875rem;color:#202020;line-height:1.7}.reactist_tip--message{margin:0;font-weight:400}