@vectara/vectara-ui 0.0.2

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 (333) hide show
  1. package/.github/workflows/deploy-pages-site.yml +26 -0
  2. package/.github/workflows/deploy-pr-preview.yml +25 -0
  3. package/CHANGELOG.md +13 -0
  4. package/NO_LICENSE +3 -0
  5. package/lib/components/accordion/Accordion.d.ts +8 -0
  6. package/lib/components/accordion/Accordion.js +27 -0
  7. package/lib/components/accordion/_index.scss +23 -0
  8. package/lib/components/accountMenu/AccountMenu.d.ts +13 -0
  9. package/lib/components/accountMenu/AccountMenu.js +7 -0
  10. package/lib/components/accountMenu/_index.scss +20 -0
  11. package/lib/components/app/AppContent.d.ts +9 -0
  12. package/lib/components/app/AppContent.js +28 -0
  13. package/lib/components/app/AppHeader.d.ts +7 -0
  14. package/lib/components/app/AppHeader.js +18 -0
  15. package/lib/components/app/AppLayout.d.ts +9 -0
  16. package/lib/components/app/AppLayout.js +10 -0
  17. package/lib/components/app/_index.scss +4 -0
  18. package/lib/components/app/appContent.scss +26 -0
  19. package/lib/components/app/appHeader.scss +15 -0
  20. package/lib/components/app/appLayout.scss +23 -0
  21. package/lib/components/app/appSideNav/AppSideNav.d.ts +7 -0
  22. package/lib/components/app/appSideNav/AppSideNav.js +46 -0
  23. package/lib/components/app/appSideNav/AppSideNavLink.d.ts +4 -0
  24. package/lib/components/app/appSideNav/AppSideNavLink.js +26 -0
  25. package/lib/components/app/appSideNav/AppSideNavSections.d.ts +2 -0
  26. package/lib/components/app/appSideNav/AppSideNavSections.js +11 -0
  27. package/lib/components/app/appSideNav/AppSideNavTree.d.ts +2 -0
  28. package/lib/components/app/appSideNav/AppSideNavTree.js +38 -0
  29. package/lib/components/app/appSideNav/_index.scss +17 -0
  30. package/lib/components/app/appSideNav/appSideNav.scss +75 -0
  31. package/lib/components/app/appSideNav/appSideNavSections.scss +33 -0
  32. package/lib/components/app/appSideNav/appSideNavTree.scss +25 -0
  33. package/lib/components/app/types.d.ts +21 -0
  34. package/lib/components/app/types.js +1 -0
  35. package/lib/components/badge/Badge.d.ts +14 -0
  36. package/lib/components/badge/Badge.js +33 -0
  37. package/lib/components/badge/_index.scss +64 -0
  38. package/lib/components/button/BaseButton.d.ts +28 -0
  39. package/lib/components/button/BaseButton.js +65 -0
  40. package/lib/components/button/ButtonPrimary.d.ts +8 -0
  41. package/lib/components/button/ButtonPrimary.js +42 -0
  42. package/lib/components/button/ButtonSecondary.d.ts +10 -0
  43. package/lib/components/button/ButtonSecondary.js +43 -0
  44. package/lib/components/button/ButtonTertiary.d.ts +10 -0
  45. package/lib/components/button/ButtonTertiary.js +43 -0
  46. package/lib/components/button/IconButton.d.ts +16 -0
  47. package/lib/components/button/IconButton.js +29 -0
  48. package/lib/components/button/_index.scss +5 -0
  49. package/lib/components/button/baseButton.scss +94 -0
  50. package/lib/components/button/buttonPrimary.scss +51 -0
  51. package/lib/components/button/buttonSecondary.scss +54 -0
  52. package/lib/components/button/buttonTertiary.scss +56 -0
  53. package/lib/components/button/createButtonIcon.d.ts +3 -0
  54. package/lib/components/button/createButtonIcon.js +24 -0
  55. package/lib/components/button/iconButton.scss +44 -0
  56. package/lib/components/button/types.d.ts +3 -0
  57. package/lib/components/button/types.js +2 -0
  58. package/lib/components/callout/Callout.d.ts +13 -0
  59. package/lib/components/callout/Callout.js +40 -0
  60. package/lib/components/callout/_index.scss +49 -0
  61. package/lib/components/callout/types.d.ts +3 -0
  62. package/lib/components/callout/types.js +2 -0
  63. package/lib/components/card/Card.d.ts +14 -0
  64. package/lib/components/card/Card.js +29 -0
  65. package/lib/components/card/_index.scss +114 -0
  66. package/lib/components/chat/Chat.d.ts +17 -0
  67. package/lib/components/chat/Chat.js +130 -0
  68. package/lib/components/chat/ChatInspector.d.ts +7 -0
  69. package/lib/components/chat/ChatInspector.js +12 -0
  70. package/lib/components/chat/ChatPanel.d.ts +7 -0
  71. package/lib/components/chat/ChatPanel.js +11 -0
  72. package/lib/components/chat/ChatSearchResult.d.ts +16 -0
  73. package/lib/components/chat/ChatSearchResult.js +26 -0
  74. package/lib/components/chat/ChatTurn.d.ts +9 -0
  75. package/lib/components/chat/ChatTurn.js +19 -0
  76. package/lib/components/chat/_index.scss +150 -0
  77. package/lib/components/chat/chatTurn.scss +38 -0
  78. package/lib/components/chat/types.d.ts +17 -0
  79. package/lib/components/chat/types.js +19 -0
  80. package/lib/components/code/Code.d.ts +17 -0
  81. package/lib/components/code/Code.js +44 -0
  82. package/lib/components/code/_index.scss +33 -0
  83. package/lib/components/code/types.d.ts +1 -0
  84. package/lib/components/code/types.js +1 -0
  85. package/lib/components/context/Context.d.ts +18 -0
  86. package/lib/components/context/Context.js +34 -0
  87. package/lib/components/context/Context.test.util.d.ts +2 -0
  88. package/lib/components/context/Context.test.util.js +22 -0
  89. package/lib/components/copyButton/CopyButton.d.ts +10 -0
  90. package/lib/components/copyButton/CopyButton.js +50 -0
  91. package/lib/components/drawer/Drawer.d.ts +13 -0
  92. package/lib/components/drawer/Drawer.js +53 -0
  93. package/lib/components/drawer/_index.scss +73 -0
  94. package/lib/components/flex/FlexContainer.d.ts +36 -0
  95. package/lib/components/flex/FlexContainer.js +53 -0
  96. package/lib/components/flex/FlexItem.d.ts +22 -0
  97. package/lib/components/flex/FlexItem.js +36 -0
  98. package/lib/components/flex/_flexContainer.scss +79 -0
  99. package/lib/components/flex/_flexItem.scss +64 -0
  100. package/lib/components/flex/_index.scss +2 -0
  101. package/lib/components/flex/types.d.ts +2 -0
  102. package/lib/components/flex/types.js +1 -0
  103. package/lib/components/form/_index.scss +7 -0
  104. package/lib/components/form/checkbox/Checkbox.d.ts +8 -0
  105. package/lib/components/form/checkbox/Checkbox.js +24 -0
  106. package/lib/components/form/checkbox/_index.scss +3 -0
  107. package/lib/components/form/index.d.ts +10 -0
  108. package/lib/components/form/index.js +9 -0
  109. package/lib/components/form/input/BasicInput.d.ts +15 -0
  110. package/lib/components/form/input/BasicInput.js +30 -0
  111. package/lib/components/form/input/NumberInput.d.ts +8 -0
  112. package/lib/components/form/input/NumberInput.js +61 -0
  113. package/lib/components/form/input/PasswordInput.d.ts +7 -0
  114. package/lib/components/form/input/PasswordInput.js +21 -0
  115. package/lib/components/form/input/TextInput.d.ts +6 -0
  116. package/lib/components/form/input/TextInput.js +21 -0
  117. package/lib/components/form/input/_index.scss +24 -0
  118. package/lib/components/form/label/Label.d.ts +7 -0
  119. package/lib/components/form/label/Label.js +18 -0
  120. package/lib/components/form/label/_index.scss +5 -0
  121. package/lib/components/form/radioButton/RadioButton.d.ts +9 -0
  122. package/lib/components/form/radioButton/RadioButton.js +24 -0
  123. package/lib/components/form/radioButton/_index.scss +3 -0
  124. package/lib/components/form/select/Select.d.ts +17 -0
  125. package/lib/components/form/select/Select.js +34 -0
  126. package/lib/components/form/select/_index.scss +56 -0
  127. package/lib/components/form/superRadioGroup/SuperRadioButton.d.ts +7 -0
  128. package/lib/components/form/superRadioGroup/SuperRadioButton.js +22 -0
  129. package/lib/components/form/superRadioGroup/SuperRadioGroup.d.ts +8 -0
  130. package/lib/components/form/superRadioGroup/SuperRadioGroup.js +6 -0
  131. package/lib/components/form/superRadioGroup/_index.scss +31 -0
  132. package/lib/components/form/superRadioGroup/types.d.ts +8 -0
  133. package/lib/components/form/superRadioGroup/types.js +1 -0
  134. package/lib/components/form/textArea/TextArea.d.ts +12 -0
  135. package/lib/components/form/textArea/TextArea.js +21 -0
  136. package/lib/components/form/textArea/_index.scss +14 -0
  137. package/lib/components/formGroup/FormGroup.d.ts +10 -0
  138. package/lib/components/formGroup/FormGroup.js +27 -0
  139. package/lib/components/grid/Grid.d.ts +12 -0
  140. package/lib/components/grid/Grid.js +20 -0
  141. package/lib/components/grid/_index.scss +51 -0
  142. package/lib/components/horizontalRule/HorizontalRule.d.ts +6 -0
  143. package/lib/components/horizontalRule/HorizontalRule.js +4 -0
  144. package/lib/components/horizontalRule/_index.scss +40 -0
  145. package/lib/components/icon/Icon.d.ts +11 -0
  146. package/lib/components/icon/Icon.js +37 -0
  147. package/lib/components/icon/_index.scss +25 -0
  148. package/lib/components/icon/types.d.ts +2 -0
  149. package/lib/components/icon/types.js +12 -0
  150. package/lib/components/index.d.ts +75 -0
  151. package/lib/components/index.js +67 -0
  152. package/lib/components/infoTable/InfoTable.d.ts +24 -0
  153. package/lib/components/infoTable/InfoTable.js +24 -0
  154. package/lib/components/infoTable/_index.scss +53 -0
  155. package/lib/components/link/Link.d.ts +3 -0
  156. package/lib/components/link/Link.js +36 -0
  157. package/lib/components/link/Link.test.d.ts +1 -0
  158. package/lib/components/link/Link.test.js +40 -0
  159. package/lib/components/link/_index.scss +17 -0
  160. package/lib/components/link/types.d.ts +15 -0
  161. package/lib/components/link/types.js +1 -0
  162. package/lib/components/list/List.d.ts +12 -0
  163. package/lib/components/list/List.js +15 -0
  164. package/lib/components/list/_index.scss +29 -0
  165. package/lib/components/menu/Menu.d.ts +7 -0
  166. package/lib/components/menu/Menu.js +6 -0
  167. package/lib/components/menu/MenuItem.d.ts +10 -0
  168. package/lib/components/menu/MenuItem.js +31 -0
  169. package/lib/components/menu/_index.scss +75 -0
  170. package/lib/components/modal/Modal.d.ts +13 -0
  171. package/lib/components/modal/Modal.js +53 -0
  172. package/lib/components/modal/_index.scss +85 -0
  173. package/lib/components/notification/Notification.d.ts +12 -0
  174. package/lib/components/notification/Notification.js +23 -0
  175. package/lib/components/notification/Notifications.d.ts +10 -0
  176. package/lib/components/notification/Notifications.js +35 -0
  177. package/lib/components/notification/_index.scss +99 -0
  178. package/lib/components/optionsButton/OptionsButton.d.ts +7 -0
  179. package/lib/components/optionsButton/OptionsButton.js +25 -0
  180. package/lib/components/optionsButton/_index.scss +42 -0
  181. package/lib/components/optionsList/OptionsList.d.ts +13 -0
  182. package/lib/components/optionsList/OptionsList.js +31 -0
  183. package/lib/components/optionsList/OptionsListItem.d.ts +10 -0
  184. package/lib/components/optionsList/OptionsListItem.js +41 -0
  185. package/lib/components/optionsList/_index.scss +84 -0
  186. package/lib/components/optionsList/types.d.ts +13 -0
  187. package/lib/components/optionsList/types.js +1 -0
  188. package/lib/components/popover/Popover.d.ts +11 -0
  189. package/lib/components/popover/Popover.js +91 -0
  190. package/lib/components/popover/_index.scss +29 -0
  191. package/lib/components/portal/Portal.d.ts +6 -0
  192. package/lib/components/portal/Portal.js +16 -0
  193. package/lib/components/progressBar/ProgressBar.d.ts +9 -0
  194. package/lib/components/progressBar/ProgressBar.js +26 -0
  195. package/lib/components/progressBar/_index.scss +63 -0
  196. package/lib/components/prompt/Prompt.d.ts +20 -0
  197. package/lib/components/prompt/Prompt.js +19 -0
  198. package/lib/components/prompt/_index.scss +70 -0
  199. package/lib/components/screenBlock/ScreenBlock.d.ts +6 -0
  200. package/lib/components/screenBlock/ScreenBlock.js +4 -0
  201. package/lib/components/screenBlock/_index.scss +17 -0
  202. package/lib/components/searchInput/SearchInput.d.ts +13 -0
  203. package/lib/components/searchInput/SearchInput.js +19 -0
  204. package/lib/components/searchInput/_index.scss +49 -0
  205. package/lib/components/searchResult/SearchResult.d.ts +21 -0
  206. package/lib/components/searchResult/SearchResult.js +33 -0
  207. package/lib/components/searchResult/SearchResult.test.d.ts +1 -0
  208. package/lib/components/searchResult/SearchResult.test.js +280 -0
  209. package/lib/components/searchResult/_index.scss +29 -0
  210. package/lib/components/searchSelect/SearchSelect.d.ts +11 -0
  211. package/lib/components/searchSelect/SearchSelect.js +78 -0
  212. package/lib/components/searchSelect/_index.scss +13 -0
  213. package/lib/components/setting/Setting.d.ts +12 -0
  214. package/lib/components/setting/Setting.js +24 -0
  215. package/lib/components/spacer/Spacer.d.ts +6 -0
  216. package/lib/components/spacer/Spacer.js +6 -0
  217. package/lib/components/spacer/_index.scss +20 -0
  218. package/lib/components/spacer/types.d.ts +1 -0
  219. package/lib/components/spacer/types.js +1 -0
  220. package/lib/components/spinner/Spinner.d.ts +7 -0
  221. package/lib/components/spinner/Spinner.js +15 -0
  222. package/lib/components/spinner/_index.scss +52 -0
  223. package/lib/components/spinner/types.d.ts +3 -0
  224. package/lib/components/spinner/types.js +2 -0
  225. package/lib/components/statList/StatList.d.ts +9 -0
  226. package/lib/components/statList/StatList.js +15 -0
  227. package/lib/components/statList/_index.scss +3 -0
  228. package/lib/components/status/Status.d.ts +6 -0
  229. package/lib/components/status/Status.js +24 -0
  230. package/lib/components/summary/Summary.d.ts +7 -0
  231. package/lib/components/summary/Summary.js +43 -0
  232. package/lib/components/summary/Summary.test.d.ts +1 -0
  233. package/lib/components/summary/Summary.test.js +544 -0
  234. package/lib/components/summary/SummaryCitation.d.ts +8 -0
  235. package/lib/components/summary/SummaryCitation.js +20 -0
  236. package/lib/components/summary/_index.scss +29 -0
  237. package/lib/components/table/Table.d.ts +44 -0
  238. package/lib/components/table/Table.js +117 -0
  239. package/lib/components/table/TableBulkActions.d.ts +7 -0
  240. package/lib/components/table/TableBulkActions.js +34 -0
  241. package/lib/components/table/TableCell.d.ts +5 -0
  242. package/lib/components/table/TableCell.js +4 -0
  243. package/lib/components/table/TableContent.d.ts +6 -0
  244. package/lib/components/table/TableContent.js +6 -0
  245. package/lib/components/table/TableHeaderCell.d.ts +9 -0
  246. package/lib/components/table/TableHeaderCell.js +8 -0
  247. package/lib/components/table/TablePager.d.ts +9 -0
  248. package/lib/components/table/TablePager.js +9 -0
  249. package/lib/components/table/TablePagination.d.ts +10 -0
  250. package/lib/components/table/TablePagination.js +18 -0
  251. package/lib/components/table/TableRowActions.d.ts +15 -0
  252. package/lib/components/table/TableRowActions.js +29 -0
  253. package/lib/components/table/_index.scss +70 -0
  254. package/lib/components/table/createPagination.d.ts +4 -0
  255. package/lib/components/table/createPagination.js +44 -0
  256. package/lib/components/table/createPagination.test.d.ts +1 -0
  257. package/lib/components/table/createPagination.test.js +32 -0
  258. package/lib/components/table/types.d.ts +1 -0
  259. package/lib/components/table/types.js +1 -0
  260. package/lib/components/tabs/Tab.d.ts +9 -0
  261. package/lib/components/tabs/Tab.js +27 -0
  262. package/lib/components/tabs/TabbedRoutes.d.ts +15 -0
  263. package/lib/components/tabs/TabbedRoutes.js +15 -0
  264. package/lib/components/tabs/Tabs.d.ts +10 -0
  265. package/lib/components/tabs/Tabs.js +8 -0
  266. package/lib/components/tabs/_index.scss +103 -0
  267. package/lib/components/tabs/types.d.ts +2 -0
  268. package/lib/components/tabs/types.js +1 -0
  269. package/lib/components/toggle/Toggle.d.ts +8 -0
  270. package/lib/components/toggle/Toggle.js +25 -0
  271. package/lib/components/toggle/_index.scss +55 -0
  272. package/lib/components/topicButton/TopicButton.d.ts +10 -0
  273. package/lib/components/topicButton/TopicButton.js +30 -0
  274. package/lib/components/topicButton/_index.scss +21 -0
  275. package/lib/components/typography/Text.d.ts +13 -0
  276. package/lib/components/typography/Text.js +24 -0
  277. package/lib/components/typography/TextColor.d.ts +9 -0
  278. package/lib/components/typography/TextColor.js +6 -0
  279. package/lib/components/typography/Title.d.ts +11 -0
  280. package/lib/components/typography/Title.js +20 -0
  281. package/lib/components/typography/_index.scss +3 -0
  282. package/lib/components/typography/_text.scss +150 -0
  283. package/lib/components/typography/_textColor.scss +15 -0
  284. package/lib/components/typography/_title.scss +68 -0
  285. package/lib/components/typography/types.d.ts +4 -0
  286. package/lib/components/typography/types.js +3 -0
  287. package/lib/index.d.ts +1 -0
  288. package/lib/index.js +1 -0
  289. package/lib/sassUtils/_animation.scss +1 -0
  290. package/lib/sassUtils/_app.scss +1 -0
  291. package/lib/sassUtils/_borders.scss +2 -0
  292. package/lib/sassUtils/_colors.scss +24 -0
  293. package/lib/sassUtils/_depth.scss +8 -0
  294. package/lib/sassUtils/_mixins.scss +11 -0
  295. package/lib/sassUtils/_shadows.scss +5 -0
  296. package/lib/sassUtils/_sizes.scss +10 -0
  297. package/lib/sassUtils/_typography.scss +20 -0
  298. package/lib/sassUtils/index.scss +10 -0
  299. package/lib/styles/index.css +3229 -0
  300. package/lib/utils/citations/applyCitationOrder.d.ts +1 -0
  301. package/lib/utils/citations/applyCitationOrder.js +19 -0
  302. package/lib/utils/citations/applyCitationOrder.test.d.ts +1 -0
  303. package/lib/utils/citations/applyCitationOrder.test.js +65 -0
  304. package/lib/utils/citations/extractCitations.d.ts +4 -0
  305. package/lib/utils/citations/extractCitations.js +26 -0
  306. package/lib/utils/citations/extractCitations.test.d.ts +1 -0
  307. package/lib/utils/citations/extractCitations.test.js +40 -0
  308. package/lib/utils/citations/index.d.ts +5 -0
  309. package/lib/utils/citations/index.js +5 -0
  310. package/lib/utils/citations/removeCitations.d.ts +1 -0
  311. package/lib/utils/citations/removeCitations.js +2 -0
  312. package/lib/utils/citations/removeCitations.test.d.ts +1 -0
  313. package/lib/utils/citations/removeCitations.test.js +11 -0
  314. package/lib/utils/citations/reorderCitations.d.ts +1 -0
  315. package/lib/utils/citations/reorderCitations.js +9 -0
  316. package/lib/utils/citations/reorderCitations.test.d.ts +1 -0
  317. package/lib/utils/citations/reorderCitations.test.js +6 -0
  318. package/lib/utils/citations/sanitizeCitations.d.ts +1 -0
  319. package/lib/utils/citations/sanitizeCitations.js +30 -0
  320. package/lib/utils/citations/sanitizeCitations.test.d.ts +1 -0
  321. package/lib/utils/citations/sanitizeCitations.test.js +11 -0
  322. package/lib/utils/createId.d.ts +1 -0
  323. package/lib/utils/createId.js +10 -0
  324. package/lib/utils/getTrackingProps.d.ts +7 -0
  325. package/lib/utils/getTrackingProps.js +18 -0
  326. package/lib/utils/index.d.ts +1 -0
  327. package/lib/utils/index.js +1 -0
  328. package/lib/utils/truncateString.d.ts +2 -0
  329. package/lib/utils/truncateString.js +20 -0
  330. package/lib/utils/truncateString.test.d.ts +1 -0
  331. package/lib/utils/truncateString.test.js +59 -0
  332. package/licenses.txt +9035 -0
  333. package/package.json +100 -0
@@ -0,0 +1,3229 @@
1
+ body,
2
+ textarea {
3
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
4
+ }
5
+
6
+ *,
7
+ *:before,
8
+ *:after {
9
+ box-sizing: border-box;
10
+ }
11
+
12
+ html,
13
+ body,
14
+ div,
15
+ span,
16
+ applet,
17
+ object,
18
+ iframe,
19
+ h1,
20
+ h2,
21
+ h3,
22
+ h4,
23
+ h5,
24
+ h6,
25
+ p,
26
+ blockquote,
27
+ pre,
28
+ a,
29
+ abbr,
30
+ acronym,
31
+ address,
32
+ big,
33
+ cite,
34
+ code,
35
+ del,
36
+ dfn,
37
+ em,
38
+ img,
39
+ ins,
40
+ kbd,
41
+ q,
42
+ s,
43
+ samp,
44
+ small,
45
+ strike,
46
+ strong,
47
+ sub,
48
+ sup,
49
+ tt,
50
+ var,
51
+ b,
52
+ u,
53
+ i,
54
+ center,
55
+ dl,
56
+ dt,
57
+ dd,
58
+ ol,
59
+ ul,
60
+ li,
61
+ fieldset,
62
+ form,
63
+ label,
64
+ legend,
65
+ table,
66
+ caption,
67
+ tbody,
68
+ tfoot,
69
+ thead,
70
+ tr,
71
+ th,
72
+ td,
73
+ article,
74
+ aside,
75
+ canvas,
76
+ details,
77
+ embed,
78
+ figure,
79
+ figcaption,
80
+ footer,
81
+ header,
82
+ hgroup,
83
+ menu,
84
+ nav,
85
+ output,
86
+ ruby,
87
+ section,
88
+ summary,
89
+ time,
90
+ mark,
91
+ audio,
92
+ video {
93
+ margin: 0;
94
+ padding: 0;
95
+ border: none;
96
+ vertical-align: baseline;
97
+ }
98
+
99
+ h1,
100
+ h2,
101
+ h3,
102
+ h4,
103
+ h5,
104
+ h6,
105
+ p {
106
+ font-family: inherit;
107
+ font-weight: inherit;
108
+ font-size: inherit;
109
+ }
110
+
111
+ /* HTML5 display-role reset for older browsers */
112
+ article,
113
+ aside,
114
+ details,
115
+ figcaption,
116
+ figure,
117
+ footer,
118
+ header,
119
+ hgroup,
120
+ menu,
121
+ nav,
122
+ section {
123
+ display: block;
124
+ }
125
+
126
+ a[href],
127
+ button,
128
+ [role=button] {
129
+ cursor: pointer;
130
+ }
131
+
132
+ button {
133
+ background: none;
134
+ border: none;
135
+ padding: 0;
136
+ margin: 0;
137
+ color: inherit;
138
+ border-radius: 0;
139
+ font-size: inherit;
140
+ }
141
+
142
+ input {
143
+ margin: 0;
144
+ padding: 0;
145
+ }
146
+
147
+ input:disabled {
148
+ opacity: 1; /* required on iOS */
149
+ }
150
+
151
+ ol,
152
+ ul {
153
+ list-style: none;
154
+ }
155
+
156
+ blockquote,
157
+ q {
158
+ quotes: none;
159
+ }
160
+
161
+ blockquote:before,
162
+ blockquote:after,
163
+ q:before,
164
+ q:after {
165
+ content: "";
166
+ }
167
+
168
+ table {
169
+ border-collapse: collapse;
170
+ border-spacing: 0;
171
+ }
172
+
173
+ hr {
174
+ margin: 0;
175
+ }
176
+
177
+ fieldset {
178
+ min-inline-size: auto;
179
+ }
180
+
181
+ .vuiAccordionHeader {
182
+ font-size: 14px;
183
+ border-bottom: 1px solid #e3e4f3;
184
+ width: 100%;
185
+ padding: 8px 0;
186
+ color: #69707d;
187
+ }
188
+ .vuiAccordionHeader:hover {
189
+ color: #264cd6;
190
+ background-color: #edf5ff;
191
+ text-decoration: underline;
192
+ }
193
+
194
+ .vuiAccordionHeader--isOpen {
195
+ color: #2c313a;
196
+ border-bottom-color: #cbcdde;
197
+ font-weight: 600;
198
+ }
199
+
200
+ .vuiAccordionHeader__title {
201
+ text-align: left;
202
+ }
203
+
204
+ .vuiAppContent {
205
+ width: 100%;
206
+ max-width: 1200px;
207
+ }
208
+
209
+ .vuiAppContent--fullWidth {
210
+ max-width: 100%;
211
+ }
212
+
213
+ .vuiAppContent--paddingNone {
214
+ padding: 0;
215
+ }
216
+
217
+ .vuiAppContent--paddingXs {
218
+ padding: 8px 10px;
219
+ }
220
+
221
+ .vuiAppContent--paddingS {
222
+ padding: 12px 15px;
223
+ }
224
+
225
+ .vuiAppContent--paddingM {
226
+ padding: 16px 20px;
227
+ }
228
+
229
+ .vuiAppContent--paddingL {
230
+ padding: 24px 30px;
231
+ }
232
+
233
+ .vuiAppContent--paddingXl {
234
+ padding: 32px 40px;
235
+ }
236
+
237
+ .vuiAppHeader {
238
+ position: fixed;
239
+ display: flex;
240
+ align-items: center;
241
+ width: 100vw;
242
+ height: 46px;
243
+ background-color: #ffffff;
244
+ padding: 8px 16px;
245
+ z-index: 8;
246
+ border-bottom: 1px solid #cbcdde;
247
+ }
248
+
249
+ .vuiAppHeader__inner {
250
+ flex-grow: 1;
251
+ }
252
+
253
+ .vuiAppLayout {
254
+ display: flex;
255
+ flex-direction: row;
256
+ padding-top: 46px;
257
+ height: 100vh;
258
+ }
259
+
260
+ .vuiAppLayout--full {
261
+ padding-top: 0;
262
+ }
263
+
264
+ .vuiAppLayout__sideNav {
265
+ flex-shrink: 0;
266
+ overflow-y: auto;
267
+ }
268
+
269
+ .vuiAppLayout__content {
270
+ flex-grow: 1;
271
+ display: flex;
272
+ flex-direction: column;
273
+ align-items: center;
274
+ overflow-y: auto;
275
+ }
276
+
277
+ .vuiAppSideNav {
278
+ width: 240px;
279
+ overflow-x: hidden;
280
+ transition: all 0.2s;
281
+ line-height: 1;
282
+ }
283
+
284
+ .vuiAppSideNav__inner {
285
+ width: 240px;
286
+ padding: 28px 32px 32px 33px;
287
+ margin-bottom: 160px;
288
+ transition: all 0.2s;
289
+ }
290
+
291
+ .vuiAppSideNavContent {
292
+ opacity: 1;
293
+ transition: all 0.2s;
294
+ }
295
+
296
+ .vuiAppSideNavContent-isHidden {
297
+ pointer-events: none;
298
+ opacity: 0;
299
+ }
300
+
301
+ .vuiAppSideNav-isCollapsed {
302
+ width: 60px;
303
+ height: 100%;
304
+ overflow-y: hidden;
305
+ }
306
+ .vuiAppSideNav-isCollapsed .vuiAppSideNav__inner {
307
+ padding-left: 16px;
308
+ }
309
+
310
+ .vuiAppSideNavCollapseButton {
311
+ display: block;
312
+ color: #69707d;
313
+ font-size: 14px;
314
+ text-decoration: none;
315
+ padding: 0 16px;
316
+ margin-left: -40px;
317
+ margin-bottom: 16px;
318
+ }
319
+ .vuiAppSideNavCollapseButton:hover {
320
+ color: #264cd6;
321
+ text-decoration: underline;
322
+ }
323
+
324
+ .vuiAppSideNavExpandButton {
325
+ margin-top: -4px;
326
+ margin-bottom: 6px;
327
+ }
328
+
329
+ .vuiAppSideNavLink {
330
+ overflow: hidden;
331
+ text-overflow: ellipsis;
332
+ white-space: nowrap;
333
+ display: block;
334
+ color: #2c313a;
335
+ font-size: 14px;
336
+ padding: 0 16px;
337
+ margin-left: -16px;
338
+ padding-top: 6px;
339
+ padding-bottom: 6px;
340
+ text-decoration: none;
341
+ }
342
+ .vuiAppSideNavLink * {
343
+ overflow: hidden;
344
+ text-overflow: ellipsis;
345
+ white-space: nowrap;
346
+ }
347
+ .vuiAppSideNavLink:hover {
348
+ background-color: #edf5ff;
349
+ border-radius: 16px;
350
+ color: #264cd6;
351
+ text-decoration: underline;
352
+ }
353
+
354
+ .vuiAppSideNavLink--active {
355
+ font-weight: 600;
356
+ text-decoration: underline;
357
+ }
358
+
359
+ .vuiAppSideNavSections {
360
+ margin-top: 24px;
361
+ }
362
+
363
+ .vuiAppSideNavContent-isHidden .vuiAppSideNavSections {
364
+ margin-top: 8px;
365
+ }
366
+
367
+ .vuiAppSideNavSection + .vuiAppSideNavSection {
368
+ margin-top: 24px;
369
+ }
370
+
371
+ .vuiAppSideNavSection__title {
372
+ color: #2c313a;
373
+ font-weight: 600;
374
+ font-size: 14px;
375
+ }
376
+
377
+ .vuiAppSideNavSection__items {
378
+ margin-top: 12px;
379
+ }
380
+ .vuiAppSideNavSection__items > .vuiAppSideNavLink:first-child {
381
+ margin-top: -6px;
382
+ }
383
+ .vuiAppSideNavSection__items > .vuiAppSideNavLink:last-child {
384
+ margin-bottom: -6px;
385
+ }
386
+
387
+ .vuiAppSideNavTree {
388
+ margin-top: -4px;
389
+ }
390
+
391
+ .vuiAppSideNavTreeSection {
392
+ position: relative;
393
+ }
394
+
395
+ .vuiAppSideNavTreeToggleButton {
396
+ position: absolute;
397
+ top: 0;
398
+ right: -30px;
399
+ }
400
+
401
+ .vuiAppSideNavTreeChildren {
402
+ margin-left: 20px;
403
+ }
404
+
405
+ .vuiAppSideNavTreeSection__subTitle {
406
+ display: block;
407
+ color: #2c313a;
408
+ font-size: 14px;
409
+ padding: 0 16px;
410
+ margin-left: -16px;
411
+ padding-top: 6px;
412
+ padding-bottom: 6px;
413
+ font-size: 12px;
414
+ font-weight: 600;
415
+ color: #69707d;
416
+ }
417
+
418
+ .vuiAccountMenu {
419
+ min-width: 260px;
420
+ }
421
+
422
+ .vuiAccounrMenuHeader {
423
+ padding: 16px;
424
+ border-bottom: 1px solid #cbcdde;
425
+ }
426
+
427
+ .vuiAccountMenuHeaderItem__title {
428
+ font-size: 12px;
429
+ font-weight: 600;
430
+ color: #2c313a;
431
+ }
432
+
433
+ .vuiAccountMenuHeaderItem__value {
434
+ font-size: 14px;
435
+ color: #2c313a;
436
+ margin-top: 4px;
437
+ }
438
+
439
+ .vuiBadge {
440
+ display: inline-block;
441
+ font-size: 12px;
442
+ line-height: 1;
443
+ padding: 4px 8px;
444
+ border-radius: 12px;
445
+ font-family: inherit;
446
+ white-space: nowrap;
447
+ text-decoration: none;
448
+ }
449
+
450
+ .vuiBadge--clickable {
451
+ cursor: pointer;
452
+ }
453
+
454
+ .vuiBadge--accent {
455
+ color: #551edf !important;
456
+ background-color: rgba(85, 30, 223, 0.1);
457
+ border: 1px solid rgba(85, 30, 223, 0.1);
458
+ transition: all 0.2s;
459
+ }
460
+ .vuiBadge--accent.vuiBadge--clickable:hover {
461
+ border-color: #551edf;
462
+ text-decoration: none;
463
+ }
464
+
465
+ .vuiBadge--primary {
466
+ color: #264cd6 !important;
467
+ background-color: rgba(38, 76, 214, 0.1);
468
+ border: 1px solid rgba(38, 76, 214, 0.1);
469
+ transition: all 0.2s;
470
+ }
471
+ .vuiBadge--primary.vuiBadge--clickable:hover {
472
+ border-color: #264cd6;
473
+ text-decoration: none;
474
+ }
475
+
476
+ .vuiBadge--success {
477
+ color: #04821f !important;
478
+ background-color: rgba(4, 130, 31, 0.1);
479
+ border: 1px solid rgba(4, 130, 31, 0.1);
480
+ transition: all 0.2s;
481
+ }
482
+ .vuiBadge--success.vuiBadge--clickable:hover {
483
+ border-color: #04821f;
484
+ text-decoration: none;
485
+ }
486
+
487
+ .vuiBadge--warning {
488
+ color: #965a15 !important;
489
+ background-color: rgba(150, 90, 21, 0.1);
490
+ border: 1px solid rgba(150, 90, 21, 0.1);
491
+ transition: all 0.2s;
492
+ }
493
+ .vuiBadge--warning.vuiBadge--clickable:hover {
494
+ border-color: #965a15;
495
+ text-decoration: none;
496
+ }
497
+
498
+ .vuiBadge--danger {
499
+ color: #c41535 !important;
500
+ background-color: rgba(196, 21, 53, 0.1);
501
+ border: 1px solid rgba(196, 21, 53, 0.1);
502
+ transition: all 0.2s;
503
+ }
504
+ .vuiBadge--danger.vuiBadge--clickable:hover {
505
+ border-color: #c41535;
506
+ text-decoration: none;
507
+ }
508
+
509
+ .vuiBadge--neutral {
510
+ color: #2c313a !important;
511
+ background-color: #f3f7fb;
512
+ border: 1px solid rgba(44, 49, 58, 0.1);
513
+ transition: all 0.2s;
514
+ }
515
+ .vuiBadge--neutral.vuiBadge--clickable:hover {
516
+ border-color: #2c313a;
517
+ text-decoration: none;
518
+ }
519
+
520
+ .vuiBaseButtonIconContainer {
521
+ line-height: 0;
522
+ }
523
+
524
+ .vuiBaseButtonLinkWrapper {
525
+ text-decoration: none;
526
+ }
527
+ .vuiBaseButtonLinkWrapper:hover {
528
+ text-decoration: none;
529
+ }
530
+
531
+ .vuiBaseButtonLinkWrapper--fullWidth {
532
+ width: 100%;
533
+ }
534
+
535
+ .vuiBaseButton {
536
+ white-space: nowrap;
537
+ border-radius: 4px;
538
+ display: inline-flex;
539
+ align-items: center;
540
+ font-weight: 500;
541
+ box-shadow: rgba(60, 64, 67, 0.3) 0px 0px 0px 0px, rgba(60, 64, 67, 0.15) 0px 0px 0px 0px;
542
+ transition: all 0.2s;
543
+ line-height: 1;
544
+ cursor: pointer;
545
+ }
546
+
547
+ .vuiBaseButton--alignLeft {
548
+ justify-content: flex-start;
549
+ }
550
+
551
+ .vuiBaseButton--alignCenter {
552
+ justify-content: center;
553
+ }
554
+
555
+ .vuiBaseButton--alignRight {
556
+ justify-content: flex-end;
557
+ }
558
+
559
+ .vuiBaseButton-isInert,
560
+ .vuiBaseButton-isDisabled {
561
+ cursor: default;
562
+ pointer-events: none;
563
+ }
564
+
565
+ .vuiBaseButton-isDisabled {
566
+ opacity: 0.5;
567
+ }
568
+
569
+ .vuiBaseButton--left .vuiBaseButtonIconContainer {
570
+ margin-right: 8px;
571
+ }
572
+
573
+ .vuiBaseButton--right {
574
+ flex-direction: row-reverse;
575
+ }
576
+ .vuiBaseButton--right .vuiBaseButtonIconContainer {
577
+ margin-left: 8px;
578
+ margin-right: 0;
579
+ }
580
+
581
+ .vuiBaseButton--fullWidth {
582
+ width: 100%;
583
+ }
584
+
585
+ .vuiBaseButton--xs {
586
+ font-size: 14px;
587
+ padding: 4px 8px;
588
+ height: 24px;
589
+ }
590
+
591
+ .vuiBaseButton--s {
592
+ font-size: 14px;
593
+ padding: 6px 8px;
594
+ height: 28px;
595
+ }
596
+
597
+ .vuiBaseButton--m {
598
+ font-size: 16px;
599
+ padding: 8px 16px;
600
+ height: 34px;
601
+ }
602
+
603
+ .vuiBaseButton--l {
604
+ font-size: 16px;
605
+ padding: 12px 24px;
606
+ height: 47px;
607
+ }
608
+
609
+ .vuiButtonPrimary:hover {
610
+ box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
611
+ }
612
+
613
+ .vuiButtonPrimary--accent {
614
+ color: #ffffff;
615
+ background-color: #551edf;
616
+ border: 1px solid #551edf;
617
+ }
618
+ .vuiButtonPrimary--accent.vuiButtonPrimary-isSelected {
619
+ box-shadow: inset rgba(50, 50, 93, 0.25) 0px 6px 8px -2px, inset rgba(0, 0, 0, 0.3) 0px 3px 4px -3px;
620
+ }
621
+
622
+ .vuiButtonPrimary--primary {
623
+ color: #ffffff;
624
+ background-color: #264cd6;
625
+ border: 1px solid #264cd6;
626
+ }
627
+ .vuiButtonPrimary--primary.vuiButtonPrimary-isSelected {
628
+ box-shadow: inset rgba(50, 50, 93, 0.25) 0px 6px 8px -2px, inset rgba(0, 0, 0, 0.3) 0px 3px 4px -3px;
629
+ }
630
+
631
+ .vuiButtonPrimary--success {
632
+ color: #ffffff;
633
+ background-color: #04821f;
634
+ border: 1px solid #04821f;
635
+ }
636
+ .vuiButtonPrimary--success.vuiButtonPrimary-isSelected {
637
+ box-shadow: inset rgba(50, 50, 93, 0.25) 0px 6px 8px -2px, inset rgba(0, 0, 0, 0.3) 0px 3px 4px -3px;
638
+ }
639
+
640
+ .vuiButtonPrimary--danger {
641
+ color: #ffffff;
642
+ background-color: #c41535;
643
+ border: 1px solid #c41535;
644
+ }
645
+ .vuiButtonPrimary--danger.vuiButtonPrimary-isSelected {
646
+ box-shadow: inset rgba(50, 50, 93, 0.25) 0px 6px 8px -2px, inset rgba(0, 0, 0, 0.3) 0px 3px 4px -3px;
647
+ }
648
+
649
+ .vuiButtonPrimary--warning {
650
+ color: #ffffff;
651
+ background-color: #965a15;
652
+ border: 1px solid #965a15;
653
+ }
654
+ .vuiButtonPrimary--warning.vuiButtonPrimary-isSelected {
655
+ box-shadow: inset rgba(50, 50, 93, 0.25) 0px 6px 8px -2px, inset rgba(0, 0, 0, 0.3) 0px 3px 4px -3px;
656
+ }
657
+
658
+ .vuiButtonPrimary--neutral {
659
+ color: #2c313a;
660
+ background-color: rgba(44, 49, 58, 0.1);
661
+ border: 1px solid rgba(44, 49, 58, 0.1);
662
+ }
663
+ .vuiButtonPrimary--neutral.vuiButtonPrimary-isSelected {
664
+ box-shadow: inset rgba(50, 50, 93, 0.25) 0px 6px 8px -2px, inset rgba(0, 0, 0, 0.3) 0px 3px 4px -3px;
665
+ }
666
+
667
+ .vuiButtonPrimary--subdued {
668
+ color: #69707d;
669
+ background-color: rgba(105, 112, 125, 0.1);
670
+ border: 1px solid rgba(105, 112, 125, 0.1);
671
+ }
672
+ .vuiButtonPrimary--subdued.vuiButtonPrimary-isSelected {
673
+ box-shadow: inset rgba(50, 50, 93, 0.25) 0px 6px 8px -2px, inset rgba(0, 0, 0, 0.3) 0px 3px 4px -3px;
674
+ }
675
+
676
+ .vuiButtonSecondary:hover {
677
+ box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
678
+ }
679
+
680
+ .vuiButtonSecondary--solid {
681
+ background-color: #ffffff;
682
+ }
683
+
684
+ .vuiButtonSecondary--accent {
685
+ border: 1px solid rgba(85, 30, 223, 0.5);
686
+ color: #551edf;
687
+ }
688
+ .vuiButtonSecondary--accent.vuiButtonSecondary-isSelected {
689
+ box-shadow: inset rgba(0, 0, 0, 0.1) 0px 2px 2px;
690
+ }
691
+
692
+ .vuiButtonSecondary--primary {
693
+ border: 1px solid rgba(38, 76, 214, 0.5);
694
+ color: #264cd6;
695
+ }
696
+ .vuiButtonSecondary--primary.vuiButtonSecondary-isSelected {
697
+ box-shadow: inset rgba(0, 0, 0, 0.1) 0px 2px 2px;
698
+ }
699
+
700
+ .vuiButtonSecondary--success {
701
+ border: 1px solid rgba(4, 130, 31, 0.5);
702
+ color: #04821f;
703
+ }
704
+ .vuiButtonSecondary--success.vuiButtonSecondary-isSelected {
705
+ box-shadow: inset rgba(0, 0, 0, 0.1) 0px 2px 2px;
706
+ }
707
+
708
+ .vuiButtonSecondary--danger {
709
+ border: 1px solid rgba(196, 21, 53, 0.5);
710
+ color: #c41535;
711
+ }
712
+ .vuiButtonSecondary--danger.vuiButtonSecondary-isSelected {
713
+ box-shadow: inset rgba(0, 0, 0, 0.1) 0px 2px 2px;
714
+ }
715
+
716
+ .vuiButtonSecondary--warning {
717
+ border: 1px solid rgba(150, 90, 21, 0.5);
718
+ color: #965a15;
719
+ }
720
+ .vuiButtonSecondary--warning.vuiButtonSecondary-isSelected {
721
+ box-shadow: inset rgba(0, 0, 0, 0.1) 0px 2px 2px;
722
+ }
723
+
724
+ .vuiButtonSecondary--neutral {
725
+ border: 1px solid #cbcdde;
726
+ color: #2c313a;
727
+ }
728
+ .vuiButtonSecondary--neutral.vuiButtonSecondary-isSelected {
729
+ box-shadow: inset rgba(0, 0, 0, 0.1) 0px 2px 2px;
730
+ }
731
+
732
+ .vuiButtonSecondary--subdued {
733
+ border: 1px solid #e3e4f3;
734
+ color: #69707d;
735
+ }
736
+ .vuiButtonSecondary--subdued.vuiButtonSecondary-isSelected {
737
+ box-shadow: inset rgba(0, 0, 0, 0.1) 0px 2px 2px;
738
+ }
739
+
740
+ .vuiButtonTertiary {
741
+ padding-left: 8px;
742
+ padding-right: 8px;
743
+ }
744
+ .vuiButtonTertiary:hover {
745
+ text-decoration: underline;
746
+ }
747
+
748
+ .vuiButtonTertiary-noPadding {
749
+ padding: 0;
750
+ }
751
+
752
+ .vuiButtonTertiary--accent {
753
+ color: #551edf;
754
+ }
755
+ .vuiButtonTertiary--accent.vuiButtonTertiary-isSelected {
756
+ background-color: rgba(85, 30, 223, 0.1);
757
+ }
758
+
759
+ .vuiButtonTertiary--primary {
760
+ color: #264cd6;
761
+ }
762
+ .vuiButtonTertiary--primary.vuiButtonTertiary-isSelected {
763
+ background-color: rgba(38, 76, 214, 0.1);
764
+ }
765
+
766
+ .vuiButtonTertiary--success {
767
+ color: #04821f;
768
+ }
769
+ .vuiButtonTertiary--success.vuiButtonTertiary-isSelected {
770
+ background-color: rgba(4, 130, 31, 0.1);
771
+ }
772
+
773
+ .vuiButtonTertiary--danger {
774
+ color: #c41535;
775
+ }
776
+ .vuiButtonTertiary--danger.vuiButtonTertiary-isSelected {
777
+ background-color: rgba(196, 21, 53, 0.1);
778
+ }
779
+
780
+ .vuiButtonTertiary--warning {
781
+ color: #965a15;
782
+ }
783
+ .vuiButtonTertiary--warning.vuiButtonTertiary-isSelected {
784
+ background-color: rgba(150, 90, 21, 0.1);
785
+ }
786
+
787
+ .vuiButtonTertiary--neutral {
788
+ color: #2c313a;
789
+ }
790
+ .vuiButtonTertiary--neutral.vuiButtonTertiary-isSelected {
791
+ background-color: rgba(44, 49, 58, 0.1);
792
+ }
793
+
794
+ .vuiButtonTertiary--subdued {
795
+ color: #69707d;
796
+ }
797
+ .vuiButtonTertiary--subdued.vuiButtonTertiary-isSelected {
798
+ background-color: rgba(105, 112, 125, 0.1);
799
+ }
800
+
801
+ .vuiIconButton {
802
+ display: inline-block;
803
+ border-radius: 4px;
804
+ padding: 4px;
805
+ line-height: 1;
806
+ }
807
+
808
+ .vuiIconButton--accent {
809
+ color: #551edf;
810
+ background-color: rgba(85, 30, 223, 0);
811
+ }
812
+ .vuiIconButton--accent:hover {
813
+ background-color: rgba(85, 30, 223, 0.1);
814
+ }
815
+
816
+ .vuiIconButton--primary {
817
+ color: #264cd6;
818
+ background-color: rgba(38, 76, 214, 0);
819
+ }
820
+ .vuiIconButton--primary:hover {
821
+ background-color: rgba(38, 76, 214, 0.1);
822
+ }
823
+
824
+ .vuiIconButton--success {
825
+ color: #04821f;
826
+ background-color: rgba(4, 130, 31, 0);
827
+ }
828
+ .vuiIconButton--success:hover {
829
+ background-color: rgba(4, 130, 31, 0.1);
830
+ }
831
+
832
+ .vuiIconButton--warning {
833
+ color: #965a15;
834
+ background-color: rgba(150, 90, 21, 0);
835
+ }
836
+ .vuiIconButton--warning:hover {
837
+ background-color: rgba(150, 90, 21, 0.1);
838
+ }
839
+
840
+ .vuiIconButton--danger {
841
+ color: #c41535;
842
+ background-color: rgba(196, 21, 53, 0);
843
+ }
844
+ .vuiIconButton--danger:hover {
845
+ background-color: rgba(196, 21, 53, 0.1);
846
+ }
847
+
848
+ .vuiIconButton--neutral {
849
+ color: #2c313a;
850
+ background-color: rgba(44, 49, 58, 0);
851
+ }
852
+ .vuiIconButton--neutral:hover {
853
+ background-color: rgba(44, 49, 58, 0.1);
854
+ }
855
+
856
+ .vuiIconButton--subdued {
857
+ color: #69707d;
858
+ background-color: rgba(105, 112, 125, 0);
859
+ }
860
+ .vuiIconButton--subdued:hover {
861
+ background-color: rgba(105, 112, 125, 0.1);
862
+ }
863
+
864
+ .vuiIconButton--xs {
865
+ padding: 4px;
866
+ height: 24px;
867
+ }
868
+
869
+ .vuiIconButton--s {
870
+ padding: 6px;
871
+ height: 28px;
872
+ }
873
+
874
+ .vuiIconButton--m {
875
+ padding: 8px;
876
+ height: 34px;
877
+ }
878
+
879
+ .vuiCallout {
880
+ width: 100%;
881
+ }
882
+
883
+ .vuiCallout--m {
884
+ padding: 16px;
885
+ }
886
+ .vuiCallout--m .vuiCallout__closeButton {
887
+ margin: -8px;
888
+ }
889
+
890
+ .vuiCallout--s {
891
+ padding: 12px;
892
+ }
893
+ .vuiCallout--s .vuiCallout__closeButton {
894
+ margin: -6px;
895
+ }
896
+
897
+ .vuiCallout--accent {
898
+ background-color: rgba(85, 30, 223, 0.1);
899
+ }
900
+
901
+ .vuiCallout--primary {
902
+ background-color: #d9e2ff;
903
+ }
904
+
905
+ .vuiCallout--success {
906
+ background-color: rgba(4, 130, 31, 0.1);
907
+ }
908
+
909
+ .vuiCallout--warning {
910
+ background-color: rgba(150, 90, 21, 0.1);
911
+ }
912
+
913
+ .vuiCallout--danger {
914
+ background-color: #fae9eb;
915
+ }
916
+
917
+ .vuiCallout--neutral {
918
+ background-color: #f3f7fb;
919
+ }
920
+
921
+ .vuiCard {
922
+ display: flex;
923
+ flex-direction: column;
924
+ background-color: #ffffff;
925
+ border-radius: 8px;
926
+ box-shadow: rgba(50, 50, 93, 0.25) 0px 0 0 0, rgba(0, 0, 0, 0.16) 0px 1px 4px;
927
+ width: 100%;
928
+ height: 100%;
929
+ transition: box-shadow 0.2s;
930
+ overflow: hidden;
931
+ }
932
+
933
+ .vuiCard--interactive:hover {
934
+ box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
935
+ z-index: 1;
936
+ }
937
+
938
+ .vuiCard--ungrouped {
939
+ height: auto;
940
+ }
941
+
942
+ .vuiCard--center {
943
+ align-items: center;
944
+ text-align: center;
945
+ }
946
+ .vuiCard--center .vuiCard__header,
947
+ .vuiCard--center .vuiCard__body,
948
+ .vuiCard--center .vuiCard__footer {
949
+ align-items: center;
950
+ text-align: center;
951
+ }
952
+
953
+ .vuiCard--left {
954
+ align-items: flex-start;
955
+ text-align: left;
956
+ }
957
+ .vuiCard--left .vuiCard__header,
958
+ .vuiCard--left .vuiCard__body,
959
+ .vuiCard--left .vuiCard__footer {
960
+ align-items: flex-start;
961
+ text-align: left;
962
+ }
963
+
964
+ .vuiCard__header {
965
+ display: flex;
966
+ flex-direction: column;
967
+ width: 100%;
968
+ padding: 16px 24px;
969
+ }
970
+
971
+ .vuiCard__body {
972
+ display: flex;
973
+ flex-direction: column;
974
+ width: 100%;
975
+ border-top: 1px solid #e3e4f3;
976
+ padding: 16px 24px;
977
+ flex-grow: 1;
978
+ }
979
+
980
+ .vuiCard__footer {
981
+ display: flex;
982
+ flex-direction: column;
983
+ width: 100%;
984
+ padding: 0 24px 16px;
985
+ }
986
+
987
+ .vuiCard--s .vuiCard__header,
988
+ .vuiCard--s .vuiCard__body {
989
+ padding: 16px 24px;
990
+ }
991
+ .vuiCard--s .vuiCard__footer {
992
+ padding: 0 24px 16px;
993
+ }
994
+
995
+ .vuiCard--m .vuiCard__header,
996
+ .vuiCard--m .vuiCard__body {
997
+ padding: 24px 32px;
998
+ }
999
+ .vuiCard--m .vuiCard__footer {
1000
+ padding: 0 32px 24px;
1001
+ }
1002
+
1003
+ .vuiCard--l .vuiCard__header,
1004
+ .vuiCard--l .vuiCard__body {
1005
+ padding: 32px 40px;
1006
+ }
1007
+ .vuiCard--l .vuiCard__footer {
1008
+ padding: 0 40px 32px;
1009
+ }
1010
+
1011
+ .vuiCard--highlight {
1012
+ border: 2px solid #551edf;
1013
+ }
1014
+ .vuiCard--highlight .vuiCard__header {
1015
+ background-color: #eadfff;
1016
+ }
1017
+ .vuiCard--highlight .vuiCard__body {
1018
+ border-top: #eadfff;
1019
+ }
1020
+
1021
+ .vuiChatTurn {
1022
+ position: relative;
1023
+ left: 0;
1024
+ box-shadow: rgba(50, 50, 93, 0.25) 0px 0 0 0, rgba(0, 0, 0, 0.16) 0px 1px 4px;
1025
+ background-color: #ffffff;
1026
+ padding: 24px 12px 24px 24px;
1027
+ margin-right: 4px;
1028
+ transition: all 0.2s;
1029
+ }
1030
+ .vuiChatTurn:hover {
1031
+ box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
1032
+ z-index: 1;
1033
+ left: 4px;
1034
+ }
1035
+
1036
+ .vuiChatTurn + .vuiChatTurn {
1037
+ margin-top: 1px;
1038
+ }
1039
+
1040
+ .vuiChatQuestion {
1041
+ color: #551edf;
1042
+ font-weight: 600;
1043
+ font-size: 14px;
1044
+ margin-bottom: 8px;
1045
+ }
1046
+
1047
+ .vuiChatQuestion--error {
1048
+ color: #c41535;
1049
+ }
1050
+
1051
+ .vuiChat__inspectButton {
1052
+ margin-top: -4px;
1053
+ }
1054
+
1055
+ .vuiChatAnswer {
1056
+ color: #000;
1057
+ }
1058
+
1059
+ .vuiChatButton,
1060
+ .vuiChat {
1061
+ position: fixed;
1062
+ right: 4px;
1063
+ bottom: 4px;
1064
+ z-index: 9;
1065
+ }
1066
+
1067
+ .vuiChatButton-isHidden,
1068
+ .vuiChat--closed {
1069
+ visibility: hidden;
1070
+ opacity: 0;
1071
+ }
1072
+
1073
+ .vuiChatButton {
1074
+ padding: 8px 12px;
1075
+ font-size: 14px;
1076
+ color: #2c313a;
1077
+ background-color: #d9e2ff;
1078
+ border: 1px solid #cbcdde;
1079
+ box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
1080
+ transition: all 0.2s;
1081
+ animation: popUp 0.4s cubic-bezier(0.5, 0, 0.5, 1) 1;
1082
+ }
1083
+ .vuiChatButton:hover {
1084
+ box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
1085
+ translate: translateY(-20px);
1086
+ }
1087
+
1088
+ @keyframes popUp {
1089
+ 0% {
1090
+ transform: translateY(40px);
1091
+ }
1092
+ 50% {
1093
+ transform: translateY(-10px);
1094
+ }
1095
+ 100% {
1096
+ transform: translateY(0);
1097
+ }
1098
+ }
1099
+ .vuiChat {
1100
+ display: flex;
1101
+ flex-direction: column;
1102
+ width: 100%;
1103
+ max-width: 420px;
1104
+ border-radius: 8px;
1105
+ overflow: hidden;
1106
+ border: 1px solid #cbcdde;
1107
+ background-color: #f3f7fb;
1108
+ }
1109
+ @media screen and (max-height: 600px) {
1110
+ .vuiChat {
1111
+ bottom: 4px;
1112
+ height: calc(100vh - 2 * 4px);
1113
+ }
1114
+ .vuiChat .vuiChat__conversation {
1115
+ max-height: 100%;
1116
+ }
1117
+ }
1118
+ @media screen and (max-width: 600px) {
1119
+ .vuiChat {
1120
+ right: 4px;
1121
+ width: calc(100vw - 2 * 4px);
1122
+ max-width: 100% !important;
1123
+ }
1124
+ }
1125
+
1126
+ .vuiChat--tall {
1127
+ bottom: 4px;
1128
+ height: calc(100vh - 2 * 4px);
1129
+ }
1130
+ .vuiChat--tall .vuiChat__conversation {
1131
+ max-height: 100%;
1132
+ }
1133
+
1134
+ .vuiChat--fullScreen {
1135
+ height: calc(100vh - 2 * 4px);
1136
+ width: calc(100vw - 2 * 4px);
1137
+ max-width: 100% !important;
1138
+ }
1139
+ .vuiChat--fullScreen .vuiChat__conversation {
1140
+ max-height: 100%;
1141
+ }
1142
+
1143
+ .vuiChat__header {
1144
+ padding: 8px 12px;
1145
+ font-size: 14px;
1146
+ color: #2c313a;
1147
+ background-color: #d9e2ff;
1148
+ box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
1149
+ z-index: 2;
1150
+ }
1151
+
1152
+ .vuiChat__conversation {
1153
+ flex-grow: 1;
1154
+ max-height: 400px;
1155
+ overflow-y: auto;
1156
+ }
1157
+
1158
+ .vuiChat__introduction {
1159
+ padding: 16px 24px 0;
1160
+ font-size: 14px;
1161
+ color: #000;
1162
+ }
1163
+
1164
+ .vuiChat__turns {
1165
+ font-size: 14px;
1166
+ }
1167
+
1168
+ .vuiChat__conversationActions {
1169
+ padding: 12px;
1170
+ }
1171
+
1172
+ .vuiChat__input {
1173
+ border-top: 1px solid #e3e4f3;
1174
+ padding: 8px 12px;
1175
+ }
1176
+
1177
+ .vuiChatPanel {
1178
+ position: absolute;
1179
+ z-index: 5;
1180
+ top: 4px;
1181
+ left: 4px;
1182
+ right: 4px;
1183
+ bottom: 4px;
1184
+ padding: 4px 12px;
1185
+ overflow-y: auto;
1186
+ background-color: #ffffff;
1187
+ border: 1px solid #cbcdde;
1188
+ box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
1189
+ }
1190
+
1191
+ .vuiCodeContainer {
1192
+ position: relative;
1193
+ border-left: 4px solid #cbcdde;
1194
+ max-height: 480px;
1195
+ }
1196
+
1197
+ .vuiCodeContainer--fullHeight {
1198
+ max-height: 100%;
1199
+ }
1200
+
1201
+ .vuiCodeCopyButton {
1202
+ position: absolute;
1203
+ right: 4px;
1204
+ top: 4px;
1205
+ }
1206
+
1207
+ .vuiCodePre {
1208
+ padding: 0 !important;
1209
+ margin: 0 !important;
1210
+ max-height: inherit;
1211
+ }
1212
+
1213
+ .vuiCode {
1214
+ display: block;
1215
+ width: 100%;
1216
+ padding: 16px 24px;
1217
+ background-color: #f3f7fb;
1218
+ color: #2c313a;
1219
+ font-family: "Roboto Mono", monospace;
1220
+ word-wrap: break-word;
1221
+ white-space: pre-wrap;
1222
+ font-size: 12px !important;
1223
+ }
1224
+
1225
+ @keyframes drawerIn {
1226
+ 0% {
1227
+ right: -680px;
1228
+ }
1229
+ 100% {
1230
+ right: 0;
1231
+ }
1232
+ }
1233
+ .vuiDrawer {
1234
+ display: flex;
1235
+ flex-direction: column;
1236
+ position: fixed;
1237
+ top: 0;
1238
+ right: 0;
1239
+ bottom: 0;
1240
+ width: 100%;
1241
+ max-width: 680px;
1242
+ background-color: #ffffff;
1243
+ border-left: 1px solid #cbcdde;
1244
+ z-index: 11;
1245
+ animation: drawerIn 0.2s cubic-bezier(0, 1, 0, 1);
1246
+ }
1247
+
1248
+ .vuiDrawerHeader {
1249
+ padding: 24px 24px;
1250
+ }
1251
+
1252
+ .vuiDrawerHeader__title {
1253
+ font-size: 24px;
1254
+ font-weight: 600;
1255
+ line-height: 1.2;
1256
+ color: #2c313a;
1257
+ }
1258
+
1259
+ .vuiDrawerContent {
1260
+ overflow-y: auto;
1261
+ overscroll-behavior: contain;
1262
+ }
1263
+
1264
+ .vuiDrawerContent__inner {
1265
+ padding: 24px 24px;
1266
+ }
1267
+
1268
+ .vuiDrawer--primary .vuiDrawerHeader {
1269
+ background-color: #d9e2ff;
1270
+ }
1271
+ .vuiDrawer--primary .vuiDrawerHeader .vuiDrawerHeader__title,
1272
+ .vuiDrawer--primary .vuiDrawerHeader .vuiIcon {
1273
+ color: #2c313a;
1274
+ }
1275
+
1276
+ .vuiDrawer--danger .vuiDrawerHeader {
1277
+ background-color: #fae9eb;
1278
+ }
1279
+ .vuiDrawer--danger .vuiDrawerHeader .vuiDrawerHeader__title,
1280
+ .vuiDrawer--danger .vuiDrawerHeader .vuiIcon {
1281
+ color: #c41535;
1282
+ }
1283
+
1284
+ .vuiFlexContainer {
1285
+ display: flex;
1286
+ align-items: stretch;
1287
+ }
1288
+
1289
+ .vuiFlexContainer--inline {
1290
+ display: inline-flex;
1291
+ }
1292
+
1293
+ .vuiFlexContainer--fullWidth {
1294
+ width: 100%;
1295
+ }
1296
+
1297
+ .vuiFlexContainer--wrap {
1298
+ flex-wrap: wrap;
1299
+ }
1300
+
1301
+ .vuiFlexContainer--alignItemsBaseline {
1302
+ align-items: baseline;
1303
+ }
1304
+
1305
+ .vuiFlexContainer--alignItemsCenter {
1306
+ align-items: center;
1307
+ }
1308
+
1309
+ .vuiFlexContainer--alignItemsEnd {
1310
+ align-items: end;
1311
+ }
1312
+
1313
+ .vuiFlexContainer--alignItemsStart {
1314
+ align-items: start;
1315
+ }
1316
+
1317
+ .vuiFlexContainer--alignItemsStretch {
1318
+ align-items: stretch;
1319
+ }
1320
+
1321
+ .vuiFlexContainer--directionColumn {
1322
+ flex-direction: column;
1323
+ }
1324
+
1325
+ .vuiFlexContainer--directionColumnReverse {
1326
+ flex-direction: column-reverse;
1327
+ }
1328
+
1329
+ .vuiFlexContainer--directionRow {
1330
+ flex-direction: row;
1331
+ }
1332
+
1333
+ .vuiFlexContainer--directionRowReverse {
1334
+ flex-direction: row-reverse;
1335
+ }
1336
+
1337
+ .vuiFlexContainer--justifyContentCenter {
1338
+ justify-content: center;
1339
+ }
1340
+
1341
+ .vuiFlexContainer--justifyContentEnd {
1342
+ justify-content: end;
1343
+ }
1344
+
1345
+ .vuiFlexContainer--justifyContentStart {
1346
+ justify-content: start;
1347
+ }
1348
+
1349
+ .vuiFlexContainer--justifyContentSpaceAround {
1350
+ justify-content: space-around;
1351
+ }
1352
+
1353
+ .vuiFlexContainer--justifyContentSpaceBetween {
1354
+ justify-content: space-between;
1355
+ }
1356
+
1357
+ .vuiFlexContainer--justifyContentSpaceEvenly {
1358
+ justify-content: space-evenly;
1359
+ }
1360
+
1361
+ .vuiFlexContainer--spacingNone {
1362
+ gap: 0;
1363
+ }
1364
+
1365
+ .vuiFlexContainer--spacingXxs {
1366
+ gap: 4px;
1367
+ }
1368
+
1369
+ .vuiFlexContainer--spacingXs {
1370
+ gap: 8px;
1371
+ }
1372
+
1373
+ .vuiFlexContainer--spacingS {
1374
+ gap: 12px;
1375
+ }
1376
+
1377
+ .vuiFlexContainer--spacingM {
1378
+ gap: 16px;
1379
+ }
1380
+
1381
+ .vuiFlexContainer--spacingL {
1382
+ gap: 24px;
1383
+ }
1384
+
1385
+ .vuiFlexContainer--spacingXl {
1386
+ gap: 32px;
1387
+ }
1388
+
1389
+ .vuiFlexContainer--spacingXxl {
1390
+ gap: 40px;
1391
+ }
1392
+
1393
+ .vuiFlexItem {
1394
+ display: flex;
1395
+ flex-direction: column;
1396
+ align-items: flex-start;
1397
+ }
1398
+
1399
+ .vuiFlexItem--truncate {
1400
+ min-width: 40px;
1401
+ }
1402
+
1403
+ .vuiFlexItem--alignItemsBaseline {
1404
+ align-items: baseline;
1405
+ }
1406
+
1407
+ .vuiFlexItem--alignItemsCenter {
1408
+ align-items: center;
1409
+ }
1410
+
1411
+ .vuiFlexItem--alignItemsEnd {
1412
+ align-items: end;
1413
+ }
1414
+
1415
+ .vuiFlexItem--alignItemsStart {
1416
+ align-items: start;
1417
+ }
1418
+
1419
+ .vuiFlexItem--alignItemsStretch {
1420
+ align-items: stretch;
1421
+ }
1422
+
1423
+ .vuiFlexItem--flexGrow0 {
1424
+ flex-grow: 0;
1425
+ }
1426
+
1427
+ .vuiFlexItem--flexGrow1 {
1428
+ flex-grow: 1;
1429
+ }
1430
+
1431
+ .vuiFlexItem--flexGrow2 {
1432
+ flex-grow: 2;
1433
+ }
1434
+
1435
+ .vuiFlexItem--flexGrow3 {
1436
+ flex-grow: 3;
1437
+ }
1438
+
1439
+ .vuiFlexItem--flexGrow4 {
1440
+ flex-grow: 4;
1441
+ }
1442
+
1443
+ .vuiFlexItem--flexGrow5 {
1444
+ flex-grow: 5;
1445
+ }
1446
+
1447
+ .vuiFlexItem--flexGrow6 {
1448
+ flex-grow: 6;
1449
+ }
1450
+
1451
+ .vuiFlexItem--flexGrow7 {
1452
+ flex-grow: 7;
1453
+ }
1454
+
1455
+ .vuiFlexItem--flexGrow8 {
1456
+ flex-grow: 8;
1457
+ }
1458
+
1459
+ .vuiFlexItem--flexGrow9 {
1460
+ flex-grow: 9;
1461
+ }
1462
+
1463
+ .vuiFlexItem--flexGrow10 {
1464
+ flex-grow: 10;
1465
+ }
1466
+
1467
+ .vuiFlexItem--flexGrowNone {
1468
+ flex-basis: auto;
1469
+ flex-grow: 0;
1470
+ }
1471
+
1472
+ .vuiFlexItem--flexShrink0 {
1473
+ flex-shrink: 0;
1474
+ }
1475
+
1476
+ .vuiFlexItem--flexShrink1 {
1477
+ flex-shrink: 1;
1478
+ }
1479
+
1480
+ .vuiFlexItem--flexShrink2 {
1481
+ flex-shrink: 2;
1482
+ }
1483
+
1484
+ .vuiFlexItem--flexShrink3 {
1485
+ flex-shrink: 3;
1486
+ }
1487
+
1488
+ .vuiFlexItem--flexShrink4 {
1489
+ flex-shrink: 4;
1490
+ }
1491
+
1492
+ .vuiFlexItem--flexShrink5 {
1493
+ flex-shrink: 5;
1494
+ }
1495
+
1496
+ .vuiFlexItem--flexShrink6 {
1497
+ flex-shrink: 6;
1498
+ }
1499
+
1500
+ .vuiFlexItem--flexShrink7 {
1501
+ flex-shrink: 7;
1502
+ }
1503
+
1504
+ .vuiFlexItem--flexShrink8 {
1505
+ flex-shrink: 8;
1506
+ }
1507
+
1508
+ .vuiFlexItem--flexShrink9 {
1509
+ flex-shrink: 9;
1510
+ }
1511
+
1512
+ .vuiFlexItem--flexShrink10 {
1513
+ flex-shrink: 10;
1514
+ }
1515
+
1516
+ .vuiFlexItem--flexShrinkNone {
1517
+ flex-basis: auto;
1518
+ flex-shrink: 0;
1519
+ }
1520
+
1521
+ .vuiFlexItem--auto {
1522
+ flex-basis: auto;
1523
+ }
1524
+
1525
+ .vuiFlexItem--content {
1526
+ flex-basis: content;
1527
+ }
1528
+
1529
+ .vuiFlexItem--fill {
1530
+ flex-basis: fill;
1531
+ }
1532
+
1533
+ .vuiFlexItem--maxContent {
1534
+ flex-basis: max-content;
1535
+ }
1536
+
1537
+ .vuiFlexItem--minContent {
1538
+ flex-basis: min-content;
1539
+ }
1540
+
1541
+ .vuiFlexItem--none {
1542
+ flex-basis: 0;
1543
+ }
1544
+
1545
+ .vuiCheckboxLabel {
1546
+ font-size: 14px;
1547
+ }
1548
+
1549
+ .vuiInput {
1550
+ appearance: none;
1551
+ border-radius: 4px;
1552
+ border: 1px solid #cbcdde;
1553
+ background-color: #ffffff;
1554
+ }
1555
+
1556
+ .vuiInput--m {
1557
+ padding: 8px 16px;
1558
+ font-size: 14px;
1559
+ }
1560
+
1561
+ .vuiInput--l {
1562
+ padding: 12px 16px;
1563
+ font-size: 18px;
1564
+ }
1565
+
1566
+ .vuiInput--fullWidth {
1567
+ width: 100%;
1568
+ }
1569
+
1570
+ .vuiInput-isInvalid {
1571
+ border-color: #c41535;
1572
+ }
1573
+
1574
+ .vuiLabel {
1575
+ font-size: 14px;
1576
+ font-weight: 600;
1577
+ color: #2c313a;
1578
+ }
1579
+
1580
+ .vuiRadioButtonLabel {
1581
+ font-size: 14px;
1582
+ }
1583
+
1584
+ .vuiSelect {
1585
+ position: relative;
1586
+ max-width: 240px;
1587
+ width: 100%;
1588
+ }
1589
+ .vuiSelect select {
1590
+ background-color: #ffffff;
1591
+ appearance: none;
1592
+ border-radius: 4px;
1593
+ border: 1px solid #cbcdde;
1594
+ color: #000;
1595
+ width: 100%;
1596
+ }
1597
+
1598
+ .vuiSelect__caret {
1599
+ pointer-events: none;
1600
+ position: absolute;
1601
+ bottom: 0;
1602
+ left: auto;
1603
+ right: 12px;
1604
+ }
1605
+
1606
+ .vuiSelect--m select {
1607
+ padding: 8px 16px;
1608
+ font-size: 14px;
1609
+ padding-right: 32px;
1610
+ }
1611
+ .vuiSelect--m .vuiSelect__caret {
1612
+ top: calc(50% - 10px);
1613
+ }
1614
+
1615
+ .vuiSelect--l select {
1616
+ padding: 12px 16px;
1617
+ font-size: 18px;
1618
+ padding-right: 48px;
1619
+ }
1620
+ .vuiSelect--l .vuiSelect__caret {
1621
+ top: calc(50% - 14px);
1622
+ }
1623
+
1624
+ .vuiSelect-isInvalid select {
1625
+ border-color: #c41535;
1626
+ }
1627
+
1628
+ .vuiSelect--fullWidth {
1629
+ max-width: 100%;
1630
+ }
1631
+
1632
+ .vuiSuperRadioGroup {
1633
+ display: grid;
1634
+ gap: 8px;
1635
+ }
1636
+
1637
+ .vuiSuperRadioButton {
1638
+ display: block;
1639
+ width: 100%;
1640
+ border-radius: 8px;
1641
+ padding: 12px 24px;
1642
+ cursor: pointer;
1643
+ text-decoration: none;
1644
+ transition: all 0.2s;
1645
+ text-decoration-color: #2c313a;
1646
+ text-align: left;
1647
+ border: 1px solid #d9e2ff;
1648
+ }
1649
+ .vuiSuperRadioButton:hover {
1650
+ text-decoration: underline;
1651
+ text-decoration-color: #264cd6;
1652
+ background-color: #edf5ff;
1653
+ }
1654
+ .vuiSuperRadioButton:hover .vuiSuperRadioButton__text {
1655
+ color: #264cd6 !important;
1656
+ }
1657
+
1658
+ .vuiSuperRadioButton__description {
1659
+ color: #69707d;
1660
+ }
1661
+
1662
+ .vuiTextArea {
1663
+ appearance: none;
1664
+ border-radius: 4px;
1665
+ border: 1px solid #cbcdde;
1666
+ max-width: 100%;
1667
+ resize: none;
1668
+ min-height: 80px;
1669
+ font-size: 14px;
1670
+ padding: 12px;
1671
+ }
1672
+
1673
+ .vuiTextArea--fullWidth {
1674
+ width: 100%;
1675
+ }
1676
+
1677
+ .vuiGridContainer {
1678
+ container-type: inline-size;
1679
+ width: 100%;
1680
+ }
1681
+
1682
+ .vuiGrid {
1683
+ display: grid;
1684
+ }
1685
+
1686
+ .vuiGrid--xss {
1687
+ column-gap: 4px;
1688
+ row-gap: 4px;
1689
+ }
1690
+
1691
+ .vuiGrid--xs {
1692
+ column-gap: 8px;
1693
+ row-gap: 8px;
1694
+ }
1695
+
1696
+ .vuiGrid--s {
1697
+ column-gap: 12px;
1698
+ row-gap: 12px;
1699
+ }
1700
+
1701
+ .vuiGrid--m {
1702
+ column-gap: 16px;
1703
+ row-gap: 16px;
1704
+ }
1705
+
1706
+ .vuiGrid--l {
1707
+ column-gap: 24px;
1708
+ row-gap: 24px;
1709
+ }
1710
+
1711
+ .vuiGrid--xl {
1712
+ column-gap: 32px;
1713
+ row-gap: 32px;
1714
+ }
1715
+
1716
+ .vuiGrid--xxl {
1717
+ column-gap: 40px;
1718
+ row-gap: 40px;
1719
+ }
1720
+
1721
+ .vuiGrid--columns1 {
1722
+ grid-template-columns: 1fr;
1723
+ }
1724
+
1725
+ .vuiGrid--columns2 {
1726
+ grid-template-columns: 1fr 1fr;
1727
+ }
1728
+
1729
+ .vuiGrid--columns3 {
1730
+ grid-template-columns: 1fr 1fr 1fr;
1731
+ }
1732
+
1733
+ @container (width < 800px) {
1734
+ .vuiGrid--columns3 {
1735
+ grid-template-columns: 1fr 1fr;
1736
+ }
1737
+ }
1738
+ @container (width < 500px) {
1739
+ .vuiGrid--columns2,
1740
+ .vuiGrid--columns3 {
1741
+ grid-template-columns: 1fr;
1742
+ }
1743
+ }
1744
+ .vuiHorizontalRule {
1745
+ border-top: none;
1746
+ border-left: none;
1747
+ border-right: none;
1748
+ border-bottom: 1px solid;
1749
+ width: 100%;
1750
+ }
1751
+
1752
+ .vuiHorizontalRule--accent {
1753
+ border-bottom-color: #551edf;
1754
+ }
1755
+
1756
+ .vuiHorizontalRule--primary {
1757
+ border-bottom-color: #264cd6;
1758
+ }
1759
+
1760
+ .vuiHorizontalRule--success {
1761
+ border-bottom-color: #04821f;
1762
+ }
1763
+
1764
+ .vuiHorizontalRule--danger {
1765
+ border-bottom-color: #c41535;
1766
+ }
1767
+
1768
+ .vuiHorizontalRule--warning {
1769
+ border-bottom-color: #965a15;
1770
+ }
1771
+
1772
+ .vuiHorizontalRule--neutral {
1773
+ border-bottom-color: #cbcdde;
1774
+ }
1775
+
1776
+ .vuiHorizontalRule--subdued {
1777
+ border-bottom-color: #e3e4f3;
1778
+ }
1779
+
1780
+ .vuiIcon {
1781
+ line-height: 0;
1782
+ }
1783
+
1784
+ .vuiIcon--inline {
1785
+ display: inline-block;
1786
+ }
1787
+
1788
+ .vuiIcon--accent {
1789
+ color: #551edf;
1790
+ }
1791
+
1792
+ .vuiIcon--primary {
1793
+ color: #264cd6;
1794
+ }
1795
+
1796
+ .vuiIcon--success {
1797
+ color: #04821f;
1798
+ }
1799
+
1800
+ .vuiIcon--warning {
1801
+ color: #965a15;
1802
+ }
1803
+
1804
+ .vuiIcon--danger {
1805
+ color: #c41535;
1806
+ }
1807
+
1808
+ .vuiIcon--subdued {
1809
+ color: #69707d;
1810
+ }
1811
+
1812
+ .vuiIcon--neutral {
1813
+ color: #2c313a;
1814
+ }
1815
+
1816
+ .vuiIcon--empty {
1817
+ color: #ffffff;
1818
+ }
1819
+
1820
+ .vuiInfoTable {
1821
+ width: 100%;
1822
+ table-layout: fixed;
1823
+ border: 1px solid #e3e4f3;
1824
+ }
1825
+ .vuiInfoTable thead {
1826
+ background-color: #f3f7fb;
1827
+ border-bottom: 1px solid #e3e4f3;
1828
+ }
1829
+ .vuiInfoTable tbody tr {
1830
+ border-bottom: 1px solid #e3e4f3;
1831
+ }
1832
+ .vuiInfoTable th {
1833
+ font-size: 12px;
1834
+ font-weight: 600;
1835
+ padding: 8px 12px;
1836
+ text-align: left;
1837
+ }
1838
+ .vuiInfoTable td {
1839
+ font-size: 14px;
1840
+ vertical-align: middle;
1841
+ }
1842
+
1843
+ .vuiInfoTable--paddingXxs td {
1844
+ padding: 4px 12px;
1845
+ }
1846
+
1847
+ .vuiInfoTable--paddingXs td {
1848
+ padding: 8px 12px;
1849
+ }
1850
+
1851
+ .vuiInfoTable--paddingS td {
1852
+ padding: 12px 12px;
1853
+ }
1854
+
1855
+ .vuiInfoTableRow--sectionHeader {
1856
+ background-color: #f3f7fb;
1857
+ border-bottom: none !important;
1858
+ }
1859
+
1860
+ .vuiInfoTableRow--footer {
1861
+ background-color: #f3f7fb;
1862
+ }
1863
+
1864
+ .vuiLink {
1865
+ color: #264cd6 !important;
1866
+ text-decoration: none;
1867
+ }
1868
+ .vuiLink:hover {
1869
+ text-decoration: underline;
1870
+ }
1871
+ .vuiLink:hover * {
1872
+ text-decoration: underline;
1873
+ }
1874
+
1875
+ .vuiLink--button {
1876
+ display: inline;
1877
+ }
1878
+
1879
+ .vuiListNumber {
1880
+ display: flex;
1881
+ flex-direction: column;
1882
+ border-radius: 24px;
1883
+ background-color: #f3f7fb;
1884
+ color: #69707d;
1885
+ font-weight: 600;
1886
+ line-height: 0;
1887
+ align-items: center;
1888
+ }
1889
+
1890
+ .vuiListNumber--m {
1891
+ width: 16px;
1892
+ height: 16px;
1893
+ padding: 16px;
1894
+ font-size: 16px;
1895
+ }
1896
+
1897
+ .vuiListNumber--s {
1898
+ width: 12px;
1899
+ height: 12px;
1900
+ padding: 12px;
1901
+ font-size: 12px;
1902
+ }
1903
+
1904
+ .vuiListNumber-isComplete {
1905
+ background-color: #eadfff;
1906
+ color: #551edf;
1907
+ }
1908
+
1909
+ .vuiMenu {
1910
+ border: 1px solid #cbcdde;
1911
+ border-radius: 8px;
1912
+ overflow: hidden;
1913
+ }
1914
+
1915
+ .vuiMenuItem {
1916
+ display: block;
1917
+ width: 100%;
1918
+ padding: 12px 24px;
1919
+ text-decoration: none;
1920
+ text-align: left;
1921
+ }
1922
+
1923
+ .vuiMenu--noBorder {
1924
+ border: none;
1925
+ border-radius: 0;
1926
+ }
1927
+ .vuiMenu--noBorder .vuiMenuItem {
1928
+ padding: 12px 16px;
1929
+ }
1930
+
1931
+ .vuiMenuItem--clickable {
1932
+ cursor: pointer;
1933
+ }
1934
+
1935
+ .vuiMenuItem--neutral {
1936
+ color: #2c313a;
1937
+ }
1938
+ .vuiMenuItem--neutral.vuiMenuItem--clickable:hover {
1939
+ background-color: #edf5ff;
1940
+ }
1941
+ .vuiMenuItem--neutral.vuiMenuItem--clickable:hover .vuiMenuItem__title,
1942
+ .vuiMenuItem--neutral.vuiMenuItem--clickable:hover .vuiMenuItem__text {
1943
+ color: #264cd6;
1944
+ }
1945
+
1946
+ .vuiMenuItem--primary {
1947
+ color: #264cd6;
1948
+ }
1949
+ .vuiMenuItem--primary.vuiMenuItem--clickable:hover {
1950
+ background-color: #edf5ff;
1951
+ }
1952
+ .vuiMenuItem--primary.vuiMenuItem--clickable:hover .vuiMenuItem__title,
1953
+ .vuiMenuItem--primary.vuiMenuItem--clickable:hover .vuiMenuItem__text {
1954
+ color: #264cd6;
1955
+ }
1956
+
1957
+ .vuiMenuItem--danger {
1958
+ color: #c41535;
1959
+ }
1960
+ .vuiMenuItem--danger.vuiMenuItem--clickable:hover {
1961
+ background-color: #fdeff0;
1962
+ }
1963
+ .vuiMenuItem--danger.vuiMenuItem--clickable:hover .vuiMenuItem__title,
1964
+ .vuiMenuItem--danger.vuiMenuItem--clickable:hover .vuiMenuItem__text {
1965
+ color: #c41535;
1966
+ }
1967
+
1968
+ .vuiMenuItem__title {
1969
+ font-size: 16px;
1970
+ line-height: 1.4;
1971
+ }
1972
+
1973
+ .vuiMenuItem__text {
1974
+ color: #69707d;
1975
+ font-size: 12px;
1976
+ line-height: 1.4;
1977
+ }
1978
+
1979
+ @keyframes modalIn {
1980
+ 0% {
1981
+ transform: translateX(40px);
1982
+ opacity: 0;
1983
+ }
1984
+ 100% {
1985
+ transform: translateX(0);
1986
+ opacity: 1;
1987
+ }
1988
+ }
1989
+ .vuiModalContainer {
1990
+ position: fixed;
1991
+ top: 0;
1992
+ left: 0;
1993
+ right: 0;
1994
+ bottom: 0;
1995
+ display: flex;
1996
+ justify-content: center;
1997
+ align-items: center;
1998
+ animation: modalIn 0.2s cubic-bezier(0, 1, 1, 1);
1999
+ pointer-events: none;
2000
+ }
2001
+
2002
+ .vuiModal {
2003
+ display: flex;
2004
+ flex-direction: column;
2005
+ width: 100%;
2006
+ max-width: 500px;
2007
+ max-height: calc(100vh - 200px);
2008
+ background-color: #ffffff;
2009
+ border: 1px solid #cbcdde;
2010
+ z-index: 12;
2011
+ pointer-events: all;
2012
+ }
2013
+
2014
+ .vuiModalHeader {
2015
+ padding: 16px;
2016
+ }
2017
+
2018
+ .vuiModalHeader__title {
2019
+ font-size: 24px;
2020
+ font-weight: 600;
2021
+ line-height: 1.2;
2022
+ color: #2c313a;
2023
+ }
2024
+
2025
+ .vuiModalContent {
2026
+ overflow-y: auto;
2027
+ overscroll-behavior: contain;
2028
+ }
2029
+
2030
+ .vuiModalContent__inner {
2031
+ padding: 24px 16px 40px;
2032
+ }
2033
+
2034
+ .vuiModal--primary .vuiModalHeader {
2035
+ background-color: #d9e2ff;
2036
+ }
2037
+ .vuiModal--primary .vuiModalHeader .vuiModalHeader__title,
2038
+ .vuiModal--primary .vuiModalHeader .vuiIcon {
2039
+ color: #2c313a;
2040
+ }
2041
+
2042
+ .vuiModal--danger .vuiModalHeader {
2043
+ background-color: #fae9eb;
2044
+ }
2045
+ .vuiModal--danger .vuiModalHeader .vuiModalHeader__title,
2046
+ .vuiModal--danger .vuiModalHeader .vuiIcon {
2047
+ color: #c41535;
2048
+ }
2049
+
2050
+ .vuiNotificationList {
2051
+ position: fixed;
2052
+ top: 0;
2053
+ right: 0;
2054
+ z-index: 1000;
2055
+ animation: popTop 0.4s cubic-bezier(0.5, 0, 0.5, 1) 1;
2056
+ }
2057
+
2058
+ .vuiNotificationList__notifications {
2059
+ padding: 4px;
2060
+ border-bottom-left-radius: 16px;
2061
+ transition: all 0.2s;
2062
+ }
2063
+
2064
+ .vuiNotificationList--hasMany .vuiNotificationList__notifications {
2065
+ border-bottom-left-radius: 8px;
2066
+ }
2067
+
2068
+ .vuiNotificationContainer {
2069
+ position: relative;
2070
+ }
2071
+
2072
+ .vuiNotification {
2073
+ position: relative;
2074
+ z-index: 1;
2075
+ border-radius: 12px;
2076
+ padding: 12px;
2077
+ font-size: 14px;
2078
+ color: #2c313a;
2079
+ width: 420px;
2080
+ box-shadow: rgba(50, 50, 93, 0.25) 0px 0 0 0, rgba(0, 0, 0, 0.16) 0px 1px 4px;
2081
+ background-color: #ffffff;
2082
+ }
2083
+
2084
+ .vuiNotificationPlaceholder {
2085
+ position: absolute;
2086
+ z-index: 0;
2087
+ bottom: 0;
2088
+ }
2089
+
2090
+ .vuiNotificationPlaceholder1-isVisible {
2091
+ bottom: -4px;
2092
+ animation: popBottom1 0.2s cubic-bezier(0.5, 0, 0.5, 1) 1;
2093
+ }
2094
+
2095
+ .vuiNotificationPlaceholder2-isVisible {
2096
+ bottom: -7px;
2097
+ animation: popBottom2 0.2s cubic-bezier(0.5, 0, 0.5, 1) 1;
2098
+ }
2099
+
2100
+ @keyframes popTop {
2101
+ 0% {
2102
+ transform: translateY(-100%);
2103
+ opacity: 0;
2104
+ }
2105
+ 50% {
2106
+ transform: translateY(10px);
2107
+ opacity: 1;
2108
+ }
2109
+ 100% {
2110
+ transform: translateX(0);
2111
+ }
2112
+ }
2113
+ @keyframes popBottom1 {
2114
+ 0% {
2115
+ transform: translateY(0);
2116
+ opacity: 0;
2117
+ }
2118
+ 50% {
2119
+ transform: translateY(2px);
2120
+ opacity: 1;
2121
+ }
2122
+ 100% {
2123
+ transform: translateY(0);
2124
+ }
2125
+ }
2126
+ @keyframes popBottom2 {
2127
+ 0% {
2128
+ transform: translateY(0);
2129
+ opacity: 0;
2130
+ }
2131
+ 50% {
2132
+ transform: translateY(8x);
2133
+ opacity: 1;
2134
+ }
2135
+ 100% {
2136
+ transform: translateY(0);
2137
+ }
2138
+ }
2139
+ .vuiOptionsButtonLeft {
2140
+ border-top-right-radius: 0;
2141
+ border-bottom-right-radius: 0;
2142
+ border-right: none;
2143
+ }
2144
+
2145
+ .vuiOptionsButtonRight {
2146
+ border-top-left-radius: 0;
2147
+ border-bottom-left-radius: 0;
2148
+ border-left: 1px solid;
2149
+ }
2150
+
2151
+ .vuiButtonPrimary.vuiOptionsButtonRight--accent {
2152
+ border-left-color: rgba(255, 255, 255, 0.5);
2153
+ }
2154
+
2155
+ .vuiButtonPrimary.vuiOptionsButtonRight--primary {
2156
+ border-left-color: rgba(255, 255, 255, 0.5);
2157
+ }
2158
+
2159
+ .vuiButtonPrimary.vuiOptionsButtonRight--success {
2160
+ border-left-color: rgba(255, 255, 255, 0.5);
2161
+ }
2162
+
2163
+ .vuiButtonPrimary.vuiOptionsButtonRight--danger {
2164
+ border-left-color: rgba(255, 255, 255, 0.5);
2165
+ }
2166
+
2167
+ .vuiButtonPrimary.vuiOptionsButtonRight--warning {
2168
+ border-left-color: rgba(255, 255, 255, 0.5);
2169
+ }
2170
+
2171
+ .vuiButtonPrimary.vuiOptionsButtonRight--neutral {
2172
+ border-left-color: rgba(44, 49, 58, 0.2);
2173
+ }
2174
+
2175
+ .vuiButtonSecondary.vuiOptionsButtonRight--accent {
2176
+ border-left-color: rgba(85, 30, 223, 0.3);
2177
+ }
2178
+
2179
+ .vuiButtonSecondary.vuiOptionsButtonRight--primary {
2180
+ border-left-color: rgba(38, 76, 214, 0.3);
2181
+ }
2182
+
2183
+ .vuiButtonSecondary.vuiOptionsButtonRight--success {
2184
+ border-left-color: rgba(4, 130, 31, 0.3);
2185
+ }
2186
+
2187
+ .vuiButtonSecondary.vuiOptionsButtonRight--danger {
2188
+ border-left-color: rgba(196, 21, 53, 0.3);
2189
+ }
2190
+
2191
+ .vuiButtonSecondary.vuiOptionsButtonRight--warning {
2192
+ border-left-color: rgba(150, 90, 21, 0.3);
2193
+ }
2194
+
2195
+ .vuiButtonSecondary.vuiOptionsButtonRight--neutral {
2196
+ border-left-color: rgba(44, 49, 58, 0.2);
2197
+ }
2198
+
2199
+ .vuiOptionsList {
2200
+ display: flex;
2201
+ flex-direction: column;
2202
+ font-size: 14px;
2203
+ }
2204
+
2205
+ .vuiOptionsList--scrollable {
2206
+ max-height: 220px;
2207
+ overflow-y: auto;
2208
+ }
2209
+
2210
+ .vuiOptionsList--s .vuiOptionsListItem {
2211
+ padding: 5px 8px;
2212
+ }
2213
+
2214
+ .vuiOptionsList--m .vuiOptionsListItem {
2215
+ padding: 5px 12px;
2216
+ }
2217
+
2218
+ .vuiOptionsList--l .vuiOptionsListItem {
2219
+ padding: 8px 12px;
2220
+ }
2221
+
2222
+ .vuiOptionsListItem {
2223
+ background-color: #ffffff;
2224
+ text-decoration: none;
2225
+ }
2226
+ .vuiOptionsListItem:hover {
2227
+ text-decoration: underline;
2228
+ }
2229
+
2230
+ .vuiOptionsListItem--accent {
2231
+ color: #551edf;
2232
+ }
2233
+ .vuiOptionsListItem--accent:hover {
2234
+ color: #551edf;
2235
+ background-color: #eadfff;
2236
+ }
2237
+
2238
+ .vuiOptionsListItem--primary {
2239
+ color: #264cd6;
2240
+ }
2241
+ .vuiOptionsListItem--primary:hover {
2242
+ color: #264cd6;
2243
+ background-color: #edf5ff;
2244
+ }
2245
+
2246
+ .vuiOptionsListItem--success {
2247
+ color: #04821f;
2248
+ }
2249
+ .vuiOptionsListItem--success:hover {
2250
+ color: #04821f;
2251
+ background-color: #e9f2e9;
2252
+ }
2253
+
2254
+ .vuiOptionsListItem--danger {
2255
+ color: #c41535;
2256
+ }
2257
+ .vuiOptionsListItem--danger:hover {
2258
+ color: #c41535;
2259
+ background-color: #fae9eb;
2260
+ }
2261
+
2262
+ .vuiOptionsListItem--warning {
2263
+ color: #965a15;
2264
+ }
2265
+ .vuiOptionsListItem--warning:hover {
2266
+ color: #965a15;
2267
+ background-color: #f4eee8;
2268
+ }
2269
+
2270
+ .vuiOptionsListItem--neutral {
2271
+ color: #2c313a;
2272
+ }
2273
+ .vuiOptionsListItem--neutral:hover {
2274
+ color: #264cd6;
2275
+ background-color: #edf5ff;
2276
+ }
2277
+
2278
+ .vuiPopover {
2279
+ position: absolute;
2280
+ background-color: #ffffff;
2281
+ border: 1px solid #cbcdde;
2282
+ z-index: 13;
2283
+ box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
2284
+ border-radius: 4px;
2285
+ overflow: hidden;
2286
+ }
2287
+
2288
+ .vuiOptionsListItem__selected--unselected {
2289
+ visibility: hidden;
2290
+ }
2291
+
2292
+ .vuiPopoverTitle {
2293
+ padding: 8px 12px;
2294
+ border-bottom: 1px solid #cbcdde;
2295
+ font-weight: 600;
2296
+ font-size: 14px;
2297
+ color: #2c313a;
2298
+ }
2299
+
2300
+ .vuiPopoverContent {
2301
+ padding: 4px 0;
2302
+ }
2303
+
2304
+ .vuiPopoverContent--padding {
2305
+ padding: 12px;
2306
+ }
2307
+
2308
+ .vuiProgressBar {
2309
+ position: relative;
2310
+ border-radius: 4px;
2311
+ height: 12px;
2312
+ overflow: hidden;
2313
+ }
2314
+
2315
+ .vuiProgressBar__empty,
2316
+ .vuiProgressBar__bar,
2317
+ .vuiProgressBar__outline {
2318
+ position: absolute;
2319
+ width: 100%;
2320
+ height: 100%;
2321
+ }
2322
+
2323
+ .vuiProgressBar__empty {
2324
+ z-index: 0;
2325
+ background-color: #f3f7fb;
2326
+ box-shadow: inset rgba(0, 0, 0, 0.05) 0px 2px 2px;
2327
+ }
2328
+
2329
+ .vuiProgressBar__bar {
2330
+ transition: all 0.2s;
2331
+ z-index: 1;
2332
+ }
2333
+
2334
+ .vuiProgressBar__outline {
2335
+ z-index: 2;
2336
+ border-radius: 4px;
2337
+ box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
2338
+ }
2339
+
2340
+ .vuiProgressBar--accent .vuiProgressBar__bar {
2341
+ background-color: #551edf;
2342
+ }
2343
+
2344
+ .vuiProgressBar--primary .vuiProgressBar__bar {
2345
+ background-color: #264cd6;
2346
+ }
2347
+
2348
+ .vuiProgressBar--success .vuiProgressBar__bar {
2349
+ background-color: #04821f;
2350
+ }
2351
+
2352
+ .vuiProgressBar--warning .vuiProgressBar__bar {
2353
+ background-color: #965a15;
2354
+ }
2355
+
2356
+ .vuiProgressBar--danger .vuiProgressBar__bar {
2357
+ background-color: #c41535;
2358
+ }
2359
+
2360
+ .vuiProgressBar--neutral .vuiProgressBar__bar {
2361
+ background-color: #69707d;
2362
+ }
2363
+
2364
+ .vuiPrompt {
2365
+ position: relative;
2366
+ border-radius: 16px;
2367
+ transition: all 0.2s;
2368
+ word-wrap: break-word;
2369
+ }
2370
+
2371
+ .vuiPrompt--speechBubble::after {
2372
+ content: "";
2373
+ position: absolute;
2374
+ bottom: 0;
2375
+ width: 0;
2376
+ height: 0;
2377
+ left: 48px;
2378
+ border-style: solid;
2379
+ border-left-color: transparent;
2380
+ border-right-color: transparent;
2381
+ border-bottom-color: transparent;
2382
+ border-width: 20px;
2383
+ margin-left: -20px;
2384
+ margin-bottom: -20px;
2385
+ border-top-color: #f3f7fb;
2386
+ border-bottom: 0;
2387
+ }
2388
+
2389
+ .vuiPrompt--interactive:hover {
2390
+ background-color: #eadfff;
2391
+ color: #551edf;
2392
+ }
2393
+
2394
+ .vuiPrompt--danger {
2395
+ color: #c41535;
2396
+ background-color: #fae9eb;
2397
+ }
2398
+
2399
+ .vuiPrompt--neutral {
2400
+ color: #69707d;
2401
+ background-color: #f3f7fb;
2402
+ }
2403
+
2404
+ .vuiPrompt--paddingXs {
2405
+ padding: 8px;
2406
+ }
2407
+
2408
+ .vuiPrompt--paddingS {
2409
+ padding: 12px;
2410
+ }
2411
+
2412
+ .vuiPrompt--paddingM {
2413
+ padding: 16px;
2414
+ }
2415
+
2416
+ .vuiPrompt--paddingL {
2417
+ padding: 24px;
2418
+ }
2419
+
2420
+ .vuiPrompt--paddingXl {
2421
+ padding: 32px;
2422
+ }
2423
+
2424
+ .vuiPrompt--paddingXxl {
2425
+ padding: 64px;
2426
+ }
2427
+
2428
+ .vuiScreenBlock {
2429
+ position: fixed;
2430
+ top: 0;
2431
+ left: 0;
2432
+ right: 0;
2433
+ bottom: 0;
2434
+ z-index: 10;
2435
+ display: flex;
2436
+ align-items: center;
2437
+ justify-content: center;
2438
+ }
2439
+
2440
+ .vuiScreenBlock__mask {
2441
+ width: 100%;
2442
+ height: 100%;
2443
+ background-color: rgba(0, 0, 0, 0.6);
2444
+ }
2445
+
2446
+ .vuiSearchInput {
2447
+ position: relative;
2448
+ display: flex;
2449
+ align-items: center;
2450
+ }
2451
+
2452
+ .vuiSearchInput__input {
2453
+ flex-grow: 1;
2454
+ background-color: #ffffff;
2455
+ border: 1px solid #cbcdde;
2456
+ border-radius: 8px;
2457
+ box-shadow: rgba(60, 64, 67, 0.3) 0px 0px 0px 0px, rgba(60, 64, 67, 0.15) 0px 0px 0px 0px;
2458
+ transition: all 0.2s;
2459
+ outline-width: 1px !important;
2460
+ outline-style: solid;
2461
+ outline-color: transparent;
2462
+ outline-offset: -1px !important;
2463
+ }
2464
+ .vuiSearchInput__input:focus-visible {
2465
+ outline-color: #264cd6 !important;
2466
+ box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
2467
+ }
2468
+
2469
+ .vuiSearchInput__submitButton {
2470
+ position: absolute;
2471
+ right: 12px;
2472
+ line-height: 0;
2473
+ color: #69707d;
2474
+ transition: all 0.2s;
2475
+ }
2476
+ .vuiSearchInput__submitButton:hover {
2477
+ color: #551edf;
2478
+ }
2479
+
2480
+ .vuiSearchInput--m .vuiSearchInput__input {
2481
+ padding: 8px 16px;
2482
+ font-size: 14px;
2483
+ }
2484
+
2485
+ .vuiSearchInput--l .vuiSearchInput__input {
2486
+ padding: 12px 16px;
2487
+ font-size: 18px;
2488
+ }
2489
+
2490
+ .vuiSearchResult {
2491
+ position: relative;
2492
+ }
2493
+ .vuiSearchResult + .vuiSearchResult {
2494
+ margin-top: 24px;
2495
+ }
2496
+
2497
+ .vuiSearchResultPosition {
2498
+ position: absolute;
2499
+ left: -42px;
2500
+ top: 0;
2501
+ font-weight: 600;
2502
+ padding: 8px;
2503
+ color: #69707d;
2504
+ padding: 4px 8px;
2505
+ width: 30px;
2506
+ text-align: center;
2507
+ font-size: 12px;
2508
+ border-radius: 8px;
2509
+ height: 23px;
2510
+ transition: all 0.2s;
2511
+ }
2512
+
2513
+ .vuiSearchResultPosition--selected {
2514
+ background-color: #264cd6;
2515
+ color: #ffffff;
2516
+ height: 100%;
2517
+ }
2518
+
2519
+ .vuiSearchSelectHeader {
2520
+ background-color: #f3f7fb;
2521
+ padding: 16px;
2522
+ border-bottom: 1px solid #cbcdde;
2523
+ font-weight: 600;
2524
+ font-size: 14px;
2525
+ color: #2c313a;
2526
+ }
2527
+
2528
+ .vuiSearchSelect__search {
2529
+ padding: 4px 8px;
2530
+ border-bottom: 1px solid #cbcdde;
2531
+ }
2532
+
2533
+ .vuiSpacer {
2534
+ flex-shrink: 0;
2535
+ }
2536
+
2537
+ .vuiSpacer--xxxs {
2538
+ height: 2px;
2539
+ }
2540
+
2541
+ .vuiSpacer--xxs {
2542
+ height: 4px;
2543
+ }
2544
+
2545
+ .vuiSpacer--xs {
2546
+ height: 8px;
2547
+ }
2548
+
2549
+ .vuiSpacer--s {
2550
+ height: 12px;
2551
+ }
2552
+
2553
+ .vuiSpacer--m {
2554
+ height: 16px;
2555
+ }
2556
+
2557
+ .vuiSpacer--l {
2558
+ height: 24px;
2559
+ }
2560
+
2561
+ .vuiSpacer--xl {
2562
+ height: 32px;
2563
+ }
2564
+
2565
+ .vuiSpacer--xxl {
2566
+ height: 40px;
2567
+ }
2568
+
2569
+ .vuiSpinner--accent svg path,
2570
+ .vuiSpinner--accent svg rect {
2571
+ fill: #551edf;
2572
+ }
2573
+
2574
+ .vuiSpinner--primary svg path,
2575
+ .vuiSpinner--primary svg rect {
2576
+ fill: #264cd6;
2577
+ }
2578
+
2579
+ .vuiSpinner--success svg path,
2580
+ .vuiSpinner--success svg rect {
2581
+ fill: #04821f;
2582
+ }
2583
+
2584
+ .vuiSpinner--danger svg path,
2585
+ .vuiSpinner--danger svg rect {
2586
+ fill: #c41535;
2587
+ }
2588
+
2589
+ .vuiSpinner--warning svg path,
2590
+ .vuiSpinner--warning svg rect {
2591
+ fill: #965a15;
2592
+ }
2593
+
2594
+ .vuiSpinner--empty svg path,
2595
+ .vuiSpinner--empty svg rect {
2596
+ fill: #ffffff;
2597
+ }
2598
+
2599
+ .vuiSpinner--dark svg path,
2600
+ .vuiSpinner--dark svg rect {
2601
+ fill: #2c313a;
2602
+ }
2603
+
2604
+ .vuiSpinner--xs {
2605
+ width: 14px;
2606
+ height: 14px;
2607
+ }
2608
+
2609
+ .vuiSpinner--s {
2610
+ width: 15.9px;
2611
+ height: 15.9px;
2612
+ }
2613
+
2614
+ .vuiSpinner--m {
2615
+ width: 20.08px;
2616
+ height: 20.08px;
2617
+ }
2618
+
2619
+ .vuiSpinner--l {
2620
+ width: 48px;
2621
+ height: 48px;
2622
+ }
2623
+
2624
+ .vuiSpinner--xl {
2625
+ width: 64px;
2626
+ height: 64px;
2627
+ }
2628
+
2629
+ .vuiSpinner--xxl {
2630
+ width: 80px;
2631
+ height: 80px;
2632
+ }
2633
+
2634
+ .vuiSpinner--xxxl {
2635
+ width: 100px;
2636
+ height: 100px;
2637
+ }
2638
+
2639
+ .vuiStatName {
2640
+ width: 120px;
2641
+ }
2642
+
2643
+ .vuiSummary {
2644
+ font-size: 16px;
2645
+ }
2646
+
2647
+ .vuiSummaryCitation {
2648
+ vertical-align: middle;
2649
+ position: relative;
2650
+ top: -2px;
2651
+ display: inline-block;
2652
+ background-color: #f3f7fb;
2653
+ color: #69707d;
2654
+ padding: 2px 8px;
2655
+ font-size: 12px;
2656
+ border-radius: 4px;
2657
+ font-weight: 600;
2658
+ line-height: 1.4;
2659
+ transition: all 0.2s;
2660
+ }
2661
+ .vuiSummaryCitation:hover {
2662
+ color: #264cd6;
2663
+ background-color: #d9e2ff;
2664
+ text-decoration: underline;
2665
+ }
2666
+
2667
+ .vuiSummaryCitation-isSelected {
2668
+ background-color: #264cd6;
2669
+ color: #ffffff;
2670
+ }
2671
+
2672
+ .vuiTable {
2673
+ width: 100%;
2674
+ table-layout: fixed;
2675
+ }
2676
+ .vuiTable thead {
2677
+ border-bottom: 1px solid #cbcdde;
2678
+ }
2679
+ .vuiTable tbody tr {
2680
+ border-bottom: 1px solid #e3e4f3;
2681
+ }
2682
+ .vuiTable tbody tr.vuiTableRow-isBeingActedUpon, .vuiTable tbody tr:not(.vuiTableRow--inert):hover {
2683
+ background-color: #f3f7fb;
2684
+ }
2685
+ .vuiTable tbody tr:last-child {
2686
+ border-bottom: 1px solid #cbcdde;
2687
+ }
2688
+ .vuiTable th {
2689
+ font-size: 14px;
2690
+ font-weight: 600;
2691
+ padding: 4px;
2692
+ }
2693
+ .vuiTable td {
2694
+ font-size: 14px;
2695
+ padding: 4px;
2696
+ vertical-align: middle;
2697
+ word-break: break-word;
2698
+ }
2699
+
2700
+ .vuiTable--fluid {
2701
+ table-layout: auto;
2702
+ }
2703
+
2704
+ .vuiTableCell {
2705
+ height: 100%;
2706
+ display: flex;
2707
+ align-items: center;
2708
+ justify-content: flex-start;
2709
+ }
2710
+
2711
+ .vuiTableActions {
2712
+ display: flex;
2713
+ justify-content: flex-end;
2714
+ }
2715
+
2716
+ .vuiTableManyPagesToken {
2717
+ padding: 0 8px;
2718
+ }
2719
+
2720
+ .vuiTableManyPagesToken-isDisabled {
2721
+ opacity: 0.5;
2722
+ }
2723
+
2724
+ .vuiTableHeaderSelect {
2725
+ width: 32px;
2726
+ }
2727
+
2728
+ .vuiTableHeaderActions {
2729
+ width: 42px;
2730
+ }
2731
+
2732
+ .vuiTableContent {
2733
+ height: 80px;
2734
+ }
2735
+
2736
+ .vuiTabs {
2737
+ display: flex;
2738
+ align-items: center;
2739
+ border-bottom: 1px solid #e3e4f3;
2740
+ justify-content: space-between;
2741
+ column-gap: 4px;
2742
+ }
2743
+
2744
+ .vuiTabs--fullWidth .vuiTabs__tabs {
2745
+ flex-grow: 1;
2746
+ }
2747
+ .vuiTabs--fullWidth .vuiTab {
2748
+ display: flex;
2749
+ flex: 1 1 0;
2750
+ justify-content: stretch;
2751
+ }
2752
+ .vuiTabs--fullWidth .vuiTab .vuiTab__inner {
2753
+ display: flex;
2754
+ flex: 1 1 0;
2755
+ justify-content: center;
2756
+ }
2757
+
2758
+ .vuiTab__inner {
2759
+ border-radius: 4px;
2760
+ overflow: hidden;
2761
+ text-overflow: ellipsis;
2762
+ white-space: nowrap;
2763
+ }
2764
+
2765
+ .vuiTabs--s .vuiTab .vuiTab__inner {
2766
+ padding: 8px 12px;
2767
+ font-size: 14px;
2768
+ }
2769
+
2770
+ .vuiTabs--m .vuiTab .vuiTab__inner {
2771
+ padding: 8px 12px;
2772
+ font-size: 16px;
2773
+ }
2774
+
2775
+ .vuiTabs__tabs {
2776
+ display: flex;
2777
+ align-items: center;
2778
+ }
2779
+
2780
+ .vuiTabs__appendedContent {
2781
+ flex-basis: auto;
2782
+ flex-grow: 0;
2783
+ }
2784
+
2785
+ .vuiTab {
2786
+ padding: 4px;
2787
+ overflow: hidden;
2788
+ text-overflow: ellipsis;
2789
+ white-space: nowrap;
2790
+ flex-grow: 0;
2791
+ flex-shrink: 0;
2792
+ color: #69707d;
2793
+ text-decoration: none;
2794
+ box-shadow: transparent 0px 1px 0px, transparent 0px -1px 0px inset;
2795
+ cursor: pointer;
2796
+ }
2797
+ .vuiTab:first-child {
2798
+ padding-left: 0;
2799
+ }
2800
+ .vuiTab:last-child {
2801
+ padding-right: 0;
2802
+ }
2803
+ .vuiTab:hover .vuiTab__inner {
2804
+ color: #264cd6;
2805
+ background-color: #edf5ff;
2806
+ text-decoration: underline;
2807
+ }
2808
+ .vuiTab:hover .vuiTab__inner .vuiIcon__inner {
2809
+ color: #264cd6 !important;
2810
+ }
2811
+ .vuiTab.vuiTab-isActive {
2812
+ pointer-events: none;
2813
+ color: #000;
2814
+ box-shadow: #cbcdde 0px 1px 0px;
2815
+ }
2816
+ .vuiTab.vuiTab-isActive .vuiTab__inner {
2817
+ background-color: #e8eff5;
2818
+ }
2819
+
2820
+ .vuiToggle {
2821
+ position: relative;
2822
+ display: inline-block;
2823
+ width: 36px;
2824
+ height: 20px;
2825
+ }
2826
+
2827
+ .vuiToggle__input {
2828
+ opacity: 0;
2829
+ width: 0;
2830
+ height: 0;
2831
+ }
2832
+ .vuiToggle__input:checked + .vuiToggle__button {
2833
+ background-color: #264cd6;
2834
+ }
2835
+ .vuiToggle__input:focus-visible + .vuiToggle__button {
2836
+ outline: 2px solid rgba(38, 76, 214, 0.75);
2837
+ outline-offset: 2px;
2838
+ }
2839
+ .vuiToggle__input:checked + .vuiToggle__button:before {
2840
+ transform: translateX(16px);
2841
+ }
2842
+
2843
+ .vuiToggle__button {
2844
+ position: absolute;
2845
+ cursor: pointer;
2846
+ top: 0;
2847
+ left: 0;
2848
+ right: 0;
2849
+ bottom: 0;
2850
+ background-color: #cbcdde;
2851
+ transition: 0.2s;
2852
+ border-radius: 16px;
2853
+ box-shadow: inset rgba(0, 0, 0, 0.1) 0px 2px 2px;
2854
+ }
2855
+ .vuiToggle__button:before {
2856
+ position: absolute;
2857
+ content: "";
2858
+ height: 16px;
2859
+ width: 16px;
2860
+ left: 2px;
2861
+ bottom: 2px;
2862
+ background-color: #ffffff;
2863
+ transition: 0.2s;
2864
+ border-radius: 50%;
2865
+ }
2866
+
2867
+ .vuiTopicButton {
2868
+ display: inline-block;
2869
+ text-decoration: none;
2870
+ background-color: #ffffff;
2871
+ border-radius: 8px;
2872
+ box-shadow: rgba(50, 50, 93, 0.25) 0px 0 0 0, rgba(0, 0, 0, 0.16) 0px 1px 4px;
2873
+ transition: box-shadow 0.2s, border-color 0.2s;
2874
+ overflow: hidden;
2875
+ padding: 16px 24px;
2876
+ text-align: left;
2877
+ }
2878
+ .vuiTopicButton:hover {
2879
+ text-decoration: none;
2880
+ box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px, #264cd6 0 0 1px 1px;
2881
+ z-index: 1;
2882
+ }
2883
+
2884
+ .vuiTopicButton--fullWidth {
2885
+ width: 100%;
2886
+ }
2887
+
2888
+ .vuiTitle {
2889
+ color: #2c313a;
2890
+ margin-bottom: 0;
2891
+ }
2892
+
2893
+ .vuiTitle--xxs {
2894
+ font-size: 12px;
2895
+ line-height: 1.4;
2896
+ font-weight: 500;
2897
+ color: #2c313a;
2898
+ }
2899
+
2900
+ .vuiTitle--xs {
2901
+ font-size: 14px;
2902
+ line-height: 1.4;
2903
+ font-weight: 600;
2904
+ color: #2c313a;
2905
+ }
2906
+
2907
+ .vuiTitle--s {
2908
+ font-size: 18px;
2909
+ line-height: 1.3;
2910
+ font-weight: 600;
2911
+ color: #69707d;
2912
+ }
2913
+
2914
+ .vuiTitle--m {
2915
+ font-size: 24px;
2916
+ line-height: 1.2;
2917
+ font-weight: 600;
2918
+ color: #2c313a;
2919
+ }
2920
+
2921
+ .vuiTitle--l {
2922
+ font-size: 30px;
2923
+ line-height: 1.1;
2924
+ font-weight: 400;
2925
+ color: #2c313a;
2926
+ }
2927
+
2928
+ .vuiTitle--xl {
2929
+ font-size: 40px;
2930
+ line-height: 1;
2931
+ font-weight: 400;
2932
+ color: #2c313a;
2933
+ }
2934
+
2935
+ .vuiTitle--xxl {
2936
+ font-size: 40px;
2937
+ line-height: 1;
2938
+ font-weight: 600;
2939
+ color: #2c313a;
2940
+ }
2941
+
2942
+ .vuiTitle--left {
2943
+ text-align: left;
2944
+ }
2945
+
2946
+ .vuiTitle--center {
2947
+ text-align: center;
2948
+ }
2949
+
2950
+ .vuiTitle--right {
2951
+ text-align: right;
2952
+ }
2953
+
2954
+ .vuiText {
2955
+ overflow-wrap: break-word;
2956
+ word-break: break-word;
2957
+ }
2958
+ .vuiText a {
2959
+ color: #264cd6 !important;
2960
+ text-decoration: none;
2961
+ }
2962
+ .vuiText a:hover {
2963
+ text-decoration: underline;
2964
+ }
2965
+ .vuiText ul {
2966
+ list-style: disc;
2967
+ }
2968
+ .vuiText ol {
2969
+ list-style: auto;
2970
+ }
2971
+ .vuiText ul,
2972
+ .vuiText ol {
2973
+ margin-left: 16px;
2974
+ margin-bottom: 8px;
2975
+ }
2976
+ .vuiText ul:last-child,
2977
+ .vuiText ol:last-child {
2978
+ margin-bottom: 0;
2979
+ }
2980
+ .vuiText code {
2981
+ border: 1px solid #e3e4f3;
2982
+ padding: 2px 8px;
2983
+ }
2984
+ .vuiText table {
2985
+ width: 100%;
2986
+ table-layout: fixed;
2987
+ border: 1px solid #e3e4f3;
2988
+ }
2989
+ .vuiText table thead {
2990
+ background-color: #f3f7fb;
2991
+ border-bottom: 1px solid #e3e4f3;
2992
+ }
2993
+ .vuiText table tbody tr {
2994
+ border-bottom: 1px solid #e3e4f3;
2995
+ }
2996
+ .vuiText table th {
2997
+ font-size: 12px;
2998
+ font-weight: 600;
2999
+ padding: 8px 12px;
3000
+ text-align: left;
3001
+ }
3002
+ .vuiText table td {
3003
+ font-size: 14px;
3004
+ vertical-align: middle;
3005
+ padding: 12px 12px;
3006
+ }
3007
+
3008
+ .vuiText--truncate {
3009
+ overflow: hidden;
3010
+ text-overflow: ellipsis;
3011
+ white-space: nowrap;
3012
+ }
3013
+ .vuiText--truncate * {
3014
+ overflow: hidden;
3015
+ text-overflow: ellipsis;
3016
+ white-space: nowrap;
3017
+ }
3018
+
3019
+ .vuiText--xs {
3020
+ color: #2c313a;
3021
+ font-size: 12px;
3022
+ line-height: 1.4;
3023
+ }
3024
+ .vuiText--xs p,
3025
+ .vuiText--xs ul,
3026
+ .vuiText--xs ol {
3027
+ font-size: 12px;
3028
+ line-height: 1.4;
3029
+ margin-bottom: 8px;
3030
+ font-weight: 500;
3031
+ }
3032
+ .vuiText--xs p:last-child,
3033
+ .vuiText--xs ul:last-child,
3034
+ .vuiText--xs ol:last-child {
3035
+ margin-bottom: 0;
3036
+ }
3037
+ .vuiText--xs h1 {
3038
+ font-size: 24px;
3039
+ line-height: 1.4;
3040
+ font-weight: 600;
3041
+ margin-bottom: 8px;
3042
+ }
3043
+ .vuiText--xs h2 {
3044
+ font-size: 18px;
3045
+ line-height: 1.4;
3046
+ margin-bottom: 8px;
3047
+ }
3048
+ .vuiText--xs h3 {
3049
+ font-size: 15px;
3050
+ line-height: 1.4;
3051
+ font-weight: 600;
3052
+ margin-bottom: 8px;
3053
+ color: #69707d;
3054
+ }
3055
+ .vuiText--xs h4 {
3056
+ font-size: 12px;
3057
+ line-height: 1.4;
3058
+ font-weight: 600;
3059
+ margin-bottom: 8px;
3060
+ }
3061
+
3062
+ .vuiText--s {
3063
+ color: #2c313a;
3064
+ font-size: 14px;
3065
+ line-height: 1.4;
3066
+ }
3067
+ .vuiText--s p,
3068
+ .vuiText--s ul,
3069
+ .vuiText--s ol {
3070
+ font-size: 14px;
3071
+ line-height: 1.4;
3072
+ margin-bottom: 8px;
3073
+ font-weight: 400;
3074
+ }
3075
+ .vuiText--s p:last-child,
3076
+ .vuiText--s ul:last-child,
3077
+ .vuiText--s ol:last-child {
3078
+ margin-bottom: 0;
3079
+ }
3080
+ .vuiText--s h1 {
3081
+ font-size: 28px;
3082
+ line-height: 1.4;
3083
+ font-weight: 600;
3084
+ margin-bottom: 8px;
3085
+ }
3086
+ .vuiText--s h2 {
3087
+ font-size: 21px;
3088
+ line-height: 1.4;
3089
+ margin-bottom: 8px;
3090
+ }
3091
+ .vuiText--s h3 {
3092
+ font-size: 17.5px;
3093
+ line-height: 1.4;
3094
+ font-weight: 600;
3095
+ margin-bottom: 8px;
3096
+ color: #69707d;
3097
+ }
3098
+ .vuiText--s h4 {
3099
+ font-size: 14px;
3100
+ line-height: 1.4;
3101
+ font-weight: 600;
3102
+ margin-bottom: 8px;
3103
+ }
3104
+
3105
+ .vuiText--m {
3106
+ color: #2c313a;
3107
+ font-size: 16px;
3108
+ line-height: 1.4;
3109
+ }
3110
+ .vuiText--m p,
3111
+ .vuiText--m ul,
3112
+ .vuiText--m ol {
3113
+ font-size: 16px;
3114
+ line-height: 1.4;
3115
+ margin-bottom: 8px;
3116
+ font-weight: 400;
3117
+ }
3118
+ .vuiText--m p:last-child,
3119
+ .vuiText--m ul:last-child,
3120
+ .vuiText--m ol:last-child {
3121
+ margin-bottom: 0;
3122
+ }
3123
+ .vuiText--m h1 {
3124
+ font-size: 32px;
3125
+ line-height: 1.4;
3126
+ font-weight: 600;
3127
+ margin-bottom: 8px;
3128
+ }
3129
+ .vuiText--m h2 {
3130
+ font-size: 24px;
3131
+ line-height: 1.4;
3132
+ margin-bottom: 8px;
3133
+ }
3134
+ .vuiText--m h3 {
3135
+ font-size: 20px;
3136
+ line-height: 1.4;
3137
+ font-weight: 600;
3138
+ margin-bottom: 8px;
3139
+ color: #69707d;
3140
+ }
3141
+ .vuiText--m h4 {
3142
+ font-size: 16px;
3143
+ line-height: 1.4;
3144
+ font-weight: 600;
3145
+ margin-bottom: 8px;
3146
+ }
3147
+
3148
+ .vuiText--l {
3149
+ color: #2c313a;
3150
+ font-size: 18px;
3151
+ line-height: 1.4;
3152
+ }
3153
+ .vuiText--l p,
3154
+ .vuiText--l ul,
3155
+ .vuiText--l ol {
3156
+ font-size: 18px;
3157
+ line-height: 1.4;
3158
+ margin-bottom: 8px;
3159
+ font-weight: 400;
3160
+ }
3161
+ .vuiText--l p:last-child,
3162
+ .vuiText--l ul:last-child,
3163
+ .vuiText--l ol:last-child {
3164
+ margin-bottom: 0;
3165
+ }
3166
+ .vuiText--l h1 {
3167
+ font-size: 36px;
3168
+ line-height: 1.4;
3169
+ font-weight: 600;
3170
+ margin-bottom: 8px;
3171
+ }
3172
+ .vuiText--l h2 {
3173
+ font-size: 27px;
3174
+ line-height: 1.4;
3175
+ margin-bottom: 8px;
3176
+ }
3177
+ .vuiText--l h3 {
3178
+ font-size: 22.5px;
3179
+ line-height: 1.4;
3180
+ font-weight: 600;
3181
+ margin-bottom: 8px;
3182
+ color: #69707d;
3183
+ }
3184
+ .vuiText--l h4 {
3185
+ font-size: 18px;
3186
+ line-height: 1.4;
3187
+ font-weight: 600;
3188
+ margin-bottom: 8px;
3189
+ }
3190
+
3191
+ .vuiText--left {
3192
+ text-align: left;
3193
+ }
3194
+
3195
+ .vuiText--center {
3196
+ text-align: center;
3197
+ }
3198
+
3199
+ .vuiText--right {
3200
+ text-align: right;
3201
+ }
3202
+
3203
+ .vuiTextColor--accent {
3204
+ color: #551edf !important;
3205
+ }
3206
+
3207
+ .vuiTextColor--primary {
3208
+ color: #264cd6 !important;
3209
+ }
3210
+
3211
+ .vuiTextColor--success {
3212
+ color: #04821f !important;
3213
+ }
3214
+
3215
+ .vuiTextColor--warning {
3216
+ color: #965a15 !important;
3217
+ }
3218
+
3219
+ .vuiTextColor--danger {
3220
+ color: #c41535 !important;
3221
+ }
3222
+
3223
+ .vuiTextColor--subdued {
3224
+ color: #69707d !important;
3225
+ }
3226
+
3227
+ .vuiTextColor--neutral {
3228
+ color: #2c313a !important;
3229
+ }