@thecb/components 12.0.0-beta.0 → 12.0.0-beta.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 (421) hide show
  1. package/README.md +33 -11
  2. package/ai-docs/architecture.md +71 -0
  3. package/ai-docs/components.md +167 -0
  4. package/ai-docs/conventions.md +162 -0
  5. package/ai-docs/figma-mcp.md +66 -0
  6. package/ai-docs/integration-guidelines.md +142 -0
  7. package/dist/index.cjs.js +27805 -25779
  8. package/dist/index.cjs.js.map +1 -1
  9. package/dist/index.d.ts +286 -12
  10. package/dist/index.esm.js +26589 -24593
  11. package/dist/index.esm.js.map +1 -1
  12. package/package.json +17 -8
  13. package/src/components/atoms/alert/Alert.js +10 -1
  14. package/src/components/atoms/alert/Alert.mdx +19 -0
  15. package/src/components/atoms/alert/Alert.stories.js +150 -0
  16. package/src/components/atoms/badge/Badge.js +39 -25
  17. package/src/components/atoms/badge/Badge.mdx +27 -0
  18. package/src/components/atoms/badge/Badge.stories.js +168 -0
  19. package/src/components/atoms/badge/Badge.theme.js +49 -1
  20. package/src/components/atoms/badge/index.d.ts +11 -0
  21. package/src/components/atoms/breadcrumb/Breadcrumb.mdx +21 -0
  22. package/src/components/atoms/breadcrumb/Breadcrumb.stories.js +47 -0
  23. package/src/components/atoms/button-with-action/ButtonWithAction.js +3 -29
  24. package/src/components/atoms/button-with-action/ButtonWithAction.stories.js +14 -1
  25. package/src/components/atoms/button-with-action/ButtonWithAction.theme.js +97 -56
  26. package/src/components/atoms/button-with-action/index.d.ts +1 -0
  27. package/src/components/atoms/button-with-link/ButtonWithLink.mdx +21 -0
  28. package/src/components/atoms/button-with-link/ButtonWithLink.stories.js +161 -0
  29. package/src/components/atoms/card/Card.js +22 -1
  30. package/src/components/atoms/card/Card.mdx +41 -0
  31. package/src/components/atoms/card/Card.stories.js +360 -0
  32. package/src/components/atoms/card/Card.theme.js +2 -0
  33. package/src/components/atoms/card/CardText.js +39 -11
  34. package/src/components/atoms/card/index.d.ts +8 -1
  35. package/src/components/atoms/card-type/CardType.js +55 -0
  36. package/src/components/atoms/card-type/CardType.stories.js +86 -0
  37. package/src/components/atoms/card-type/index.js +3 -0
  38. package/src/components/atoms/checkbox/Checkbox.js +121 -93
  39. package/src/components/atoms/checkbox/Checkbox.mdx +15 -0
  40. package/src/components/atoms/checkbox/Checkbox.oldstories.js +17 -13
  41. package/src/components/atoms/checkbox/Checkbox.stories.js +149 -0
  42. package/src/components/atoms/checkbox/Checkbox.theme.js +6 -2
  43. package/src/components/atoms/country-dropdown/CountryDropdown.mdx +36 -0
  44. package/src/components/atoms/country-dropdown/CountryDropdown.stories.js +76 -0
  45. package/src/components/atoms/detail/Detail.js +0 -26
  46. package/src/components/atoms/detail/Detail.mdx +32 -0
  47. package/src/components/atoms/detail/Detail.stories.js +156 -0
  48. package/src/components/atoms/display-box/DisplayBox.mdx +11 -0
  49. package/src/components/atoms/display-box/DisplayBox.stories.js +69 -0
  50. package/src/components/atoms/dropdown/Dropdown.js +17 -5
  51. package/src/components/atoms/dropdown/Dropdown.mdx +65 -0
  52. package/src/components/atoms/dropdown/Dropdown.stories.js +128 -0
  53. package/src/components/atoms/dropdown/Dropdown.theme.js +6 -6
  54. package/src/components/atoms/dropdown/DropdownIcon.js +1 -0
  55. package/src/components/atoms/dropdown/DropdownIconV2.js +50 -0
  56. package/src/components/atoms/dropdown/index.d.ts +59 -0
  57. package/src/components/atoms/form-layouts/FormInput.js +105 -61
  58. package/src/components/atoms/form-layouts/FormInput.mdx +38 -0
  59. package/src/components/atoms/form-layouts/FormInput.stories.js +219 -0
  60. package/src/components/atoms/form-layouts/FormTextarea.js +207 -0
  61. package/src/components/atoms/form-layouts/FormTextarea.mdx +48 -0
  62. package/src/components/atoms/form-layouts/FormTextarea.stories.js +265 -0
  63. package/src/components/atoms/form-layouts/index.d.ts +34 -1
  64. package/src/components/atoms/form-layouts/index.js +3 -1
  65. package/src/components/atoms/form-select/FormSelect.js +5 -3
  66. package/src/components/atoms/form-select/FormSelect.mdx +42 -0
  67. package/src/components/atoms/form-select/FormSelect.stories.js +76 -0
  68. package/src/components/atoms/form-select/FormSelect.styled.js +2 -2
  69. package/src/components/atoms/form-select/FormSelect.theme.js +6 -3
  70. package/src/components/atoms/form-select/index.d.ts +3 -0
  71. package/src/components/atoms/formatted-address/FormattedAddress.mdx +13 -0
  72. package/src/components/atoms/formatted-address/FormattedAddress.stories.js +138 -0
  73. package/src/components/atoms/formatted-bank-account/FormattedBankAccount.js +2 -2
  74. package/src/components/atoms/formatted-bank-account/FormattedBankAccount.mdx +17 -0
  75. package/src/components/atoms/formatted-bank-account/FormattedBankAccount.stories.js +57 -0
  76. package/src/components/atoms/formatted-bank-account/FormattedBankAccount.theme.js +2 -2
  77. package/src/components/atoms/formatted-credit-card/FormattedCreditCard.js +14 -10
  78. package/src/components/atoms/formatted-credit-card/FormattedCreditCard.mdx +40 -0
  79. package/src/components/atoms/formatted-credit-card/FormattedCreditCard.stories.js +74 -0
  80. package/src/components/atoms/formatted-credit-card/FormattedCreditCard.theme.js +2 -2
  81. package/src/components/atoms/icons/AgencyIcon.js +24 -0
  82. package/src/components/atoms/icons/AmExLargeIcon.js +54 -0
  83. package/src/components/atoms/icons/AmExSmallIcon.js +54 -0
  84. package/src/components/atoms/icons/AutopayIcon.js +9 -1
  85. package/src/components/atoms/icons/BankGenericSmallIcon.js +48 -0
  86. package/src/components/atoms/icons/CaretArrowDown.d.ts +9 -0
  87. package/src/components/atoms/icons/CaretArrowDown.js +22 -0
  88. package/src/components/atoms/icons/CaretArrowUp.d.ts +9 -0
  89. package/src/components/atoms/icons/CaretArrowUp.js +22 -0
  90. package/src/components/atoms/icons/CarrotIcon.js +2 -0
  91. package/src/components/atoms/icons/CashSmallIcon.js +21 -0
  92. package/src/components/atoms/icons/CashieringImage.d.ts +1 -0
  93. package/src/components/atoms/icons/CashieringImage.js +254 -0
  94. package/src/components/atoms/icons/CheckboxCheckmarkIcon.js +45 -0
  95. package/src/components/atoms/icons/CustomerSearchIcon.js +30 -79
  96. package/src/components/atoms/icons/DiscoverLargeIcon.js +137 -0
  97. package/src/components/atoms/icons/DiscoverSmallIcon.js +137 -0
  98. package/src/components/atoms/icons/ExternalLinkIcon.js +10 -2
  99. package/src/components/atoms/icons/GenericCardLarge.js +1 -1
  100. package/src/components/atoms/icons/GenericSmallIcon.js +27 -0
  101. package/src/components/atoms/icons/GuidedCheckoutImage.js +105 -26
  102. package/src/components/atoms/icons/IconAdd.js +2 -2
  103. package/src/components/atoms/icons/Icons.mdx +40 -0
  104. package/src/components/atoms/icons/Icons.stories.js +343 -0
  105. package/src/components/atoms/icons/KioskImage.js +223 -338
  106. package/src/components/atoms/icons/MasterCardLargeIcon.js +35 -0
  107. package/src/components/atoms/icons/MasterCardSmallIcon.js +35 -0
  108. package/src/components/atoms/icons/{NoCustomerResultsIcon.js → NoResultsIcon.js} +10 -6
  109. package/src/components/atoms/icons/NotFoundIcon.js +70 -333
  110. package/src/components/atoms/icons/OverageIcon.js +27 -0
  111. package/src/components/atoms/icons/PaydotImage.d.ts +1 -0
  112. package/src/components/atoms/icons/PaydotImage.js +46 -0
  113. package/src/components/atoms/icons/PaymentSearchIcon.js +7 -42
  114. package/src/components/atoms/icons/PaymentStatusIcon.d.ts +1 -0
  115. package/src/components/atoms/icons/PaymentStatusIcon.js +28 -0
  116. package/src/components/atoms/icons/PeriscopeFailedIcon.js +2 -2
  117. package/src/components/atoms/icons/PersonIcon.d.ts +1 -0
  118. package/src/components/atoms/icons/PersonIcon.js +28 -0
  119. package/src/components/atoms/icons/ProfileImage.js +58 -37
  120. package/src/components/atoms/icons/RevenueManagementImage.js +138 -393
  121. package/src/components/atoms/icons/ReversalNeededIcon.js +27 -0
  122. package/src/components/atoms/icons/SearchIcon.js +4 -3
  123. package/src/components/atoms/icons/ShortageIcon.js +21 -0
  124. package/src/components/atoms/icons/StandardCheckoutImage.js +105 -336
  125. package/src/components/atoms/icons/SuccessfulIconMedium.js +3 -2
  126. package/src/components/atoms/icons/VisaLargeIcon.js +40 -0
  127. package/src/components/atoms/icons/VisaSmallIcon.js +40 -0
  128. package/src/components/atoms/icons/WireSmallIcon.js +22 -0
  129. package/src/components/atoms/icons/icons.oldstories.js +47 -31
  130. package/src/components/atoms/icons/index.d.ts +4 -1
  131. package/src/components/atoms/icons/index.js +47 -7
  132. package/src/components/atoms/index.d.ts +4 -0
  133. package/src/components/atoms/index.js +3 -1
  134. package/src/components/atoms/jumbo/Jumbo.js +18 -3
  135. package/src/components/atoms/labeled-amount/LabeledAmount.mdx +23 -0
  136. package/src/components/atoms/labeled-amount/LabeledAmount.stories.js +118 -0
  137. package/src/components/atoms/layouts/Box.styled.js +34 -22
  138. package/src/components/atoms/layouts/Center.styled.js +2 -0
  139. package/src/components/atoms/layouts/Motion.js +25 -6
  140. package/src/components/atoms/layouts/Motion.styled.js +36 -0
  141. package/src/components/atoms/layouts/Stack.js +2 -0
  142. package/src/components/atoms/layouts/Stack.styled.js +2 -0
  143. package/src/components/atoms/line-item/LineItem.mdx +28 -0
  144. package/src/components/atoms/line-item/LineItem.stories.js +95 -0
  145. package/src/components/atoms/link/ExternalLink.d.ts +1 -0
  146. package/src/components/atoms/link/ExternalLink.js +37 -19
  147. package/src/components/atoms/link/ExternalLink.styled.js +2 -0
  148. package/src/components/atoms/link/InternalLink.js +11 -1
  149. package/src/components/atoms/link/InternalLink.styled.js +22 -2
  150. package/src/components/atoms/link/Link.mdx +19 -0
  151. package/src/components/atoms/link/Link.stories.js +183 -0
  152. package/src/components/atoms/loading/Loading.mdx +13 -0
  153. package/src/components/atoms/loading/Loading.stories.js +22 -0
  154. package/src/components/atoms/loading-line/LoadingLine.js +23 -11
  155. package/src/components/atoms/loading-line/LoadingLine.mdx +15 -0
  156. package/src/components/atoms/loading-line/LoadingLine.stories.js +132 -0
  157. package/src/components/atoms/loading-line/LoadingPill.styled.js +7 -6
  158. package/src/components/atoms/nav-footer/NavFooter.mdx +15 -0
  159. package/src/components/atoms/nav-footer/NavFooter.stories.js +244 -0
  160. package/src/components/atoms/nav-header/NavHeader.mdx +13 -0
  161. package/src/components/atoms/nav-header/NavHeader.stories.js +130 -0
  162. package/src/components/atoms/nav-tabs/NavTabs.mdx +30 -0
  163. package/src/components/atoms/nav-tabs/NavTabs.stories.js +49 -0
  164. package/src/components/atoms/password-requirements/PasswordRequirements.js +3 -3
  165. package/src/components/atoms/password-requirements/PasswordRequirements.mdx +39 -0
  166. package/src/components/atoms/password-requirements/PasswordRequirements.stories.js +139 -0
  167. package/src/components/atoms/placeholder/Placeholder.mdx +19 -0
  168. package/src/components/atoms/placeholder/Placeholder.stories.js +170 -0
  169. package/src/components/atoms/radio-button-with-label/RadioButtonWithLabel.js +13 -7
  170. package/src/components/atoms/radio-button-with-label/RadioButtonWithLabel.theme.js +9 -3
  171. package/src/components/atoms/search/Search.js +123 -0
  172. package/src/components/atoms/search/Search.oldstories.js +58 -0
  173. package/src/components/atoms/search/Search.theme.js +9 -0
  174. package/src/components/atoms/search/index.d.ts +27 -0
  175. package/src/components/atoms/search/index.js +3 -0
  176. package/src/components/atoms/searchable-select/SearchableSelect.mdx +44 -0
  177. package/src/components/atoms/searchable-select/SearchableSelect.stories.js +137 -0
  178. package/src/components/atoms/sortable-table-heading/SortableTableHeading.js +47 -0
  179. package/src/components/atoms/sortable-table-heading/SortableTableHeading.oldstories.js +19 -0
  180. package/src/components/atoms/sortable-table-heading/SortableTableHeading.theme.js +9 -0
  181. package/src/components/atoms/sortable-table-heading/index.d.ts +15 -0
  182. package/src/components/atoms/sortable-table-heading/index.js +3 -0
  183. package/src/components/atoms/spinner/Spinner.js +2 -1
  184. package/src/components/atoms/state-province-dropdown/StateProvinceDropdown.mdx +36 -0
  185. package/src/components/atoms/state-province-dropdown/StateProvinceDropdown.stories.js +78 -0
  186. package/src/components/atoms/state-province-dropdown/options.js +4 -1
  187. package/src/components/atoms/tab/Tab.js +2 -2
  188. package/src/components/atoms/table/Table.mdx +71 -0
  189. package/src/components/atoms/table/Table.oldstories.js +84 -0
  190. package/src/components/atoms/table/Table.stories.js +65 -0
  191. package/src/components/atoms/table/TableRow.js +1 -0
  192. package/src/components/atoms/title/Title.js +0 -23
  193. package/src/components/atoms/title/Title.mdx +26 -0
  194. package/src/components/atoms/title/Title.stories.js +144 -0
  195. package/src/components/atoms/title/Title.theme.js +3 -0
  196. package/src/components/atoms/toggle-switch/ToggleSwitch.js +66 -48
  197. package/src/components/atoms/toggle-switch/ToggleSwitch.mdx +17 -0
  198. package/src/components/atoms/toggle-switch/ToggleSwitch.stories.js +111 -0
  199. package/src/components/atoms/toggle-switch/ToggleSwitch.theme.js +8 -5
  200. package/src/components/atoms/typeahead-input/TypeaheadInput.mdx +13 -0
  201. package/src/components/atoms/typeahead-input/TypeaheadInput.stories.js +63 -0
  202. package/src/components/atoms/wallet-name/WalletName.js +6 -4
  203. package/src/components/atoms/wallet-name/WalletName.oldstories.js +26 -1
  204. package/src/components/atoms/wallet-name/index.d.ts +2 -0
  205. package/src/components/molecules/address-form/AddressForm.mdx +18 -0
  206. package/src/components/molecules/address-form/AddressForm.stories.js +224 -0
  207. package/src/components/molecules/banner/Banner.mdx +23 -0
  208. package/src/components/molecules/banner/Banner.stories.js +125 -0
  209. package/src/components/molecules/change-password-form/ChangePasswordForm.mdx +15 -0
  210. package/src/components/molecules/change-password-form/ChangePasswordForm.stories.js +206 -0
  211. package/src/components/molecules/collapsible-section/CollapsibleSection.js +1 -1
  212. package/src/components/molecules/collapsible-section/CollapsibleSection.mdx +15 -0
  213. package/src/components/molecules/collapsible-section/CollapsibleSection.stories.js +217 -0
  214. package/src/components/molecules/collapsible-section/index.d.ts +2 -2
  215. package/src/components/molecules/contact-card/ContactCard.js +157 -0
  216. package/src/components/molecules/contact-card/ContactCard.stories.js +80 -0
  217. package/src/components/molecules/contact-card/ContactCard.styled.js +44 -0
  218. package/src/components/molecules/contact-card/index.d.ts +16 -0
  219. package/src/components/molecules/contact-card/index.js +3 -0
  220. package/src/components/molecules/edit-name-form/EditNameForm.mdx +13 -0
  221. package/src/components/molecules/edit-name-form/EditNameForm.stories.js +117 -0
  222. package/src/components/molecules/editable-list/EditableList.js +6 -1
  223. package/src/components/molecules/email-form/EmailForm.js +9 -1
  224. package/src/components/molecules/email-form/EmailForm.state.js +1 -1
  225. package/src/components/molecules/email-form/EmailForm.stories.js +210 -0
  226. package/src/components/molecules/forgot-password-form/ForgotPasswordForm.js +2 -1
  227. package/src/components/molecules/hero-image/HeroImage.js +135 -0
  228. package/src/components/molecules/hero-image/HeroImage.mdx +15 -0
  229. package/src/components/molecules/hero-image/HeroImage.stories.js +149 -0
  230. package/src/components/molecules/hero-image/HeroImage.styled.js +83 -0
  231. package/src/components/molecules/hero-image/HeroImage.theme.js +109 -0
  232. package/src/components/molecules/hero-image/index.js +3 -0
  233. package/src/components/molecules/idle-modal/IdleModal.js +101 -0
  234. package/src/components/molecules/idle-modal/IdleModal.mdx +17 -0
  235. package/src/components/molecules/idle-modal/IdleModal.stories.js +180 -0
  236. package/src/components/molecules/idle-modal/index.d.ts +16 -0
  237. package/src/components/molecules/idle-modal/index.js +3 -0
  238. package/src/components/molecules/index.d.ts +1 -0
  239. package/src/components/molecules/index.js +7 -0
  240. package/src/components/molecules/link-card/LinkCard.js +31 -20
  241. package/src/components/molecules/link-card/LinkCard.mdx +17 -0
  242. package/src/components/molecules/link-card/LinkCard.stories.js +528 -0
  243. package/src/components/molecules/link-card/LinkCard.styled.js +28 -21
  244. package/src/components/molecules/link-card/LinkCard.theme.js +6 -4
  245. package/src/components/molecules/link-card/index.d.ts +3 -1
  246. package/src/components/molecules/login-form/LoginForm.js +2 -1
  247. package/src/components/molecules/login-form/LoginForm.mdx +16 -0
  248. package/src/components/molecules/login-form/LoginForm.stories.js +120 -0
  249. package/src/components/molecules/modal/Modal.mdx +17 -0
  250. package/src/components/molecules/modal/Modal.stories.js +362 -0
  251. package/src/components/molecules/modal/ModalControlV1.js +3 -0
  252. package/src/components/molecules/modal/ModalControlV2.js +2 -0
  253. package/src/components/molecules/modal/__private__/CloseButton.js +2 -1
  254. package/src/components/molecules/module/Module.mdx +17 -0
  255. package/src/components/molecules/module/Module.stories.js +273 -0
  256. package/src/components/molecules/multiple-select-filter/MultipleSelectFilter.js +229 -0
  257. package/src/components/molecules/multiple-select-filter/MultipleSelectFilter.oldstories.js +74 -0
  258. package/src/components/molecules/multiple-select-filter/MultipleSelectFilter.styled.js +65 -0
  259. package/src/components/molecules/multiple-select-filter/MultipleSelectFilter.theme.js +13 -0
  260. package/src/components/molecules/multiple-select-filter/__private__/ActionLinkButton.js +27 -0
  261. package/src/components/molecules/multiple-select-filter/__private__/FilterButton.js +97 -0
  262. package/src/components/molecules/multiple-select-filter/__private__/FilterDropdown.js +27 -0
  263. package/src/components/molecules/multiple-select-filter/__private__/FilterableList.js +146 -0
  264. package/src/components/molecules/multiple-select-filter/__private__/FilterableListItem.js +78 -0
  265. package/src/components/molecules/multiple-select-filter/__private__/SearchBox.js +41 -0
  266. package/src/components/molecules/multiple-select-filter/__private__/useKeyboardNavigation.js +84 -0
  267. package/src/components/molecules/multiple-select-filter/__private__/util.js +44 -0
  268. package/src/components/molecules/multiple-select-filter/index.d.ts +34 -0
  269. package/src/components/molecules/multiple-select-filter/index.js +3 -0
  270. package/src/components/molecules/nav-menu/NavMenuMobile.js +27 -29
  271. package/src/components/molecules/nav-menu/NavMenuMobile.mdx +21 -0
  272. package/src/components/molecules/nav-menu/NavMenuMobile.stories.js +100 -0
  273. package/src/components/molecules/obligation/Obligation.js +141 -3
  274. package/src/components/molecules/obligation/Obligation.mdx +23 -0
  275. package/src/components/molecules/obligation/Obligation.stories.js +642 -0
  276. package/src/components/molecules/obligation/icons/PropertyBusinessIcon.js +2 -2
  277. package/src/components/molecules/obligation/icons/PropertyCarIcon.js +2 -2
  278. package/src/components/molecules/obligation/icons/PropertyCommercialVehicleIcon.js +2 -2
  279. package/src/components/molecules/obligation/icons/PropertyGarageIcon.js +2 -2
  280. package/src/components/molecules/obligation/icons/PropertyLandIcon.js +2 -2
  281. package/src/components/molecules/obligation/icons/PropertyMotorcycleIcon.js +2 -2
  282. package/src/components/molecules/obligation/icons/PropertyPersonalIcon.js +2 -2
  283. package/src/components/molecules/obligation/icons/PropertyStorefrontIcon.js +2 -2
  284. package/src/components/molecules/obligation/modules/AmountModule.js +64 -38
  285. package/src/components/molecules/obligation/modules/AutopayModalModule.js +37 -12
  286. package/src/components/molecules/obligation/modules/InactiveControlsModule.js +56 -12
  287. package/src/components/molecules/obligation/modules/InactiveTitleModule.js +1 -1
  288. package/src/components/molecules/obligation/modules/PaymentDetailsActions.js +42 -10
  289. package/src/components/molecules/obligation/modules/RemoveAccountModalModule.js +4 -1
  290. package/src/components/molecules/pagination/Pagination.mdx +15 -0
  291. package/src/components/molecules/pagination/Pagination.stories.js +181 -0
  292. package/src/components/molecules/partial-amount-form/PartialAmountField.js +68 -29
  293. package/src/components/molecules/partial-amount-form/PartialAmountField.theme.js +7 -0
  294. package/src/components/molecules/payment-button-bar/PaymentButtonBar.js +15 -8
  295. package/src/components/molecules/payment-details/PaymentDetails.js +1 -2
  296. package/src/components/molecules/payment-details/PaymentDetails.oldstories.js +0 -1
  297. package/src/components/molecules/payment-form-ach/PaymentFormACH.js +2 -0
  298. package/src/components/molecules/payment-form-ach/PaymentFormACH.state.js +2 -2
  299. package/src/components/molecules/payment-form-card/PaymentFormCard.js +6 -2
  300. package/src/components/molecules/payment-form-card/PaymentFormCard.state.js +2 -1
  301. package/src/components/molecules/phone-form/PhoneForm.js +7 -1
  302. package/src/components/molecules/phone-form/PhoneForm.state.js +1 -1
  303. package/src/components/molecules/popover/Popover.js +1 -15
  304. package/src/components/molecules/popover/Popover.mdx +15 -0
  305. package/src/components/molecules/popover/Popover.stories.js +220 -0
  306. package/src/components/molecules/radio-group/RadioGroup.js +8 -3
  307. package/src/components/molecules/radio-group/index.d.ts +1 -0
  308. package/src/components/molecules/radio-section/InnerRadioSection.js +3 -3
  309. package/src/components/molecules/radio-section/RadioSection.js +87 -44
  310. package/src/components/molecules/radio-section/RadioSection.stories.js +142 -0
  311. package/src/components/molecules/radio-section/radio-button/RadioButton.js +9 -5
  312. package/src/components/molecules/registration-banner/RegistrationBanner.js +115 -0
  313. package/src/components/molecules/registration-banner/RegistrationBanner.mdx +15 -0
  314. package/src/components/molecules/registration-banner/RegistrationBanner.stories.js +80 -0
  315. package/src/components/molecules/registration-banner/RegistrationBanner.styled.js +46 -0
  316. package/src/components/molecules/registration-banner/RegistrationBanner.theme.js +6 -0
  317. package/src/components/molecules/registration-banner/index.d.ts +15 -0
  318. package/src/components/molecules/registration-banner/index.js +3 -0
  319. package/src/components/molecules/registration-form/RegistrationForm.js +2 -1
  320. package/src/components/molecules/tab-sidebar/TabSidebar.js +5 -3
  321. package/src/components/molecules/tabs/Tabs.js +25 -9
  322. package/src/components/molecules/tabs/Tabs.mdx +17 -0
  323. package/src/components/molecules/tabs/Tabs.stories.js +149 -0
  324. package/src/components/molecules/tabs/index.d.ts +21 -0
  325. package/src/components/molecules/terms-and-conditions-modal/TermsAndConditionsModal.js +1 -1
  326. package/src/components/molecules/terms-and-conditions-modal/TermsAndConditionsModal.stories.js +110 -0
  327. package/src/components/molecules/toast-notification/Toast.mdx +15 -0
  328. package/src/components/molecules/toast-notification/Toast.stories.js +183 -0
  329. package/src/components/molecules/toast-notification/ToastNotification.js +74 -43
  330. package/src/components/molecules/tooltip/Tooltip.js +269 -0
  331. package/src/components/molecules/tooltip/Tooltip.mdx +25 -0
  332. package/src/components/molecules/tooltip/Tooltip.stories.js +287 -0
  333. package/src/components/molecules/tooltip/Tooltip.theme.js +18 -0
  334. package/src/components/molecules/tooltip/index.d.ts +34 -0
  335. package/src/components/molecules/tooltip/index.js +3 -0
  336. package/src/components/molecules/turnstile-widget/TurnstileWidget.js +183 -0
  337. package/src/components/molecules/turnstile-widget/index.js +3 -0
  338. package/src/components/templates/sidebar-stack-content/SidebarStackContent.js +1 -1
  339. package/src/constants/colors.d.ts +4 -0
  340. package/src/constants/colors.js +8 -1
  341. package/src/constants/regex_constants.js +1 -1
  342. package/src/constants/style_constants.js +13 -0
  343. package/src/deprecated/spinner/Spinner.js +8 -20
  344. package/src/hooks/index.js +2 -0
  345. package/src/hooks/use-conditionally-add-validator/index.js +20 -0
  346. package/src/hooks/use-outside-click/index.js +4 -5
  347. package/src/hooks/use-turnstile-script/index.js +49 -0
  348. package/src/util/formats.js +6 -3
  349. package/src/util/general.js +67 -4
  350. package/src/util/idleTimerUtils.js +36 -0
  351. package/src/util/index.js +3 -1
  352. package/src/util/themeUtils.js +24 -14
  353. package/src/.DS_Store +0 -0
  354. package/src/components/.DS_Store +0 -0
  355. package/src/components/atoms/alert/Alert.oldstories.js +0 -28
  356. package/src/components/atoms/badge/Badge.oldstories.js +0 -33
  357. package/src/components/atoms/breadcrumb/Breadcrumb.oldstories.js +0 -38
  358. package/src/components/atoms/button-with-action/ButtonWithAction.oldstories.js +0 -56
  359. package/src/components/atoms/button-with-link/ButtonWithLink.oldstories.js +0 -32
  360. package/src/components/atoms/country-dropdown/CountryDropdown.oldstories.js +0 -42
  361. package/src/components/atoms/display-box/DisplayBox.oldstories.js +0 -25
  362. package/src/components/atoms/display-card/DisplayCard.js +0 -88
  363. package/src/components/atoms/display-card/DisplayCard.oldstories.js +0 -24
  364. package/src/components/atoms/display-card/index.js +0 -3
  365. package/src/components/atoms/dropdown/Dropdown.oldstories.js +0 -47
  366. package/src/components/atoms/form-select/FormSelect.oldstories.js +0 -50
  367. package/src/components/atoms/formatted-address/FormattedAddress.oldstories.js +0 -32
  368. package/src/components/atoms/icons/NoPaymentResultsIcon.js +0 -54
  369. package/src/components/atoms/icons/PointOfSaleImage.d.ts +0 -1
  370. package/src/components/atoms/icons/PointOfSaleImage.js +0 -439
  371. package/src/components/atoms/labeled-amount/LabeledAmount.oldstories.js +0 -42
  372. package/src/components/atoms/line-item/LineItem.oldstories.js +0 -28
  373. package/src/components/atoms/link/Link.oldstories.js +0 -57
  374. package/src/components/atoms/loading-line/LoadingLine.oldstories.js +0 -28
  375. package/src/components/atoms/nav-footer/NavFooter.oldstories.js +0 -31
  376. package/src/components/atoms/nav-header/NavHeader.oldstories.js +0 -29
  377. package/src/components/atoms/password-requirements/PasswordRequirements.oldstories.js +0 -75
  378. package/src/components/atoms/placeholder/Placeholder.oldstories.js +0 -42
  379. package/src/components/atoms/searchable-select/SearchableSelect.oldstories.js +0 -62
  380. package/src/components/atoms/state-province-dropdown/StateProvinceDropdown.oldstories.js +0 -53
  381. package/src/components/atoms/toggle-switch/ToggleSwitch.oldstories.js +0 -28
  382. package/src/components/molecules/.DS_Store +0 -0
  383. package/src/components/molecules/address-form/AddressForm.oldstories.js +0 -21
  384. package/src/components/molecules/banner/Banner.oldstories.js +0 -29
  385. package/src/components/molecules/change-password-form/ChangePasswordForm.oldstories.js +0 -22
  386. package/src/components/molecules/collapsible-section/CollapsibleSection.oldstories.js +0 -68
  387. package/src/components/molecules/edit-name-form/EdidNameForm.oldstories.js +0 -24
  388. package/src/components/molecules/link-card/LinkCard.oldstories.js +0 -87
  389. package/src/components/molecules/login-form/LoginForm.oldstories.js +0 -24
  390. package/src/components/molecules/modal/Modal.oldstories.js +0 -139
  391. package/src/components/molecules/module/Module.oldstories.js +0 -31
  392. package/src/components/molecules/obligation/.DS_Store +0 -0
  393. package/src/components/molecules/pagination/Pagination.oldstories.js +0 -32
  394. package/src/components/molecules/tabs/Tabs.oldstories.js +0 -241
  395. package/src/components/molecules/toast-notification/ToastNotification.oldstories.js +0 -105
  396. package/src/stories/Button.stories.ts +0 -53
  397. package/src/stories/Button.tsx +0 -48
  398. package/src/stories/Configure.mdx +0 -364
  399. package/src/stories/Header.stories.ts +0 -33
  400. package/src/stories/Header.tsx +0 -56
  401. package/src/stories/Page.stories.ts +0 -32
  402. package/src/stories/Page.tsx +0 -73
  403. package/src/stories/assets/accessibility.png +0 -0
  404. package/src/stories/assets/accessibility.svg +0 -5
  405. package/src/stories/assets/addon-library.png +0 -0
  406. package/src/stories/assets/assets.png +0 -0
  407. package/src/stories/assets/avif-test-image.avif +0 -0
  408. package/src/stories/assets/context.png +0 -0
  409. package/src/stories/assets/discord.svg +0 -15
  410. package/src/stories/assets/docs.png +0 -0
  411. package/src/stories/assets/figma-plugin.png +0 -0
  412. package/src/stories/assets/github.svg +0 -3
  413. package/src/stories/assets/share.png +0 -0
  414. package/src/stories/assets/styling.png +0 -0
  415. package/src/stories/assets/testing.png +0 -0
  416. package/src/stories/assets/theming.png +0 -0
  417. package/src/stories/assets/tutorials.svg +0 -12
  418. package/src/stories/assets/youtube.svg +0 -4
  419. package/src/stories/button.css +0 -30
  420. package/src/stories/header.css +0 -32
  421. package/src/stories/page.css +0 -69
@@ -3,445 +3,190 @@ import React from "react";
3
3
  const RevenueManagementImage = () => {
4
4
  return (
5
5
  <svg
6
- width="179"
7
- height="96"
8
- viewBox="0 0 179 96"
6
+ width="184"
7
+ height="191"
8
+ viewBox="0 0 184 191"
9
9
  fill="none"
10
10
  xmlns="http://www.w3.org/2000/svg"
11
11
  >
12
- <path
13
- fillRule="evenodd"
14
- clipRule="evenodd"
15
- d="M142.284 17.5583C139.832 17.3968 137.892 15.3563 137.892 12.8627C137.892 10.2637 139.999 8.15681 142.598 8.15681C143.492 8.15681 144.327 8.40592 145.039 8.8385C145.84 5.91385 148.517 3.76465 151.696 3.76465C155.307 3.76465 158.27 6.53709 158.573 10.0693C159.212 9.65335 159.975 9.41171 160.794 9.41171C163.047 9.41171 164.872 11.2377 164.872 13.4901C164.872 15.7426 163.047 17.5686 160.794 17.5686C160.688 17.5686 160.584 17.5646 160.48 17.5567V17.5686H151.696H142.598H142.284V17.5583Z"
16
- fill="#15749D"
17
- fillOpacity="0.3"
18
- />
19
- <path
20
- fillRule="evenodd"
21
- clipRule="evenodd"
22
- d="M19.9314 64.6275C18.5453 64.6275 17.4216 63.5039 17.4216 62.1177C17.4216 60.7316 18.5453 59.6079 19.9314 59.6079C20.3208 59.6079 20.6895 59.6966 21.0184 59.8549C21.5697 58.9541 22.5627 58.353 23.6961 58.353C25.0923 58.353 26.2755 59.265 26.6824 60.5258C27.0041 60.341 27.377 60.2354 27.7746 60.2354C28.9874 60.2354 29.9707 61.2186 29.9707 62.4315C29.9707 63.6443 28.9874 64.6275 27.7746 64.6275H23.6961H19.9314Z"
23
- fill="#15749D"
24
- fillOpacity="0.3"
25
- />
26
- <path
27
- fillRule="evenodd"
28
- clipRule="evenodd"
29
- d="M60.4021 8.78431H53.1864H48.7254V8.77384C48.6447 8.78078 48.563 8.78431 48.4805 8.78431C46.9211 8.78431 45.657 7.52018 45.657 5.96078C45.657 4.40139 46.9211 3.13725 48.4805 3.13725C48.6454 3.13725 48.8069 3.15139 48.9641 3.1785C49.4907 1.34307 51.1817 0 53.1864 0C55.0545 0 56.6502 1.1663 57.2851 2.81047C57.4719 2.7321 57.677 2.68878 57.8923 2.68878C58.4432 2.68878 58.9278 2.97248 59.2076 3.40162C59.5704 3.232 59.9752 3.13725 60.4021 3.13725C61.9615 3.13725 63.2256 4.40139 63.2256 5.96078C63.2256 7.43768 62.0917 8.64973 60.6469 8.77384V8.78431H60.4021Z"
30
- fill="#15749D"
31
- fillOpacity="0.3"
32
- />
33
- <path
34
- d="M109.029 91.9217C109.029 94.1741 100.461 96.0001 89.8921 96.0001C79.3229 96.0001 70.7549 94.1741 70.7549 91.9217C70.7549 89.6692 79.3229 87.8433 89.8921 87.8433C100.461 87.8433 109.029 89.6692 109.029 91.9217Z"
35
- fill="#15749D"
36
- fillOpacity="0.3"
37
- />
38
- <path
39
- d="M49.4216 32H130.363V80.3137C130.363 81.0068 129.801 81.5686 129.108 81.5686H50.6765C49.9835 81.5686 49.4216 81.0068 49.4216 80.3137V32Z"
40
- fill="white"
41
- />
42
- <path
43
- d="M47.5393 22.9333C47.5393 21.0102 49.0983 19.4512 51.0214 19.4512H128.763C130.686 19.4512 132.245 21.0102 132.245 22.9333V32.0002H47.5393V22.9333Z"
44
- fill="#E5E7EC"
45
- />
46
- <path
47
- d="M62.5982 25.7243C62.5982 26.4166 62.0363 26.9778 61.3433 26.9778C60.6502 26.9778 60.0884 26.4166 60.0884 25.7243C60.0884 25.0319 60.6502 24.4707 61.3433 24.4707C62.0363 24.4707 62.5982 25.0319 62.5982 25.7243Z"
48
- fill="#292A33"
49
- />
50
- <path
51
- d="M58.8335 25.7243C58.8335 26.4166 58.2717 26.9778 57.5786 26.9778C56.8856 26.9778 56.3237 26.4166 56.3237 25.7243C56.3237 25.0319 56.8856 24.4707 57.5786 24.4707C58.2717 24.4707 58.8335 25.0319 58.8335 25.7243Z"
52
- fill="#292A33"
53
- />
54
- <path
55
- d="M55.0686 25.7243C55.0686 26.4166 54.5068 26.9778 53.8137 26.9778C53.1207 26.9778 52.5588 26.4166 52.5588 25.7243C52.5588 25.0319 53.1207 24.4707 53.8137 24.4707C54.5068 24.4707 55.0686 25.0319 55.0686 25.7243Z"
56
- fill="#292A33"
57
- />
58
- <path
59
- fillRule="evenodd"
60
- clipRule="evenodd"
61
- d="M129.108 21.3335H50.6766C49.9835 21.3335 49.4217 21.8954 49.4217 22.5884V80.3139C49.4217 81.007 49.9835 81.5688 50.6766 81.5688H129.108C129.801 81.5688 130.363 81.007 130.363 80.3139V22.5884C130.363 21.8954 129.801 21.3335 129.108 21.3335ZM50.6766 19.4512C48.9439 19.4512 47.5393 20.8558 47.5393 22.5884V80.3139C47.5393 82.0466 48.9439 83.4512 50.6766 83.4512H129.108C130.841 83.4512 132.245 82.0466 132.245 80.3139V22.5884C132.245 20.8558 130.841 19.4512 129.108 19.4512H50.6766Z"
62
- fill="#292A33"
63
- />
64
- <path
65
- d="M157.343 75.9214C157.343 75.2283 157.905 74.6665 158.598 74.6665H169.265C169.958 74.6665 170.52 75.2283 170.52 75.9214C170.52 76.6145 169.958 77.1763 169.265 77.1763H158.598C157.905 77.1763 157.343 76.6145 157.343 75.9214Z"
66
- fill="#292A33"
67
- />
68
- <path
69
- d="M132.245 74.6665H152.83C153.529 74.6665 154.095 75.233 154.095 75.9318C154.095 76.6306 153.529 77.1971 152.83 77.1971H132.245V74.6665Z"
70
- fill="#292A33"
71
- />
72
- <path
73
- d="M29.9707 75.9214C29.9707 75.2283 30.5325 74.6665 31.2256 74.6665H47.5393V77.1763H31.2256C30.5325 77.1763 29.9707 76.6145 29.9707 75.9214Z"
74
- fill="#292A33"
75
- />
76
- <path
77
- d="M19.304 75.9214C19.304 75.2283 19.8658 74.6665 20.5589 74.6665H25.5785C26.2715 74.6665 26.8334 75.2283 26.8334 75.9214C26.8334 76.6145 26.2715 77.1763 25.5785 77.1763H20.5589C19.8658 77.1763 19.304 76.6145 19.304 75.9214Z"
78
- fill="#292A33"
79
- />
80
- <path
81
- fillRule="evenodd"
82
- clipRule="evenodd"
83
- d="M87.696 45.8038V51.4508H93.3431V45.8038C91.5455 45.0049 89.4936 45.0049 87.696 45.8038ZM90.5196 48.941C91.0394 48.941 91.4608 48.5197 91.4608 47.9999C91.4608 47.4801 91.0394 47.0587 90.5196 47.0587C89.9998 47.0587 89.5784 47.4801 89.5784 47.9999C89.5784 48.5197 89.9998 48.941 90.5196 48.941Z"
84
- fill="#292A33"
85
- />
86
- <path
87
- d="M112.794 50.5097C112.794 56.2275 108.159 60.8626 102.441 60.8626C96.7233 60.8626 92.0881 56.2275 92.0881 50.5097C92.0881 44.7919 96.7233 40.1567 102.441 40.1567C108.159 40.1567 112.794 44.7919 112.794 50.5097Z"
88
- fill="#E4F4FD"
89
- />
90
- <path
91
- fillRule="evenodd"
92
- clipRule="evenodd"
93
- d="M102.441 59.2798C107.285 59.2798 111.211 55.3533 111.211 50.5097C111.211 45.6661 107.285 41.7395 102.441 41.7395C97.5975 41.7395 93.6709 45.6661 93.6709 50.5097C93.6709 55.3533 97.5975 59.2798 102.441 59.2798ZM102.441 60.8626C108.159 60.8626 112.794 56.2275 112.794 50.5097C112.794 44.7919 108.159 40.1567 102.441 40.1567C96.7233 40.1567 92.0881 44.7919 92.0881 50.5097C92.0881 56.2275 96.7233 60.8626 102.441 60.8626Z"
94
- fill="#292A33"
95
- />
96
- <path
97
- fillRule="evenodd"
98
- clipRule="evenodd"
99
- d="M102.441 50.3601C101.355 50.3601 100.571 50.992 100.379 51.6677C100.259 52.0881 99.8213 52.3319 99.4009 52.2123C98.9805 52.0926 98.7367 51.6549 98.8563 51.2345C99.2787 49.7502 100.79 48.7773 102.441 48.7773C104.092 48.7773 105.603 49.7502 106.026 51.2345C106.145 51.6549 105.902 52.0926 105.481 52.2123C105.061 52.3319 104.623 52.0881 104.503 51.6677C104.311 50.992 103.528 50.3601 102.441 50.3601Z"
100
- fill="#292A33"
101
- />
102
- <path
103
- d="M88.951 50.5097C88.951 56.2275 84.3158 60.8626 78.5981 60.8626C72.8803 60.8626 68.2451 56.2275 68.2451 50.5097C68.2451 44.7919 72.8803 40.1567 78.5981 40.1567C84.3158 40.1567 88.951 44.7919 88.951 50.5097Z"
104
- fill="#E4F4FD"
105
- />
106
- <path
107
- fillRule="evenodd"
108
- clipRule="evenodd"
109
- d="M78.5981 59.2798C83.4417 59.2798 87.3682 55.3533 87.3682 50.5097C87.3682 45.6661 83.4417 41.7395 78.5981 41.7395C73.7544 41.7395 69.8279 45.6661 69.8279 50.5097C69.8279 55.3533 73.7544 59.2798 78.5981 59.2798ZM78.5981 60.8626C84.3158 60.8626 88.951 56.2275 88.951 50.5097C88.951 44.7919 84.3158 40.1567 78.5981 40.1567C72.8803 40.1567 68.2451 44.7919 68.2451 50.5097C68.2451 56.2275 72.8803 60.8626 78.5981 60.8626Z"
110
- fill="#292A33"
111
- />
112
- <path
113
- fillRule="evenodd"
114
- clipRule="evenodd"
115
- d="M78.598 50.3601C77.5115 50.3601 76.728 50.992 76.5357 51.6677C76.4161 52.0881 75.9783 52.3319 75.5579 52.2123C75.1375 52.0926 74.8937 51.6549 75.0133 51.2345C75.4357 49.7502 76.9472 48.7773 78.598 48.7773C80.2488 48.7773 81.7604 49.7502 82.1827 51.2345C82.3024 51.6549 82.0586 52.0926 81.6382 52.2123C81.2178 52.3319 80.78 52.0881 80.6604 51.6677C80.4681 50.992 79.6846 50.3601 78.598 50.3601Z"
116
- fill="#292A33"
117
- />
118
- <path
119
- fillRule="evenodd"
120
- clipRule="evenodd"
121
- d="M82.6764 64.4634C83.1135 64.4634 83.4678 64.8177 83.4678 65.2548C83.4678 66.2038 84.2372 66.9732 85.1862 66.9732H94.598C95.547 66.9732 96.3164 66.2038 96.3164 65.2548C96.3164 64.8177 96.6707 64.4634 97.1078 64.4634C97.5449 64.4634 97.8992 64.8177 97.8992 65.2548C97.8992 67.078 96.4212 68.556 94.598 68.556H85.1862C83.363 68.556 81.885 67.078 81.885 65.2548C81.885 64.8177 82.2393 64.4634 82.6764 64.4634Z"
122
- fill="#292A33"
123
- />
124
- <path d="M47.5393 30.1177H132.245V32H47.5393V30.1177Z" fill="#292A33" />
125
- <g filter="url(#filter0_d_2573_15404)">
126
- <path
127
- d="M21.8137 35.1372C21.8137 34.4442 22.3756 33.8823 23.0686 33.8823H47.5392V42.0392H23.0686C22.3756 42.0392 21.8137 41.4773 21.8137 40.7843V35.1372Z"
12
+ <g id="Illustration - Revenue Management">
13
+ <path
14
+ d="M0 4C0 1.79086 1.79086 0 4 0H184V191H4C1.79086 191 0 189.209 0 187V4Z"
15
+ fill="#D9DAF9"
16
+ />
17
+ <path
18
+ d="M92.2989 133.448C102.365 133.448 110.525 135.187 110.525 137.333C110.525 139.478 102.365 141.217 92.2989 141.217C82.2323 141.217 74.0714 139.478 74.0714 137.333C74.0715 135.187 82.2324 133.448 92.2989 133.448ZM29.251 105.36C30.5807 105.36 31.7073 106.229 32.0948 107.43C32.4011 107.254 32.7563 107.153 33.1348 107.153C34.29 107.153 35.2266 108.089 35.2266 109.245C35.2266 110.4 34.29 111.336 33.1348 111.336H25.6651C24.3449 111.336 23.2745 110.266 23.2745 108.946C23.2745 107.626 24.3449 106.555 25.6651 106.555C26.0359 106.555 26.3871 106.64 26.7003 106.791C27.2254 105.933 28.1715 105.36 29.251 105.36ZM151.164 53.3687C154.603 53.3689 157.425 56.0095 157.713 59.3735C158.322 58.9774 159.049 58.7466 159.829 58.7466C161.974 58.7467 163.713 60.4861 163.713 62.6313C163.713 64.7766 161.974 66.516 159.829 66.5161C159.729 66.5161 159.629 66.5119 159.53 66.5044V66.5161H142.199V66.5063C139.863 66.3525 138.016 64.4086 138.016 62.0337C138.016 59.5584 140.023 57.5513 142.498 57.5513C143.349 57.5513 144.145 57.7887 144.823 58.2007C145.587 55.4153 148.136 53.3687 151.164 53.3687ZM57.3389 49.7827C59.118 49.7829 60.6376 50.8937 61.2422 52.4595C61.4201 52.3848 61.6154 52.3433 61.8204 52.3433C62.3451 52.3433 62.8068 52.6142 63.0733 53.0229C63.4188 52.8614 63.8044 52.771 64.211 52.771C65.6962 52.771 66.9005 53.9752 66.9005 55.4604C66.9002 56.8669 65.8202 58.0209 64.4444 58.1392V58.1489H53.0899V58.1392C53.0131 58.1458 52.935 58.1489 52.8565 58.1489C51.3714 58.1489 50.1673 56.9455 50.1671 55.4604C50.1671 53.9752 51.3713 52.771 52.8565 52.771C53.0135 52.771 53.1678 52.7842 53.3174 52.8101C53.819 51.062 55.4296 49.7827 57.3389 49.7827Z"
19
+ fill="#A99DD2"
20
+ />
21
+ <path
22
+ d="M53.7528 80.261H130.845V126.277C130.845 126.937 130.31 127.472 129.65 127.472H54.948C54.2879 127.472 53.7528 126.937 53.7528 126.277V80.261Z"
128
23
  fill="white"
129
24
  />
130
25
  <path
131
- d="M40.0098 37.9607C40.0098 37.4409 40.4311 37.0195 40.9509 37.0195H47.5392V38.9019H40.9509C40.4311 38.9019 40.0098 38.4805 40.0098 37.9607Z"
132
- fill="#959CA8"
26
+ d="M51.96 71.6253C51.96 69.7936 53.4449 68.3087 55.2765 68.3087H129.321C131.153 68.3087 132.638 69.7936 132.638 71.6253V80.261H51.96V71.6253Z"
27
+ fill="#E5E7EC"
133
28
  />
134
29
  <path
135
- d="M24.9509 37.9607C24.9509 37.4409 25.3723 37.0195 25.8921 37.0195H36.5588C37.0786 37.0195 37.4999 37.4409 37.4999 37.9607C37.4999 38.4805 37.0786 38.9019 36.5588 38.9019H25.8921C25.3723 38.9019 24.9509 38.4805 24.9509 37.9607Z"
136
- fill="#959CA8"
30
+ d="M66.3027 74.2835C66.3027 74.9429 65.7676 75.4775 65.1075 75.4775C64.4474 75.4775 63.9122 74.9429 63.9122 74.2835C63.9122 73.6241 64.4474 73.0896 65.1075 73.0896C65.7676 73.0896 66.3027 73.6241 66.3027 74.2835Z"
31
+ fill="#292A33"
137
32
  />
138
- </g>
139
- <g filter="url(#filter1_d_2573_15404)">
140
33
  <path
141
- d="M5.5 42.0391C5.5 41.346 6.06184 40.7842 6.7549 40.7842H55.0686C55.7617 40.7842 56.3235 41.346 56.3235 42.0391V47.6861C56.3235 48.3792 55.7617 48.941 55.0686 48.941H6.7549C6.06184 48.941 5.5 48.3792 5.5 47.6861V42.0391Z"
142
- fill="white"
34
+ d="M62.717 74.2835C62.717 74.9429 62.1819 75.4775 61.5218 75.4775C60.8617 75.4775 60.3266 74.9429 60.3266 74.2835C60.3266 73.6241 60.8617 73.0896 61.5218 73.0896C62.1819 73.0896 62.717 73.6241 62.717 74.2835Z"
35
+ fill="#292A33"
143
36
  />
144
37
  <path
145
- d="M41.2646 44.8626C41.2646 44.3428 41.686 43.9214 42.2058 43.9214H52.245C52.7648 43.9214 53.1862 44.3428 53.1862 44.8626C53.1862 45.3824 52.7648 45.8037 52.245 45.8037H42.2058C41.686 45.8037 41.2646 45.3824 41.2646 44.8626Z"
146
- fill="#959CA8"
38
+ d="M59.1313 74.2835C59.1313 74.9429 58.5962 75.4775 57.9361 75.4775C57.276 75.4775 56.7409 74.9429 56.7409 74.2835C56.7409 73.6241 57.276 73.0896 57.9361 73.0896C58.5962 73.0896 59.1313 73.6241 59.1313 74.2835Z"
39
+ fill="#292A33"
147
40
  />
148
41
  <path
149
- d="M25.5784 44.8626C25.5784 44.3428 25.9997 43.9214 26.5195 43.9214H37.8137C38.3335 43.9214 38.7548 44.3428 38.7548 44.8626C38.7548 45.3824 38.3335 45.8037 37.8137 45.8037H26.5195C25.9997 45.8037 25.5784 45.3824 25.5784 44.8626Z"
150
- fill="#959CA8"
42
+ fillRule="evenodd"
43
+ clipRule="evenodd"
44
+ d="M129.65 70.1016H54.9481C54.2879 70.1016 53.7528 70.6367 53.7528 71.2968V126.277C53.7528 126.937 54.2879 127.472 54.948 127.472H129.65C130.31 127.472 130.845 126.937 130.845 126.277V71.2968C130.845 70.6367 130.31 70.1016 129.65 70.1016ZM54.9481 68.3087C53.2978 68.3087 51.96 69.6465 51.96 71.2968V126.277C51.96 127.927 53.2978 129.265 54.948 129.265H129.65C131.3 129.265 132.638 127.927 132.638 126.277V71.2968C132.638 69.6465 131.3 68.3087 129.65 68.3087H54.9481Z"
45
+ fill="#292A33"
151
46
  />
152
47
  <path
153
- d="M18.6765 44.8626C18.6765 44.3428 19.0979 43.9214 19.6177 43.9214H22.1275C22.6473 43.9214 23.0687 44.3428 23.0687 44.8626C23.0687 45.3824 22.6473 45.8037 22.1275 45.8037H19.6177C19.0979 45.8037 18.6765 45.3824 18.6765 44.8626Z"
154
- fill="#959CA8"
48
+ d="M156.542 122.094C156.542 121.434 157.077 120.899 157.737 120.899H167.897C168.557 120.899 169.092 121.434 169.092 122.094C169.092 122.754 168.557 123.289 167.897 123.289H157.737C157.077 123.289 156.542 122.754 156.542 122.094Z"
49
+ fill="#292A33"
155
50
  />
156
51
  <path
157
- d="M8.63721 44.8626C8.63721 44.3428 9.05859 43.9214 9.57838 43.9214H15.2254C15.7452 43.9214 16.1666 44.3428 16.1666 44.8626C16.1666 45.3824 15.7452 45.8037 15.2254 45.8037H9.57838C9.05859 45.8037 8.63721 45.3824 8.63721 44.8626Z"
158
- fill="#959CA8"
52
+ d="M132.638 120.899H152.244C152.909 120.899 153.449 121.438 153.449 122.104C153.449 122.77 152.909 123.309 152.244 123.309H132.638V120.899Z"
53
+ fill="#292A33"
159
54
  />
160
- </g>
161
- <g filter="url(#filter2_d_2573_15404)">
162
55
  <path
163
- d="M132.245 27.6079H167.382C168.075 27.6079 168.637 28.1697 168.637 28.8628V34.5099C168.637 35.2029 168.075 35.7648 167.382 35.7648H132.245V27.6079Z"
164
- fill="white"
56
+ d="M35.2269 122.094C35.2269 121.434 35.762 120.899 36.4221 120.899H51.96V123.289H36.4221C35.762 123.289 35.2269 122.754 35.2269 122.094Z"
57
+ fill="#292A33"
165
58
  />
166
59
  <path
167
- d="M157.343 31.6863C157.343 31.1665 157.765 30.7451 158.284 30.7451H164.559C165.079 30.7451 165.5 31.1665 165.5 31.6863C165.5 32.2061 165.079 32.6275 164.559 32.6275H158.284C157.765 32.6275 157.343 32.2061 157.343 31.6863Z"
168
- fill="#959CA8"
60
+ d="M25.0675 122.094C25.0675 121.434 25.6026 120.899 26.2627 120.899H31.0436C31.7037 120.899 32.2388 121.434 32.2388 122.094C32.2388 122.754 31.7037 123.289 31.0436 123.289H26.2627C25.6026 123.289 25.0675 122.754 25.0675 122.094Z"
61
+ fill="#292A33"
169
62
  />
170
63
  <path
171
- d="M150.441 31.6863C150.441 31.1665 150.863 30.7451 151.382 30.7451H153.892C154.412 30.7451 154.833 31.1665 154.833 31.6863C154.833 32.2061 154.412 32.6275 153.892 32.6275H151.382C150.863 32.6275 150.441 32.2061 150.441 31.6863Z"
172
- fill="#959CA8"
64
+ fillRule="evenodd"
65
+ clipRule="evenodd"
66
+ d="M90.2072 93.4087V98.7872H95.5857V93.4087C93.8736 92.6478 91.9192 92.6478 90.2072 93.4087ZM92.8964 96.3968C93.3915 96.3968 93.7928 95.9954 93.7928 95.5004C93.7928 95.0053 93.3915 94.6039 92.8964 94.6039C92.4013 94.6039 92 95.0053 92 95.5004C92 95.9954 92.4013 96.3968 92.8964 96.3968Z"
67
+ fill="#292A33"
173
68
  />
174
69
  <path
175
- d="M137.892 31.6863C137.892 31.1665 138.313 30.7451 138.833 30.7451H146.99C147.51 30.7451 147.931 31.1665 147.931 31.6863C147.931 32.2061 147.51 32.6275 146.99 32.6275H138.833C138.313 32.6275 137.892 32.2061 137.892 31.6863Z"
176
- fill="#959CA8"
70
+ fillRule="evenodd"
71
+ clipRule="evenodd"
72
+ d="M85.4262 111.181C85.8425 111.181 86.1799 111.518 86.1799 111.935C86.1799 112.839 86.9127 113.571 87.8166 113.571H96.7808C97.6847 113.571 98.4175 112.839 98.4175 111.935C98.4175 111.518 98.755 111.181 99.1713 111.181C99.5876 111.181 99.925 111.518 99.925 111.935C99.925 113.671 98.5173 115.079 96.7808 115.079H87.8166C86.0801 115.079 84.6724 113.671 84.6724 111.935C84.6724 111.518 85.0099 111.181 85.4262 111.181Z"
73
+ fill="#292A33"
177
74
  />
178
75
  <path
179
- d="M132.245 30.7451H134.441C134.961 30.7451 135.382 31.1665 135.382 31.6863C135.382 32.2061 134.961 32.6275 134.441 32.6275H132.245V30.7451Z"
180
- fill="#959CA8"
76
+ d="M51.9601 78.4677H132.638V80.2605H51.9601V78.4677Z"
77
+ fill="#292A33"
181
78
  />
182
- </g>
183
- <g filter="url(#filter3_d_2573_15404)">
184
79
  <path
185
- d="M122.833 35.7647C122.833 35.0716 123.395 34.5098 124.088 34.5098H172.402C173.095 34.5098 173.657 35.0716 173.657 35.7647V41.4117C173.657 42.1048 173.095 42.6666 172.402 42.6666H124.088C123.395 42.6666 122.833 42.1048 122.833 41.4117V35.7647Z"
186
- fill="white"
80
+ d="M27.4579 83.2494C27.4579 82.5893 27.993 82.0542 28.6531 82.0542H51.96V89.8232H28.6531C27.993 89.8232 27.4579 89.288 27.4579 88.6279V83.2494Z"
81
+ fill="#8F8CF0"
187
82
  />
188
83
  <path
189
- d="M159.225 38.5881C159.225 38.0684 159.647 37.647 160.167 37.647H169.578C170.098 37.647 170.519 38.0684 170.519 38.5881C170.519 39.1079 170.098 39.5293 169.578 39.5293H160.167C159.647 39.5293 159.225 39.1079 159.225 38.5881Z"
190
- fill="#959CA8"
84
+ d="M44.7886 85.9391C44.7886 85.4441 45.1899 85.0427 45.685 85.0427H51.9599V86.8356H45.685C45.1899 86.8356 44.7886 86.4342 44.7886 85.9391Z"
85
+ fill="#FEFEFE"
191
86
  />
192
87
  <path
193
- d="M143.539 38.5891C143.539 38.0693 143.96 37.6479 144.48 37.6479H155.774C156.294 37.6479 156.716 38.0693 156.716 38.5891C156.716 39.1089 156.294 39.5303 155.774 39.5303H144.48C143.96 39.5303 143.539 39.1089 143.539 38.5891Z"
194
- fill="#959CA8"
88
+ d="M30.4459 85.9391C30.4459 85.4441 30.8472 85.0427 31.3423 85.0427H41.5017C41.9968 85.0427 42.3981 85.4441 42.3981 85.9391C42.3981 86.4342 41.9968 86.8356 41.5017 86.8356H31.3423C30.8472 86.8356 30.4459 86.4342 30.4459 85.9391Z"
89
+ fill="#FEFEFE"
195
90
  />
196
91
  <path
197
- d="M136.01 38.5891C136.01 38.0693 136.431 37.6479 136.951 37.6479H140.088C140.608 37.6479 141.029 38.0693 141.029 38.5891C141.029 39.1089 140.608 39.5303 140.088 39.5303H136.951C136.431 39.5303 136.01 39.1089 136.01 38.5891Z"
198
- fill="#959CA8"
92
+ d="M11.92 89.8227C11.92 89.1626 12.4551 88.6274 13.1152 88.6274H59.1313C59.7914 88.6274 60.3266 89.1626 60.3266 89.8227V95.2012C60.3266 95.8613 59.7914 96.3964 59.1313 96.3964H13.1152C12.4551 96.3964 11.92 95.8613 11.92 95.2012V89.8227Z"
93
+ fill="#B4B3F4"
199
94
  />
200
95
  <path
201
- d="M125.97 38.5891C125.97 38.0693 126.392 37.6479 126.912 37.6479H132.559C133.078 37.6479 133.5 38.0693 133.5 38.5891C133.5 39.1089 133.078 39.5303 132.559 39.5303H126.912C126.392 39.5303 125.97 39.1089 125.97 38.5891Z"
202
- fill="#959CA8"
96
+ d="M45.9838 92.5124C45.9838 92.0173 46.3852 91.616 46.8802 91.616H56.442C56.9371 91.616 57.3385 92.0173 57.3385 92.5124C57.3385 93.0075 56.9371 93.4088 56.442 93.4088H46.8802C46.3852 93.4088 45.9838 93.0075 45.9838 92.5124Z"
97
+ fill="#FEFEFE"
203
98
  />
204
- </g>
205
- <path
206
- d="M85.8138 89.7252V83.4507H88.3236V91.2853C88.3236 91.8098 87.8984 92.235 87.3739 92.235H82.0491C81.356 92.235 80.7942 91.6732 80.7942 90.9801C80.7942 90.287 81.356 89.7252 82.0491 89.7252H85.8138Z"
207
- fill="#15749D"
208
- />
209
- <path
210
- d="M91.4609 91.2853V83.4507H93.9707V89.7252H97.7354C98.4285 89.7252 98.9903 90.287 98.9903 90.9801C98.9903 91.6732 98.4285 92.235 97.7354 92.235H92.4106C91.8861 92.235 91.4609 91.8098 91.4609 91.2853Z"
211
- fill="#15749D"
212
- />
213
- <path
214
- d="M132.245 62.7452V65.8824L140.19 70.4222C140.685 70.7055 141.31 70.6219 141.713 70.2182L152.324 59.6079H148.559L141.2 67.5796C141.1 67.688 140.939 67.7129 140.811 67.6398L132.245 62.7452Z"
215
- fill="#15749D"
216
- />
217
- <path
218
- d="M145.422 58.353C145.422 57.66 145.983 57.0981 146.677 57.0981H156.716C157.409 57.0981 157.971 57.66 157.971 58.353C157.971 59.0461 157.409 59.6079 156.716 59.6079H146.677C145.983 59.6079 145.422 59.0461 145.422 58.353Z"
219
- fill="#15749D"
220
- />
221
- <path
222
- fillRule="evenodd"
223
- clipRule="evenodd"
224
- d="M65.5753 47.93C66.1393 47.9988 66.5408 48.5117 66.4721 49.0757C66.4108 49.5788 66.3792 50.0915 66.3792 50.612C66.3792 52.5215 66.8047 54.329 67.5652 55.9474C67.8068 56.4617 67.5858 57.0744 67.0716 57.3161C66.5573 57.5577 65.9445 57.3368 65.7029 56.8225C64.8164 54.9361 64.3215 52.8304 64.3215 50.612C64.3215 50.0081 64.3582 49.4123 64.4296 48.8268C64.4983 48.2628 65.0112 47.8613 65.5753 47.93Z"
225
- fill="#15749D"
226
- />
227
- <path
228
- d="M47.5393 66.5095V63.3722L46.2844 62.7448C52.2747 60.2933 65.7354 55.2154 65.7354 55.2154V52.0781L42.2512 61.8155C41.3742 62.1791 41.3309 63.4053 42.1801 63.8299L47.5393 66.5095Z"
229
- fill="#15749D"
230
- />
231
- <g filter="url(#filter4_d_2573_15404)">
232
- <path
233
- d="M142.912 39.5293C142.912 38.1432 144.036 37.0195 145.422 37.0195H157.971C159.357 37.0195 160.48 38.1432 160.48 39.5293V52.0784C160.48 53.4645 159.357 54.5882 157.971 54.5882H145.422C144.036 54.5882 142.912 53.4645 142.912 52.0784V39.5293Z"
234
- fill="#15749D"
99
+ <path
100
+ d="M31.0435 92.5124C31.0435 92.0173 31.4449 91.616 31.9399 91.616H42.697C43.192 91.616 43.5934 92.0173 43.5934 92.5124C43.5934 93.0075 43.192 93.4088 42.697 93.4088H31.9399C31.4449 93.4088 31.0435 93.0075 31.0435 92.5124Z"
101
+ fill="#FEFEFE"
102
+ />
103
+ <path
104
+ d="M24.4698 92.5124C24.4698 92.0173 24.8711 91.616 25.3662 91.616H27.7567C28.2517 91.616 28.6531 92.0173 28.6531 92.5124C28.6531 93.0075 28.2517 93.4088 27.7567 93.4088H25.3662C24.8711 93.4088 24.4698 93.0075 24.4698 92.5124Z"
105
+ fill="#FEFEFE"
106
+ />
107
+ <path
108
+ d="M14.908 92.5124C14.908 92.0173 15.3093 91.616 15.8044 91.616H21.1829C21.678 91.616 22.0793 92.0173 22.0793 92.5124C22.0793 93.0075 21.678 93.4088 21.1829 93.4088H15.8044C15.3093 93.4088 14.908 93.0075 14.908 92.5124Z"
109
+ fill="#FEFEFE"
110
+ />
111
+ <path
112
+ d="M132.638 76.0773H166.104C166.764 76.0773 167.299 76.6124 167.299 77.2725V82.651C167.299 83.3111 166.764 83.8462 166.104 83.8462H132.638V76.0773Z"
113
+ fill="#8F8CF0"
114
+ />
115
+ <path
116
+ d="M156.542 79.9621C156.542 79.467 156.943 79.0657 157.439 79.0657H163.415C163.91 79.0657 164.311 79.467 164.311 79.9621C164.311 80.4572 163.91 80.8585 163.415 80.8585H157.439C156.943 80.8585 156.542 80.4572 156.542 79.9621Z"
117
+ fill="#FEFEFE"
118
+ />
119
+ <path
120
+ d="M149.968 79.9621C149.968 79.467 150.37 79.0657 150.865 79.0657H153.255C153.75 79.0657 154.152 79.467 154.152 79.9621C154.152 80.4572 153.75 80.8585 153.255 80.8585H150.865C150.37 80.8585 149.968 80.4572 149.968 79.9621Z"
121
+ fill="#FEFEFE"
122
+ />
123
+ <path
124
+ d="M138.016 79.9621C138.016 79.467 138.417 79.0657 138.913 79.0657H146.681C147.177 79.0657 147.578 79.467 147.578 79.9621C147.578 80.4572 147.177 80.8585 146.681 80.8585H138.913C138.417 80.8585 138.016 80.4572 138.016 79.9621Z"
125
+ fill="#FEFEFE"
126
+ />
127
+ <path
128
+ d="M132.638 79.0657H134.729C135.224 79.0657 135.626 79.467 135.626 79.9621C135.626 80.4572 135.224 80.8585 134.729 80.8585H132.638V79.0657Z"
129
+ fill="#FEFEFE"
130
+ />
131
+ <path
132
+ d="M123.673 83.8466C123.673 83.1865 124.209 82.6514 124.869 82.6514H170.885C171.545 82.6514 172.08 83.1865 172.08 83.8466V89.2251C172.08 89.8852 171.545 90.4203 170.885 90.4203H124.869C124.209 90.4203 123.673 89.8852 123.673 89.2251V83.8466Z"
133
+ fill="#B4B3F4"
134
+ />
135
+ <path
136
+ d="M158.335 86.5363C158.335 86.0412 158.736 85.6399 159.231 85.6399H168.195C168.691 85.6399 169.092 86.0412 169.092 86.5363C169.092 87.0314 168.691 87.4327 168.195 87.4327H159.231C158.736 87.4327 158.335 87.0314 158.335 86.5363Z"
137
+ fill="#FEFEFE"
138
+ />
139
+ <path
140
+ d="M143.395 86.5373C143.395 86.0422 143.796 85.6409 144.291 85.6409H155.048C155.543 85.6409 155.944 86.0422 155.944 86.5373C155.944 87.0324 155.543 87.4337 155.048 87.4337H144.291C143.796 87.4337 143.395 87.0324 143.395 86.5373Z"
141
+ fill="#FEFEFE"
142
+ />
143
+ <path
144
+ d="M136.223 86.5373C136.223 86.0422 136.625 85.6409 137.12 85.6409H140.108C140.603 85.6409 141.004 86.0422 141.004 86.5373C141.004 87.0324 140.603 87.4337 140.108 87.4337H137.12C136.625 87.4337 136.223 87.0324 136.223 86.5373Z"
145
+ fill="#FEFEFE"
146
+ />
147
+ <path
148
+ d="M126.661 86.5375C126.661 86.0425 127.063 85.6411 127.558 85.6411H132.936C133.431 85.6411 133.833 86.0425 133.833 86.5375C133.833 87.0326 133.431 87.4339 132.936 87.4339H127.558C127.063 87.4339 126.661 87.0326 126.661 86.5375Z"
149
+ fill="#FEFEFE"
150
+ />
151
+ <path
152
+ d="M90.8045 136.727C90.8045 137.227 90.3998 137.632 89.9002 137.632H84.8289C84.1688 137.632 83.6336 137.097 83.6336 136.436C83.6338 135.776 84.169 135.241 84.8289 135.241H88.4139V129.266H90.8045V136.727ZM96.1834 135.241H99.7694C100.429 135.241 100.964 135.777 100.964 136.436C100.964 137.096 100.429 137.631 99.7694 137.632H94.6971C94.1977 137.632 93.7928 137.227 93.7928 136.727V129.266H96.1834V135.241ZM155.944 104.165C156.604 104.165 157.139 104.7 157.139 105.36C157.139 106.02 156.604 106.556 155.944 106.556H151.762L141.655 116.661C141.271 117.046 140.676 117.125 140.204 116.855L132.638 112.532V109.544L140.796 114.206C140.918 114.276 141.072 114.251 141.167 114.148L148.176 106.556H146.383C145.723 106.556 145.187 106.02 145.187 105.36C145.187 104.7 145.723 104.165 146.383 104.165H155.944ZM69.1385 95.4335C69.6757 95.499 70.0575 95.9881 69.992 96.5253C69.9337 97.0043 69.9042 97.4925 69.9041 97.9882C69.9041 99.8069 70.3097 101.529 71.034 103.07C71.264 103.56 71.053 104.144 70.5633 104.374C70.0736 104.604 69.4897 104.393 69.2596 103.903C69.0591 103.476 68.8796 103.038 68.7225 102.589C66.1789 103.551 55.7523 107.503 50.7645 109.544L51.9598 110.141V113.13L46.8553 110.577C46.0469 110.172 46.0885 109.005 46.9237 108.659L68.0731 99.8885C67.9882 99.267 67.9442 98.6325 67.9442 97.9882C67.9442 97.4131 67.9788 96.8456 68.0467 96.288C68.1122 95.7508 68.6013 95.368 69.1385 95.4335ZM157.139 85.0419C158.46 85.0419 159.53 86.1123 159.53 87.4325V99.3846C159.53 100.705 158.46 101.775 157.139 101.775H145.187C143.867 101.775 142.797 100.705 142.797 99.3846V87.4325C142.797 86.1123 143.867 85.0419 145.187 85.0419H157.139Z"
153
+ fill="#6145F7"
235
154
  />
236
- </g>
237
- <path
238
- fillRule="evenodd"
239
- clipRule="evenodd"
240
- d="M152.597 43.0261C153.484 43.9134 153.568 45.2997 152.849 46.2816L154.965 48.3975C155.014 48.4468 155.014 48.5267 154.965 48.5759L154.597 48.9436C154.548 48.9929 154.468 48.9929 154.419 48.9436L152.303 46.8276C151.321 47.5468 149.934 47.4628 149.047 46.5755C148.067 45.5953 148.067 44.0062 149.047 43.0261C150.027 42.0459 151.616 42.0459 152.597 43.0261ZM152.051 46.0295C152.729 45.3509 152.729 44.2508 152.051 43.5722C151.372 42.8936 150.272 42.8936 149.593 43.5722C148.915 44.2508 148.915 45.3509 149.593 46.0295C150.272 46.708 151.372 46.708 152.051 46.0295Z"
241
- fill="white"
242
- />
243
- <mask
244
- id="mask0_2573_15404"
245
- style={{ maskType: "alpha" }}
246
- maskUnits="userSpaceOnUse"
247
- x="148"
248
- y="42"
249
- width="8"
250
- height="7"
251
- >
252
155
  <path
253
156
  fillRule="evenodd"
254
157
  clipRule="evenodd"
255
- d="M152.597 43.0261C153.484 43.9134 153.568 45.2997 152.849 46.2816L154.965 48.3975C155.014 48.4468 155.014 48.5267 154.965 48.5759L154.597 48.9436C154.548 48.9929 154.468 48.9929 154.419 48.9436L152.303 46.8276C151.321 47.5468 149.934 47.4628 149.047 46.5755C148.067 45.5953 148.067 44.0062 149.047 43.0261C150.027 42.0459 151.616 42.0459 152.597 43.0261ZM152.051 46.0295C152.729 45.3509 152.729 44.2508 152.051 43.5722C151.372 42.8936 150.272 42.8936 149.593 43.5722C148.915 44.2508 148.915 45.3509 149.593 46.0295C150.272 46.708 151.372 46.708 152.051 46.0295Z"
256
- fill="white"
158
+ d="M152.021 90.7636C152.866 91.6087 152.946 92.9291 152.261 93.8643L154.221 95.8237C154.299 95.9015 154.299 96.0276 154.221 96.1054L153.982 96.3438C153.905 96.4216 153.778 96.4216 153.701 96.3438L151.741 94.3844C150.806 95.0694 149.486 94.9893 148.641 94.1442C147.707 93.2107 147.707 91.6972 148.641 90.7636C149.574 89.8301 151.088 89.8301 152.021 90.7636ZM151.501 93.6241C152.147 92.9778 152.147 91.93 151.501 91.2837C150.855 90.6374 149.807 90.6374 149.161 91.2837C148.514 91.93 148.514 92.9778 149.161 93.6241C149.807 94.2704 150.855 94.2704 151.501 93.6241Z"
159
+ fill="#FEFEFE"
257
160
  />
258
- </mask>
259
- <g mask="url(#mask0_2573_15404)">
260
- <rect
261
- x="146.677"
262
- y="40.7842"
263
- width="10.0392"
264
- height="10.0392"
265
- fill="white"
161
+ <path
162
+ d="M81.5421 88.0298C86.9878 88.0299 91.4024 92.4453 91.4024 97.8911C91.4023 103.337 86.9877 107.751 81.5421 107.751C76.0963 107.751 71.6809 103.337 71.6807 97.8911C71.6807 92.4453 76.0962 88.0298 81.5421 88.0298ZM81.5421 89.5376C76.9288 89.5376 73.1885 93.2778 73.1885 97.8911C73.1886 102.504 76.9288 106.244 81.5421 106.244C86.1551 106.244 89.8945 102.504 89.8946 97.8911C89.8946 93.2779 86.1552 89.5377 81.5421 89.5376Z"
163
+ fill="#292A33"
164
+ />
165
+ <path
166
+ d="M104.251 88.0298C109.697 88.0298 114.111 92.4453 114.111 97.8911C114.111 103.337 109.697 107.751 104.251 107.751C98.8053 107.751 94.3908 103.337 94.3907 97.8911C94.3907 92.4453 98.8052 88.0298 104.251 88.0298ZM104.251 89.5376C99.6378 89.5376 95.8975 93.2778 95.8975 97.8911C95.8976 102.504 99.6378 106.244 104.251 106.244C108.864 106.244 112.604 102.504 112.605 97.8911C112.605 93.2778 108.864 89.5376 104.251 89.5376Z"
167
+ fill="#292A33"
168
+ />
169
+ <path
170
+ fillRule="evenodd"
171
+ clipRule="evenodd"
172
+ d="M81.5418 97.748C80.5069 97.748 79.7606 98.3498 79.5775 98.9934C79.4636 99.3938 79.0466 99.626 78.6462 99.5121C78.2458 99.3981 78.0136 98.9812 78.1275 98.5808C78.5298 97.167 79.9695 96.2405 81.5418 96.2405C83.1141 96.2405 84.5537 97.167 84.956 98.5808C85.0699 98.9812 84.8377 99.3981 84.4373 99.5121C84.0369 99.626 83.62 99.3938 83.5061 98.9934C83.3229 98.3498 82.5766 97.748 81.5418 97.748Z"
173
+ fill="#292A33"
174
+ />
175
+ <path
176
+ d="M81.5421 89.5376C86.1552 89.5377 89.8946 93.2779 89.8946 97.8911C89.8945 102.504 86.1551 106.244 81.5421 106.244C76.9288 106.244 73.1886 102.504 73.1885 97.8911C73.1885 93.2778 76.9288 89.5376 81.5421 89.5376ZM81.5421 96.2407C79.9699 96.2407 78.5304 97.167 78.128 98.5806C78.0141 98.981 78.2462 99.3983 78.6465 99.5122C79.0467 99.6259 79.4632 99.3937 79.5772 98.9937C79.7603 98.3501 80.5072 97.7476 81.5421 97.7476C82.5768 97.7477 83.3228 98.3502 83.5059 98.9937C83.6199 99.3939 84.0372 99.6261 84.4376 99.5122C84.8379 99.3982 85.07 98.9809 84.9561 98.5806C84.5538 97.167 83.1142 96.2408 81.5421 96.2407Z"
177
+ fill="#D9DAF9"
178
+ />
179
+ <path
180
+ fillRule="evenodd"
181
+ clipRule="evenodd"
182
+ d="M104.251 97.7479C103.216 97.7479 102.47 98.3497 102.287 98.9933C102.173 99.3936 101.756 99.6259 101.356 99.5119C100.955 99.398 100.723 98.9811 100.837 98.5807C101.239 97.1669 102.679 96.2404 104.251 96.2404C105.823 96.2404 107.263 97.1669 107.665 98.5807C107.779 98.9811 107.547 99.398 107.147 99.5119C106.746 99.6259 106.329 99.3936 106.215 98.9933C106.032 98.3497 105.286 97.7479 104.251 97.7479Z"
183
+ fill="#292A33"
184
+ />
185
+ <path
186
+ d="M104.251 89.5376C108.864 89.5376 112.605 93.2778 112.605 97.8911C112.604 102.504 108.864 106.244 104.251 106.244C99.6378 106.244 95.8976 102.504 95.8975 97.8911C95.8975 93.2778 99.6378 89.5376 104.251 89.5376ZM104.251 96.2407C102.679 96.2407 101.239 97.1669 100.837 98.5806C100.723 98.981 100.955 99.3983 101.356 99.5122C101.756 99.6261 102.173 99.3939 102.287 98.9937C102.47 98.3501 103.216 97.7476 104.251 97.7476C105.286 97.7476 106.032 98.3501 106.215 98.9937C106.329 99.3938 106.746 99.626 107.147 99.5122C107.547 99.3983 107.779 98.981 107.665 98.5806C107.263 97.1669 105.823 96.2407 104.251 96.2407Z"
187
+ fill="#D9DAF9"
266
188
  />
267
189
  </g>
268
- <defs>
269
- <filter
270
- id="filter0_d_2573_15404"
271
- x="16.8137"
272
- y="28.8823"
273
- width="35.7256"
274
- height="18.1567"
275
- filterUnits="userSpaceOnUse"
276
- colorInterpolationFilters="sRGB"
277
- >
278
- <feFlood floodOpacity="0" result="BackgroundImageFix" />
279
- <feColorMatrix
280
- in="SourceAlpha"
281
- type="matrix"
282
- values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
283
- result="hardAlpha"
284
- />
285
- <feOffset />
286
- <feGaussianBlur stdDeviation="2.5" />
287
- <feComposite in2="hardAlpha" operator="out" />
288
- <feColorMatrix
289
- type="matrix"
290
- values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0"
291
- />
292
- <feBlend
293
- mode="normal"
294
- in2="BackgroundImageFix"
295
- result="effect1_dropShadow_2573_15404"
296
- />
297
- <feBlend
298
- mode="normal"
299
- in="SourceGraphic"
300
- in2="effect1_dropShadow_2573_15404"
301
- result="shape"
302
- />
303
- </filter>
304
- <filter
305
- id="filter1_d_2573_15404"
306
- x="0.5"
307
- y="35.7842"
308
- width="60.8235"
309
- height="18.1567"
310
- filterUnits="userSpaceOnUse"
311
- colorInterpolationFilters="sRGB"
312
- >
313
- <feFlood floodOpacity="0" result="BackgroundImageFix" />
314
- <feColorMatrix
315
- in="SourceAlpha"
316
- type="matrix"
317
- values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
318
- result="hardAlpha"
319
- />
320
- <feOffset />
321
- <feGaussianBlur stdDeviation="2.5" />
322
- <feComposite in2="hardAlpha" operator="out" />
323
- <feColorMatrix
324
- type="matrix"
325
- values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0"
326
- />
327
- <feBlend
328
- mode="normal"
329
- in2="BackgroundImageFix"
330
- result="effect1_dropShadow_2573_15404"
331
- />
332
- <feBlend
333
- mode="normal"
334
- in="SourceGraphic"
335
- in2="effect1_dropShadow_2573_15404"
336
- result="shape"
337
- />
338
- </filter>
339
- <filter
340
- id="filter2_d_2573_15404"
341
- x="127.245"
342
- y="22.6079"
343
- width="46.3921"
344
- height="18.1567"
345
- filterUnits="userSpaceOnUse"
346
- colorInterpolationFilters="sRGB"
347
- >
348
- <feFlood floodOpacity="0" result="BackgroundImageFix" />
349
- <feColorMatrix
350
- in="SourceAlpha"
351
- type="matrix"
352
- values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
353
- result="hardAlpha"
354
- />
355
- <feOffset />
356
- <feGaussianBlur stdDeviation="2.5" />
357
- <feComposite in2="hardAlpha" operator="out" />
358
- <feColorMatrix
359
- type="matrix"
360
- values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0"
361
- />
362
- <feBlend
363
- mode="normal"
364
- in2="BackgroundImageFix"
365
- result="effect1_dropShadow_2573_15404"
366
- />
367
- <feBlend
368
- mode="normal"
369
- in="SourceGraphic"
370
- in2="effect1_dropShadow_2573_15404"
371
- result="shape"
372
- />
373
- </filter>
374
- <filter
375
- id="filter3_d_2573_15404"
376
- x="117.833"
377
- y="29.5098"
378
- width="60.8235"
379
- height="18.1567"
380
- filterUnits="userSpaceOnUse"
381
- colorInterpolationFilters="sRGB"
382
- >
383
- <feFlood floodOpacity="0" result="BackgroundImageFix" />
384
- <feColorMatrix
385
- in="SourceAlpha"
386
- type="matrix"
387
- values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
388
- result="hardAlpha"
389
- />
390
- <feOffset />
391
- <feGaussianBlur stdDeviation="2.5" />
392
- <feComposite in2="hardAlpha" operator="out" />
393
- <feColorMatrix
394
- type="matrix"
395
- values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0"
396
- />
397
- <feBlend
398
- mode="normal"
399
- in2="BackgroundImageFix"
400
- result="effect1_dropShadow_2573_15404"
401
- />
402
- <feBlend
403
- mode="normal"
404
- in="SourceGraphic"
405
- in2="effect1_dropShadow_2573_15404"
406
- result="shape"
407
- />
408
- </filter>
409
- <filter
410
- id="filter4_d_2573_15404"
411
- x="132.822"
412
- y="26.9292"
413
- width="37.7492"
414
- height="37.7494"
415
- filterUnits="userSpaceOnUse"
416
- colorInterpolationFilters="sRGB"
417
- >
418
- <feFlood floodOpacity="0" result="BackgroundImageFix" />
419
- <feColorMatrix
420
- in="SourceAlpha"
421
- type="matrix"
422
- values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
423
- result="hardAlpha"
424
- />
425
- <feOffset />
426
- <feGaussianBlur stdDeviation="5.04515" />
427
- <feComposite in2="hardAlpha" operator="out" />
428
- <feColorMatrix
429
- type="matrix"
430
- values="0 0 0 0 0.0823529 0 0 0 0 0.454902 0 0 0 0 0.615686 0 0 0 0.5 0"
431
- />
432
- <feBlend
433
- mode="normal"
434
- in2="BackgroundImageFix"
435
- result="effect1_dropShadow_2573_15404"
436
- />
437
- <feBlend
438
- mode="normal"
439
- in="SourceGraphic"
440
- in2="effect1_dropShadow_2573_15404"
441
- result="shape"
442
- />
443
- </filter>
444
- </defs>
445
190
  </svg>
446
191
  );
447
192
  };