@designcrowd/fe-shared-lib 1.5.33 → 1.5.35

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 (782) hide show
  1. package/.claude/settings.local.json +9 -0
  2. package/.eslintrc.js +36 -36
  3. package/.github/workflows/auto-merge.yml +52 -52
  4. package/.github/workflows/claude.yml +72 -72
  5. package/.prettierrc.js +7 -7
  6. package/.storybook/main.ts +36 -36
  7. package/.storybook/preview-head-master.html +4 -4
  8. package/.storybook/preview-head-publish-master.html +4 -4
  9. package/.storybook/preview-head-publish.html +9 -9
  10. package/.storybook/preview-head.html +9 -9
  11. package/.storybook/preview.js +53 -53
  12. package/.storybook-static/css/.keepme +0 -0
  13. package/CLAUDE.md +94 -94
  14. package/Dockerfile +43 -43
  15. package/README.md +103 -103
  16. package/buildspec.yml +47 -47
  17. package/dist/css/tailwind-brandCrowd.css +505 -496
  18. package/dist/css/tailwind-brandPage.css +423 -414
  19. package/dist/css/tailwind-crazyDomains.css +505 -496
  20. package/dist/css/tailwind-designCom.css +505 -496
  21. package/dist/css/tailwind-designCrowd.css +505 -496
  22. package/docs/plans/DY-957-plan-phase-2-fe-shared-lib.md +382 -0
  23. package/index.cjs +16 -16
  24. package/index.js +62 -61
  25. package/nodemon.translation.json +6 -6
  26. package/npmrc +0 -0
  27. package/package.json +115 -115
  28. package/postcss.config.js +5 -5
  29. package/public/css/.keepme +0 -0
  30. package/public/css/tailwind-brandCrowd.css +2497 -0
  31. package/public/css/tailwind-brandPage.css +2197 -0
  32. package/public/css/tailwind-crazyDomains.css +2497 -0
  33. package/public/css/tailwind-designCom.css +2497 -0
  34. package/public/css/tailwind-designCrowd.css +2497 -0
  35. package/src/atoms/components/AiPoweredLoader/AiPoweredLoader.stories.js +364 -364
  36. package/src/atoms/components/AiPoweredLoader/AiPoweredLoader.vue +296 -296
  37. package/src/atoms/components/Button/Button.vue +341 -341
  38. package/src/atoms/components/Button/ButtonVariant.mixin.vue +126 -126
  39. package/src/atoms/components/Button/Buttons.stories.js +828 -828
  40. package/src/atoms/components/Button/ButtonsCrazyDomains.stories.js +117 -117
  41. package/src/atoms/components/Button/variants/ButtonAi.vue +63 -63
  42. package/src/atoms/components/Button/variants/ButtonDarkModePill.vue +52 -52
  43. package/src/atoms/components/Button/variants/ButtonFlat.vue +65 -65
  44. package/src/atoms/components/Button/variants/ButtonGray.vue +64 -64
  45. package/src/atoms/components/Button/variants/ButtonInfo.vue +51 -51
  46. package/src/atoms/components/Button/variants/ButtonInfoFilled.vue +63 -63
  47. package/src/atoms/components/Button/variants/ButtonNoBorder.vue +65 -65
  48. package/src/atoms/components/Button/variants/ButtonOutline.vue +62 -62
  49. package/src/atoms/components/Button/variants/ButtonOutlineNoHover.vue +62 -62
  50. package/src/atoms/components/Button/variants/ButtonOutlinePrimary.vue +53 -53
  51. package/src/atoms/components/Button/variants/ButtonOutlineSuccess.vue +54 -54
  52. package/src/atoms/components/Button/variants/ButtonPill.vue +52 -52
  53. package/src/atoms/components/Button/variants/ButtonPrimary.vue +69 -69
  54. package/src/atoms/components/Button/variants/ButtonPrimaryWithIcon.vue +68 -68
  55. package/src/atoms/components/Button/variants/ButtonSecondary.vue +51 -51
  56. package/src/atoms/components/Button/variants/ButtonSuccess.vue +55 -55
  57. package/src/atoms/components/Button/variants/ButtonWarning.vue +65 -65
  58. package/src/atoms/components/Button/variants/crazy-domains/ButtonCrazyDomainsOutline.vue +58 -58
  59. package/src/atoms/components/Button/variants/crazy-domains/ButtonCrazyDomainsPrimary.vue +38 -38
  60. package/src/atoms/components/ButtonGroup/ButtonGroup.stories.js +575 -575
  61. package/src/atoms/components/ButtonGroup/ButtonGroup.vue +200 -200
  62. package/src/atoms/components/Carousel/Carousel.fixtures.js +53 -53
  63. package/src/atoms/components/Carousel/Carousel.vue +352 -352
  64. package/src/atoms/components/Carousel/carousel.stories.js +530 -530
  65. package/src/atoms/components/Checkbox/Checkbox.mixin.js +57 -57
  66. package/src/atoms/components/Checkbox/Checkbox.stories.js +340 -340
  67. package/src/atoms/components/Checkbox/Checkbox.vue +84 -84
  68. package/src/atoms/components/Checktile/Checktile.stories.js +79 -79
  69. package/src/atoms/components/Checktile/Checktile.vue +73 -73
  70. package/src/atoms/components/CollapsiblePanel/CollapsiblePanel.mixin.js +38 -38
  71. package/src/atoms/components/CollapsiblePanel/CollapsiblePanel.stories.js +53 -53
  72. package/src/atoms/components/CollapsiblePanel/CollapsiblePanel.vue +33 -33
  73. package/src/atoms/components/ColorPicker/ColorPicker.stories.js +89 -89
  74. package/src/atoms/components/ColorPicker/ColorPicker.vue +95 -95
  75. package/src/atoms/components/CopyToClipboardText/CopyToClipboardText.stories.js +41 -41
  76. package/src/atoms/components/CopyToClipboardText/CopyToClipboardText.vue +71 -71
  77. package/src/atoms/components/Dropdown/Dropdown.stories.js +140 -140
  78. package/src/atoms/components/Dropdown/Dropdown.vue +123 -123
  79. package/src/atoms/components/Dropdown/DropdownItem.vue +33 -33
  80. package/src/atoms/components/FormControl/FormControl.mixin.js +136 -136
  81. package/src/atoms/components/HelloBar/HelloBar.stories.js +195 -195
  82. package/src/atoms/components/HelloBar/HelloBar.vue +156 -156
  83. package/src/atoms/components/Icon/Icon.stories.js +408 -408
  84. package/src/atoms/components/Icon/Icon.vue +924 -924
  85. package/src/atoms/components/Icon/icons/about.vue +0 -0
  86. package/src/atoms/components/Icon/icons/add-page.vue +6 -6
  87. package/src/atoms/components/Icon/icons/ai.vue +6 -6
  88. package/src/atoms/components/Icon/icons/annotate-heart.vue +7 -7
  89. package/src/atoms/components/Icon/icons/arrow-down.vue +6 -6
  90. package/src/atoms/components/Icon/icons/arrow-left.vue +7 -7
  91. package/src/atoms/components/Icon/icons/arrow-right.vue +7 -7
  92. package/src/atoms/components/Icon/icons/arrow-top-right.vue +6 -6
  93. package/src/atoms/components/Icon/icons/arrow-up-underline.vue +7 -7
  94. package/src/atoms/components/Icon/icons/arrow-up.vue +7 -7
  95. package/src/atoms/components/Icon/icons/attach.vue +6 -6
  96. package/src/atoms/components/Icon/icons/auth-facebook-white.vue +17 -17
  97. package/src/atoms/components/Icon/icons/auth-facebook.vue +24 -24
  98. package/src/atoms/components/Icon/icons/auth-google.vue +32 -32
  99. package/src/atoms/components/Icon/icons/award.vue +7 -7
  100. package/src/atoms/components/Icon/icons/background.vue +7 -7
  101. package/src/atoms/components/Icon/icons/badge.vue +7 -7
  102. package/src/atoms/components/Icon/icons/ban.vue +0 -0
  103. package/src/atoms/components/Icon/icons/banner-centered.vue +6 -6
  104. package/src/atoms/components/Icon/icons/banner-left.vue +6 -6
  105. package/src/atoms/components/Icon/icons/banner.vue +7 -7
  106. package/src/atoms/components/Icon/icons/bc-mast.vue +7 -7
  107. package/src/atoms/components/Icon/icons/bezier-curve-outline.vue +7 -7
  108. package/src/atoms/components/Icon/icons/bezier-curve.vue +7 -7
  109. package/src/atoms/components/Icon/icons/briefcase.vue +7 -7
  110. package/src/atoms/components/Icon/icons/browser.vue +7 -7
  111. package/src/atoms/components/Icon/icons/brush.vue +6 -6
  112. package/src/atoms/components/Icon/icons/business-card-filled.vue +5 -5
  113. package/src/atoms/components/Icon/icons/business.vue +6 -6
  114. package/src/atoms/components/Icon/icons/button-justified.vue +0 -0
  115. package/src/atoms/components/Icon/icons/button.vue +0 -0
  116. package/src/atoms/components/Icon/icons/buttons/button-arrow-left.vue +0 -0
  117. package/src/atoms/components/Icon/icons/buttons/button-arrow-right.vue +0 -0
  118. package/src/atoms/components/Icon/icons/buttons/button-arrow.vue +0 -0
  119. package/src/atoms/components/Icon/icons/buttons/button-brushstroke-left.vue +0 -0
  120. package/src/atoms/components/Icon/icons/buttons/button-brushstroke-right.vue +0 -0
  121. package/src/atoms/components/Icon/icons/buttons/button-brushstroke.vue +0 -0
  122. package/src/atoms/components/Icon/icons/buttons/button-dashed-oval.vue +0 -0
  123. package/src/atoms/components/Icon/icons/buttons/button-dashed-rectangle.vue +0 -0
  124. package/src/atoms/components/Icon/icons/buttons/button-dashed-rounded.vue +0 -0
  125. package/src/atoms/components/Icon/icons/buttons/button-doubleline-oval.vue +0 -0
  126. package/src/atoms/components/Icon/icons/buttons/button-doubleline-rectangle.vue +0 -0
  127. package/src/atoms/components/Icon/icons/buttons/button-doubleline-rounded.vue +0 -0
  128. package/src/atoms/components/Icon/icons/buttons/button-paper-bottom.vue +0 -0
  129. package/src/atoms/components/Icon/icons/buttons/button-paper-top.vue +0 -0
  130. package/src/atoms/components/Icon/icons/buttons/button-paper.vue +0 -0
  131. package/src/atoms/components/Icon/icons/buttons/button-softshadow-oval.vue +0 -0
  132. package/src/atoms/components/Icon/icons/buttons/button-softshadow-rectangle.vue +0 -0
  133. package/src/atoms/components/Icon/icons/buttons/button-softshadow-rounded.vue +0 -0
  134. package/src/atoms/components/Icon/icons/calculator.vue +3 -3
  135. package/src/atoms/components/Icon/icons/calendar.vue +5 -5
  136. package/src/atoms/components/Icon/icons/callout-error.vue +6 -6
  137. package/src/atoms/components/Icon/icons/callout-info.vue +6 -6
  138. package/src/atoms/components/Icon/icons/callout-success.vue +8 -8
  139. package/src/atoms/components/Icon/icons/callout-warning.vue +6 -6
  140. package/src/atoms/components/Icon/icons/cap.vue +22 -22
  141. package/src/atoms/components/Icon/icons/card-vertical.vue +7 -7
  142. package/src/atoms/components/Icon/icons/card.vue +9 -9
  143. package/src/atoms/components/Icon/icons/cart-empty.vue +9 -9
  144. package/src/atoms/components/Icon/icons/check-thin.vue +7 -7
  145. package/src/atoms/components/Icon/icons/check.vue +3 -3
  146. package/src/atoms/components/Icon/icons/chevron-down.vue +7 -7
  147. package/src/atoms/components/Icon/icons/chevron-left.vue +7 -7
  148. package/src/atoms/components/Icon/icons/chevron-right-wide.vue +3 -3
  149. package/src/atoms/components/Icon/icons/chevron-right.vue +3 -3
  150. package/src/atoms/components/Icon/icons/chevron-up.vue +7 -7
  151. package/src/atoms/components/Icon/icons/clipboard-check.vue +6 -6
  152. package/src/atoms/components/Icon/icons/close.vue +6 -6
  153. package/src/atoms/components/Icon/icons/column-1.vue +0 -0
  154. package/src/atoms/components/Icon/icons/column-2.vue +0 -0
  155. package/src/atoms/components/Icon/icons/column-3.vue +0 -0
  156. package/src/atoms/components/Icon/icons/column-4.vue +0 -0
  157. package/src/atoms/components/Icon/icons/community.vue +5 -5
  158. package/src/atoms/components/Icon/icons/contact-message.vue +10 -10
  159. package/src/atoms/components/Icon/icons/content.vue +7 -7
  160. package/src/atoms/components/Icon/icons/copy.vue +10 -10
  161. package/src/atoms/components/Icon/icons/crazy-domains/filter.vue +6 -6
  162. package/src/atoms/components/Icon/icons/crazy-domains/globe.vue +6 -6
  163. package/src/atoms/components/Icon/icons/crazy-domains/home.vue +6 -6
  164. package/src/atoms/components/Icon/icons/crazy-domains/social-facebook.vue +6 -6
  165. package/src/atoms/components/Icon/icons/crazy-domains/social-google.vue +6 -6
  166. package/src/atoms/components/Icon/icons/crazy-domains/social-instagram.vue +6 -6
  167. package/src/atoms/components/Icon/icons/crazy-domains/social-twitter.vue +6 -6
  168. package/src/atoms/components/Icon/icons/crazy-domains/social-youtube.vue +6 -6
  169. package/src/atoms/components/Icon/icons/crop.vue +6 -6
  170. package/src/atoms/components/Icon/icons/crown-alt.vue +5 -5
  171. package/src/atoms/components/Icon/icons/crown.vue +6 -6
  172. package/src/atoms/components/Icon/icons/delete.vue +8 -8
  173. package/src/atoms/components/Icon/icons/designs.vue +6 -6
  174. package/src/atoms/components/Icon/icons/desktop.vue +7 -7
  175. package/src/atoms/components/Icon/icons/digital-business-card-filled.vue +8 -8
  176. package/src/atoms/components/Icon/icons/divider-thick.vue +0 -0
  177. package/src/atoms/components/Icon/icons/divider-thin.vue +0 -0
  178. package/src/atoms/components/Icon/icons/divider.vue +0 -0
  179. package/src/atoms/components/Icon/icons/donate.vue +6 -6
  180. package/src/atoms/components/Icon/icons/download.vue +5 -5
  181. package/src/atoms/components/Icon/icons/duplicate.vue +6 -6
  182. package/src/atoms/components/Icon/icons/edit-line.vue +10 -10
  183. package/src/atoms/components/Icon/icons/edit.vue +6 -6
  184. package/src/atoms/components/Icon/icons/ellipsis.vue +6 -6
  185. package/src/atoms/components/Icon/icons/envelope-email.vue +9 -9
  186. package/src/atoms/components/Icon/icons/error.vue +8 -8
  187. package/src/atoms/components/Icon/icons/eye-crossed.vue +7 -7
  188. package/src/atoms/components/Icon/icons/eye-open.vue +11 -11
  189. package/src/atoms/components/Icon/icons/fees.vue +6 -6
  190. package/src/atoms/components/Icon/icons/file-empty.vue +7 -7
  191. package/src/atoms/components/Icon/icons/file.vue +7 -7
  192. package/src/atoms/components/Icon/icons/filter.vue +7 -7
  193. package/src/atoms/components/Icon/icons/filters.vue +6 -6
  194. package/src/atoms/components/Icon/icons/flag.vue +6 -6
  195. package/src/atoms/components/Icon/icons/flip-horizontal.vue +7 -7
  196. package/src/atoms/components/Icon/icons/flip-vertical.vue +7 -7
  197. package/src/atoms/components/Icon/icons/folder.vue +6 -6
  198. package/src/atoms/components/Icon/icons/font.vue +7 -7
  199. package/src/atoms/components/Icon/icons/footer-centered.vue +7 -7
  200. package/src/atoms/components/Icon/icons/footer-left.vue +7 -7
  201. package/src/atoms/components/Icon/icons/form-message.vue +6 -6
  202. package/src/atoms/components/Icon/icons/form.vue +5 -5
  203. package/src/atoms/components/Icon/icons/fullscreen-exit.vue +5 -5
  204. package/src/atoms/components/Icon/icons/fullscreen.vue +5 -5
  205. package/src/atoms/components/Icon/icons/globe.vue +6 -6
  206. package/src/atoms/components/Icon/icons/godaddy/logo.vue +5 -5
  207. package/src/atoms/components/Icon/icons/group.vue +6 -6
  208. package/src/atoms/components/Icon/icons/hamburger-1.vue +0 -0
  209. package/src/atoms/components/Icon/icons/hamburger-2.vue +0 -0
  210. package/src/atoms/components/Icon/icons/hamburger-3.vue +0 -0
  211. package/src/atoms/components/Icon/icons/hamburger-4.vue +0 -0
  212. package/src/atoms/components/Icon/icons/hamburger.vue +7 -7
  213. package/src/atoms/components/Icon/icons/headphones.vue +7 -7
  214. package/src/atoms/components/Icon/icons/home-outline.vue +6 -6
  215. package/src/atoms/components/Icon/icons/home.vue +7 -7
  216. package/src/atoms/components/Icon/icons/icon-style-circle-bg.vue +22 -22
  217. package/src/atoms/components/Icon/icons/icon-style-no-bg.vue +16 -16
  218. package/src/atoms/components/Icon/icons/icon-style-square-bg.vue +22 -22
  219. package/src/atoms/components/Icon/icons/image-gallery-carousel.vue +7 -7
  220. package/src/atoms/components/Icon/icons/image-gallery-grid.vue +7 -7
  221. package/src/atoms/components/Icon/icons/image-gallery-masonry.vue +6 -6
  222. package/src/atoms/components/Icon/icons/image.vue +7 -7
  223. package/src/atoms/components/Icon/icons/images-gallery.vue +5 -5
  224. package/src/atoms/components/Icon/icons/images.vue +7 -7
  225. package/src/atoms/components/Icon/icons/info.vue +9 -9
  226. package/src/atoms/components/Icon/icons/jobs.vue +8 -8
  227. package/src/atoms/components/Icon/icons/layer-bring-front.vue +6 -6
  228. package/src/atoms/components/Icon/icons/layer-send-back.vue +6 -6
  229. package/src/atoms/components/Icon/icons/layer.vue +6 -6
  230. package/src/atoms/components/Icon/icons/layout/display-style-about-1.vue +20 -20
  231. package/src/atoms/components/Icon/icons/layout/display-style-about-2.vue +20 -20
  232. package/src/atoms/components/Icon/icons/layout/display-style-about-3.vue +20 -20
  233. package/src/atoms/components/Icon/icons/layout/display-style-about-4.vue +32 -32
  234. package/src/atoms/components/Icon/icons/layout/display-style-about-5.vue +27 -27
  235. package/src/atoms/components/Icon/icons/layout/display-style-about-6.vue +27 -27
  236. package/src/atoms/components/Icon/icons/layout/display-style-banner-1.vue +20 -20
  237. package/src/atoms/components/Icon/icons/layout/display-style-banner-2.vue +20 -20
  238. package/src/atoms/components/Icon/icons/layout/display-style-banner-3.vue +20 -20
  239. package/src/atoms/components/Icon/icons/layout/display-style-banner-4.vue +20 -20
  240. package/src/atoms/components/Icon/icons/layout/display-style-banner-5.vue +20 -20
  241. package/src/atoms/components/Icon/icons/layout/display-style-banner-6.vue +27 -27
  242. package/src/atoms/components/Icon/icons/layout/display-style-banner-7.vue +27 -27
  243. package/src/atoms/components/Icon/icons/layout/display-style-banner-8.vue +20 -20
  244. package/src/atoms/components/Icon/icons/layout/display-style-banner-9.vue +20 -20
  245. package/src/atoms/components/Icon/icons/layout/display-style-contact-1.vue +24 -24
  246. package/src/atoms/components/Icon/icons/layout/display-style-contact-2.vue +24 -24
  247. package/src/atoms/components/Icon/icons/layout/display-style-contact-4.vue +24 -24
  248. package/src/atoms/components/Icon/icons/layout/display-style-contact-5.vue +39 -39
  249. package/src/atoms/components/Icon/icons/layout/display-style-contact-6.vue +39 -39
  250. package/src/atoms/components/Icon/icons/layout/display-style-images-1.vue +0 -0
  251. package/src/atoms/components/Icon/icons/layout/display-style-images-2.vue +0 -0
  252. package/src/atoms/components/Icon/icons/layout/display-style-images-3.vue +0 -0
  253. package/src/atoms/components/Icon/icons/layout/display-style-images-4.vue +0 -0
  254. package/src/atoms/components/Icon/icons/layout/display-style-images-5.vue +0 -0
  255. package/src/atoms/components/Icon/icons/layout/display-style-images-6.vue +0 -0
  256. package/src/atoms/components/Icon/icons/layout/footer/display-style-1.vue +7 -7
  257. package/src/atoms/components/Icon/icons/layout/footer/display-style-2.vue +16 -16
  258. package/src/atoms/components/Icon/icons/layout/header/desktop-hamburger-display-style-1.vue +17 -17
  259. package/src/atoms/components/Icon/icons/layout/header/desktop-hamburger-display-style-2.vue +17 -17
  260. package/src/atoms/components/Icon/icons/layout/header/desktop-tab-display-style-1.vue +17 -17
  261. package/src/atoms/components/Icon/icons/layout/header/desktop-tab-display-style-2.vue +17 -17
  262. package/src/atoms/components/Icon/icons/layout/header/desktop-tab-display-style-3.vue +13 -13
  263. package/src/atoms/components/Icon/icons/layout/header/desktop-tab-display-style-4.vue +13 -13
  264. package/src/atoms/components/Icon/icons/layout/header/desktop-tab-display-style-5.vue +17 -17
  265. package/src/atoms/components/Icon/icons/layout/header/desktop-tab-display-style-6.vue +17 -17
  266. package/src/atoms/components/Icon/icons/layout/header/hamburger-display-style-no-logo-1.vue +16 -16
  267. package/src/atoms/components/Icon/icons/layout/header/hamburger-display-style-no-logo-2.vue +16 -16
  268. package/src/atoms/components/Icon/icons/layout/header/hamburger-display-style-no-logo-3.vue +16 -16
  269. package/src/atoms/components/Icon/icons/layout/header/mobile-hamburger-display-style-1.vue +17 -17
  270. package/src/atoms/components/Icon/icons/layout/header/mobile-hamburger-display-style-2.vue +17 -17
  271. package/src/atoms/components/Icon/icons/layout/header/mobile-hamburger-display-style-3.vue +17 -17
  272. package/src/atoms/components/Icon/icons/layout/header/mobile-hamburger-display-style-4.vue +21 -21
  273. package/src/atoms/components/Icon/icons/layout/header/mobile-tab-display-style-1.vue +17 -17
  274. package/src/atoms/components/Icon/icons/layout/header/mobile-tab-display-style-2.vue +17 -17
  275. package/src/atoms/components/Icon/icons/layout/header/tab-display-style-no-logo-1.vue +16 -16
  276. package/src/atoms/components/Icon/icons/layout/header/tab-display-style-no-logo-2.vue +16 -16
  277. package/src/atoms/components/Icon/icons/layout/header/tab-display-style-no-logo-3.vue +16 -16
  278. package/src/atoms/components/Icon/icons/layout/layout-icon-bottom-normal-text-center-normal.vue +7 -7
  279. package/src/atoms/components/Icon/icons/layout/layout-icon-bottom-normal-text-center-small.vue +7 -7
  280. package/src/atoms/components/Icon/icons/layout/layout-icon-bottom-small-text-center-normal.vue +7 -7
  281. package/src/atoms/components/Icon/icons/layout/layout-icon-center-normal-curved-text-bottom.vue +11 -11
  282. package/src/atoms/components/Icon/icons/layout/layout-icon-center-normal-curved-text-circle.vue +10 -10
  283. package/src/atoms/components/Icon/icons/layout/layout-icon-center-normal-curved-text-top.vue +11 -11
  284. package/src/atoms/components/Icon/icons/layout/layout-icon-left-normal-text-center-normal.vue +7 -7
  285. package/src/atoms/components/Icon/icons/layout/layout-icon-left-normal-text-justify-normal.vue +7 -7
  286. package/src/atoms/components/Icon/icons/layout/layout-icon-left-normal-text-left-normal.vue +7 -7
  287. package/src/atoms/components/Icon/icons/layout/layout-icon-left-small-text-left-normal.vue +7 -7
  288. package/src/atoms/components/Icon/icons/layout/layout-icon-right-normal-text-center-normal.vue +7 -7
  289. package/src/atoms/components/Icon/icons/layout/layout-icon-right-normal-text-justify-normal.vue +7 -7
  290. package/src/atoms/components/Icon/icons/layout/layout-icon-right-normal-text-right-normal.vue +7 -7
  291. package/src/atoms/components/Icon/icons/layout/layout-icon-right-small-text-right-normal.vue +7 -7
  292. package/src/atoms/components/Icon/icons/layout/layout-icon-top-normal-text-center-normal.vue +7 -7
  293. package/src/atoms/components/Icon/icons/layout/layout-icon-top-normal-text-center-small.vue +7 -7
  294. package/src/atoms/components/Icon/icons/layout/layout-icon-top-normal-text-justify-normal.vue +7 -7
  295. package/src/atoms/components/Icon/icons/layout/layout-icon-top-small-text-center-normal.vue +7 -7
  296. package/src/atoms/components/Icon/icons/layout/nav/hamburger/display-style-1.vue +16 -16
  297. package/src/atoms/components/Icon/icons/layout/nav/hamburger/display-style-2.vue +10 -10
  298. package/src/atoms/components/Icon/icons/layout/nav/hamburger/display-style-3.vue +10 -10
  299. package/src/atoms/components/Icon/icons/layout/nav/hamburger/display-style-4.vue +23 -23
  300. package/src/atoms/components/Icon/icons/layout/nav/tab/display-style-1.vue +16 -16
  301. package/src/atoms/components/Icon/icons/layout/nav/tab/display-style-2.vue +7 -7
  302. package/src/atoms/components/Icon/icons/letterhead-filled.vue +5 -5
  303. package/src/atoms/components/Icon/icons/lightning.vue +7 -7
  304. package/src/atoms/components/Icon/icons/link-in-bio-filled.vue +8 -8
  305. package/src/atoms/components/Icon/icons/link.vue +6 -6
  306. package/src/atoms/components/Icon/icons/location.vue +6 -6
  307. package/src/atoms/components/Icon/icons/lock.vue +6 -6
  308. package/src/atoms/components/Icon/icons/logo.vue +7 -7
  309. package/src/atoms/components/Icon/icons/mac-command.vue +7 -7
  310. package/src/atoms/components/Icon/icons/maker/align-center.vue +7 -7
  311. package/src/atoms/components/Icon/icons/maker/align-justify.vue +7 -7
  312. package/src/atoms/components/Icon/icons/maker/align-left.vue +7 -7
  313. package/src/atoms/components/Icon/icons/maker/align-right.vue +7 -7
  314. package/src/atoms/components/Icon/icons/maker/animate.vue +7 -7
  315. package/src/atoms/components/Icon/icons/maker/bold.vue +7 -7
  316. package/src/atoms/components/Icon/icons/maker/custom-landscape.vue +5 -5
  317. package/src/atoms/components/Icon/icons/maker/email-symbol.vue +5 -5
  318. package/src/atoms/components/Icon/icons/maker/email.vue +5 -5
  319. package/src/atoms/components/Icon/icons/maker/eraser.vue +5 -5
  320. package/src/atoms/components/Icon/icons/maker/etsy.vue +5 -5
  321. package/src/atoms/components/Icon/icons/maker/facebook.vue +5 -5
  322. package/src/atoms/components/Icon/icons/maker/favicon.vue +7 -7
  323. package/src/atoms/components/Icon/icons/maker/flyer.vue +7 -7
  324. package/src/atoms/components/Icon/icons/maker/gift-certificate.vue +5 -5
  325. package/src/atoms/components/Icon/icons/maker/globe.vue +5 -5
  326. package/src/atoms/components/Icon/icons/maker/image.vue +7 -7
  327. package/src/atoms/components/Icon/icons/maker/instagram.vue +7 -7
  328. package/src/atoms/components/Icon/icons/maker/invitation.vue +5 -5
  329. package/src/atoms/components/Icon/icons/maker/invoice.vue +5 -5
  330. package/src/atoms/components/Icon/icons/maker/italic.vue +7 -7
  331. package/src/atoms/components/Icon/icons/maker/link.vue +7 -7
  332. package/src/atoms/components/Icon/icons/maker/linkedin.vue +7 -7
  333. package/src/atoms/components/Icon/icons/maker/menu.vue +5 -5
  334. package/src/atoms/components/Icon/icons/maker/pause.vue +5 -5
  335. package/src/atoms/components/Icon/icons/maker/phone.vue +5 -5
  336. package/src/atoms/components/Icon/icons/maker/pinterest.vue +5 -5
  337. package/src/atoms/components/Icon/icons/maker/play.vue +5 -5
  338. package/src/atoms/components/Icon/icons/maker/postcard.vue +5 -5
  339. package/src/atoms/components/Icon/icons/maker/poster.vue +7 -7
  340. package/src/atoms/components/Icon/icons/maker/profile.vue +5 -5
  341. package/src/atoms/components/Icon/icons/maker/qrcode.vue +5 -5
  342. package/src/atoms/components/Icon/icons/maker/snapchat.vue +5 -5
  343. package/src/atoms/components/Icon/icons/maker/soundcloud.vue +7 -7
  344. package/src/atoms/components/Icon/icons/maker/spacing.vue +18 -18
  345. package/src/atoms/components/Icon/icons/maker/strikethrough.vue +7 -7
  346. package/src/atoms/components/Icon/icons/maker/t-shirt.vue +32 -32
  347. package/src/atoms/components/Icon/icons/maker/text-background-color.vue +12 -12
  348. package/src/atoms/components/Icon/icons/maker/text-color.vue +14 -14
  349. package/src/atoms/components/Icon/icons/maker/text.vue +7 -7
  350. package/src/atoms/components/Icon/icons/maker/thankyou-card.vue +5 -5
  351. package/src/atoms/components/Icon/icons/maker/tiktok.vue +5 -5
  352. package/src/atoms/components/Icon/icons/maker/tumblr.vue +5 -5
  353. package/src/atoms/components/Icon/icons/maker/twitch.vue +7 -7
  354. package/src/atoms/components/Icon/icons/maker/twitter.vue +5 -5
  355. package/src/atoms/components/Icon/icons/maker/underline.vue +7 -7
  356. package/src/atoms/components/Icon/icons/maker/uppercase.vue +14 -14
  357. package/src/atoms/components/Icon/icons/maker/video.vue +5 -5
  358. package/src/atoms/components/Icon/icons/maker/whatsapp.vue +7 -7
  359. package/src/atoms/components/Icon/icons/maker/youtube.vue +5 -5
  360. package/src/atoms/components/Icon/icons/maker/zoom.vue +5 -5
  361. package/src/atoms/components/Icon/icons/map.vue +6 -6
  362. package/src/atoms/components/Icon/icons/media.vue +3 -3
  363. package/src/atoms/components/Icon/icons/message.vue +6 -6
  364. package/src/atoms/components/Icon/icons/minus-circle-light.vue +7 -7
  365. package/src/atoms/components/Icon/icons/minus.vue +3 -3
  366. package/src/atoms/components/Icon/icons/mobile.vue +5 -5
  367. package/src/atoms/components/Icon/icons/mug.vue +29 -29
  368. package/src/atoms/components/Icon/icons/opacity.vue +6 -6
  369. package/src/atoms/components/Icon/icons/other.vue +7 -7
  370. package/src/atoms/components/Icon/icons/page-blank.vue +6 -6
  371. package/src/atoms/components/Icon/icons/page-buttons.vue +8 -8
  372. package/src/atoms/components/Icon/icons/page-hamburger.vue +9 -9
  373. package/src/atoms/components/Icon/icons/page-tabs.vue +9 -9
  374. package/src/atoms/components/Icon/icons/pages.vue +6 -6
  375. package/src/atoms/components/Icon/icons/palette-outline.vue +7 -7
  376. package/src/atoms/components/Icon/icons/palette.vue +6 -6
  377. package/src/atoms/components/Icon/icons/pause.vue +5 -5
  378. package/src/atoms/components/Icon/icons/payment.vue +8 -8
  379. package/src/atoms/components/Icon/icons/payments-featured.vue +6 -6
  380. package/src/atoms/components/Icon/icons/payments-textonly.vue +8 -8
  381. package/src/atoms/components/Icon/icons/payments-thumbnail.vue +9 -9
  382. package/src/atoms/components/Icon/icons/pen-outline.vue +7 -7
  383. package/src/atoms/components/Icon/icons/pen-sparkle.vue +17 -17
  384. package/src/atoms/components/Icon/icons/pen-tool.vue +7 -7
  385. package/src/atoms/components/Icon/icons/pen.vue +7 -7
  386. package/src/atoms/components/Icon/icons/phone.vue +6 -6
  387. package/src/atoms/components/Icon/icons/plus-circle-light.vue +8 -8
  388. package/src/atoms/components/Icon/icons/plus-circle.vue +7 -7
  389. package/src/atoms/components/Icon/icons/plus.vue +3 -3
  390. package/src/atoms/components/Icon/icons/poll.vue +3 -3
  391. package/src/atoms/components/Icon/icons/portfolio.vue +10 -10
  392. package/src/atoms/components/Icon/icons/premium-content.vue +8 -8
  393. package/src/atoms/components/Icon/icons/preview.vue +6 -6
  394. package/src/atoms/components/Icon/icons/printing.vue +6 -6
  395. package/src/atoms/components/Icon/icons/processing.vue +5 -5
  396. package/src/atoms/components/Icon/icons/question-alt.vue +20 -20
  397. package/src/atoms/components/Icon/icons/question.vue +11 -11
  398. package/src/atoms/components/Icon/icons/quote.vue +0 -0
  399. package/src/atoms/components/Icon/icons/ratio-1-1.vue +3 -3
  400. package/src/atoms/components/Icon/icons/ratio-16-9.vue +1 -1
  401. package/src/atoms/components/Icon/icons/ratio-2-3.vue +3 -3
  402. package/src/atoms/components/Icon/icons/ratio-3-2.vue +3 -3
  403. package/src/atoms/components/Icon/icons/ratio-3-4.vue +3 -3
  404. package/src/atoms/components/Icon/icons/ratio-4-3.vue +3 -3
  405. package/src/atoms/components/Icon/icons/ratio-9-16.vue +3 -3
  406. package/src/atoms/components/Icon/icons/ratio-circle.vue +8 -8
  407. package/src/atoms/components/Icon/icons/ratio-original.vue +11 -11
  408. package/src/atoms/components/Icon/icons/redo.vue +6 -6
  409. package/src/atoms/components/Icon/icons/reload.vue +6 -6
  410. package/src/atoms/components/Icon/icons/reorderable.vue +5 -5
  411. package/src/atoms/components/Icon/icons/request-payment.vue +6 -6
  412. package/src/atoms/components/Icon/icons/reset.vue +6 -6
  413. package/src/atoms/components/Icon/icons/resize.vue +6 -6
  414. package/src/atoms/components/Icon/icons/search.vue +11 -11
  415. package/src/atoms/components/Icon/icons/secure.vue +7 -7
  416. package/src/atoms/components/Icon/icons/send.vue +12 -12
  417. package/src/atoms/components/Icon/icons/services.vue +7 -7
  418. package/src/atoms/components/Icon/icons/settings.vue +7 -7
  419. package/src/atoms/components/Icon/icons/shape.vue +5 -5
  420. package/src/atoms/components/Icon/icons/share.vue +9 -9
  421. package/src/atoms/components/Icon/icons/shield-tick.vue +6 -6
  422. package/src/atoms/components/Icon/icons/shop.vue +5 -5
  423. package/src/atoms/components/Icon/icons/sms.vue +5 -5
  424. package/src/atoms/components/Icon/icons/social-facebook-color.vue +9 -9
  425. package/src/atoms/components/Icon/icons/social-facebook.vue +5 -5
  426. package/src/atoms/components/Icon/icons/social-google.vue +5 -5
  427. package/src/atoms/components/Icon/icons/social-instagram-color.vue +24 -24
  428. package/src/atoms/components/Icon/icons/social-linkedin-color.vue +9 -9
  429. package/src/atoms/components/Icon/icons/social-share.vue +7 -7
  430. package/src/atoms/components/Icon/icons/social-twitter-color.vue +9 -9
  431. package/src/atoms/components/Icon/icons/sparkle-square.vue +22 -22
  432. package/src/atoms/components/Icon/icons/star-filled.vue +6 -6
  433. package/src/atoms/components/Icon/icons/star-hollow.vue +6 -6
  434. package/src/atoms/components/Icon/icons/sticker.vue +28 -28
  435. package/src/atoms/components/Icon/icons/stop.vue +5 -5
  436. package/src/atoms/components/Icon/icons/styles.vue +5 -5
  437. package/src/atoms/components/Icon/icons/submit.vue +5 -5
  438. package/src/atoms/components/Icon/icons/templates.vue +7 -7
  439. package/src/atoms/components/Icon/icons/testimonial-big-image.vue +0 -0
  440. package/src/atoms/components/Icon/icons/testimonial-centered.vue +0 -0
  441. package/src/atoms/components/Icon/icons/testimonial-columns.vue +0 -0
  442. package/src/atoms/components/Icon/icons/text-image-center.vue +6 -6
  443. package/src/atoms/components/Icon/icons/text-image-justified.vue +7 -7
  444. package/src/atoms/components/Icon/icons/text-image-left.vue +9 -9
  445. package/src/atoms/components/Icon/icons/text-image-only.vue +5 -5
  446. package/src/atoms/components/Icon/icons/text-image-right.vue +9 -9
  447. package/src/atoms/components/Icon/icons/text-image.vue +13 -13
  448. package/src/atoms/components/Icon/icons/time.vue +8 -8
  449. package/src/atoms/components/Icon/icons/tooltip-bottom.vue +5 -5
  450. package/src/atoms/components/Icon/icons/tooltip-left.vue +5 -5
  451. package/src/atoms/components/Icon/icons/tooltip-right.vue +5 -5
  452. package/src/atoms/components/Icon/icons/tooltip-top.vue +5 -5
  453. package/src/atoms/components/Icon/icons/undo.vue +6 -6
  454. package/src/atoms/components/Icon/icons/upgrade-alt.vue +7 -7
  455. package/src/atoms/components/Icon/icons/upgrade.vue +9 -9
  456. package/src/atoms/components/Icon/icons/upload-arrow.vue +5 -5
  457. package/src/atoms/components/Icon/icons/upload.vue +5 -5
  458. package/src/atoms/components/Icon/icons/user-accounts.vue +5 -5
  459. package/src/atoms/components/Icon/icons/user-headset.vue +50 -50
  460. package/src/atoms/components/Icon/icons/volume-muted.vue +5 -5
  461. package/src/atoms/components/Icon/icons/volume.vue +5 -5
  462. package/src/atoms/components/Icon/icons/watchlist-filled.vue +14 -14
  463. package/src/atoms/components/Icon/icons/watchlist-hollow-alt.vue +14 -14
  464. package/src/atoms/components/Icon/icons/watchlist-hollow.vue +6 -6
  465. package/src/atoms/components/Icon/icons/website-filled.vue +5 -5
  466. package/src/atoms/components/Icon/icons/website.vue +6 -6
  467. package/src/atoms/components/Icon/icons/websites/upgrade-to-add-page.vue +50 -50
  468. package/src/atoms/components/Icon/icons/websites/upgrade-to-contact-form.vue +82 -82
  469. package/src/atoms/components/Icon/icons/websites/upgrade-to-google-ad.vue +92 -92
  470. package/src/atoms/components/Icon/icons/websites/upgrade-to-maps.vue +40 -40
  471. package/src/atoms/components/Icon/icons/websites/upgrade-to-publish.vue +107 -107
  472. package/src/atoms/components/Icon/icons/websites/upgrade-to-remove-watermark.vue +74 -74
  473. package/src/atoms/components/Icon/icons/websites/upgrade-to-videos.vue +16 -16
  474. package/src/atoms/components/Icon/icons/wholesale.vue +6 -6
  475. package/src/atoms/components/Icon/icons/zoom-in.vue +5 -5
  476. package/src/atoms/components/Icon/icons/zoom-out.vue +5 -5
  477. package/src/atoms/components/Icon/icons/zoom.vue +11 -11
  478. package/src/atoms/components/Loader/Loader.vue +15 -15
  479. package/src/atoms/components/Masonry/Masonry.stories.js +48 -48
  480. package/src/atoms/components/Masonry/Masonry.vue +48 -48
  481. package/src/atoms/components/Masonry/fixtures.js +589 -589
  482. package/src/atoms/components/Modal/HashRouteModal.stories.js +68 -68
  483. package/src/atoms/components/Modal/HashRouteModal.vue +120 -120
  484. package/src/atoms/components/Modal/Modal.stories.js +293 -293
  485. package/src/atoms/components/Modal/Modal.vue +263 -263
  486. package/src/atoms/components/Notice/Notice.stories.js +174 -174
  487. package/src/atoms/components/Notice/Notice.vue +71 -71
  488. package/src/atoms/components/NumberStepper/NumberStepper.stories.js +55 -55
  489. package/src/atoms/components/NumberStepper/NumberStepper.vue +340 -340
  490. package/src/atoms/components/Picture/Picture.stories.js +90 -90
  491. package/src/atoms/components/Picture/Picture.vue +84 -84
  492. package/src/atoms/components/Picture/picture.fixtures.js +35 -35
  493. package/src/atoms/components/Pill/Pill.stories.js +20 -20
  494. package/src/atoms/components/Pill/Pill.vue +8 -8
  495. package/src/atoms/components/PillBar/PillBar.fixtures.js +941 -941
  496. package/src/atoms/components/PillBar/PillBar.stories.js +39 -39
  497. package/src/atoms/components/PillBar/PillBar.vue +62 -62
  498. package/src/atoms/components/Price/Price.fixtures.js +85 -85
  499. package/src/atoms/components/Price/Price.stories.js +313 -313
  500. package/src/atoms/components/Price/Price.vue +135 -135
  501. package/src/atoms/components/Price/i18n/price.de-DE.json +5 -5
  502. package/src/atoms/components/Price/i18n/price.es-ES.json +5 -5
  503. package/src/atoms/components/Price/i18n/price.fr-CA.json +5 -5
  504. package/src/atoms/components/Price/i18n/price.fr-FR.json +5 -5
  505. package/src/atoms/components/Price/i18n/price.json +5 -5
  506. package/src/atoms/components/Price/i18n/price.pt-BR.json +5 -5
  507. package/src/atoms/components/Price/i18n/price.pt-PT.json +5 -5
  508. package/src/atoms/components/PromoCard/PromoCard.stories.ts +263 -263
  509. package/src/atoms/components/PromoCard/PromoCard.vue +83 -83
  510. package/src/atoms/components/SearchBar/SearchBar.stories.js +21 -21
  511. package/src/atoms/components/SearchBar/SearchBar.vue +51 -51
  512. package/src/atoms/components/Select/Select.stories.js +142 -142
  513. package/src/atoms/components/Select/Select.vue +619 -619
  514. package/src/atoms/components/Select/pointerMixin.js +99 -99
  515. package/src/atoms/components/Select/selectMixin.js +356 -356
  516. package/src/atoms/components/Slider/Slider.stories.js +0 -0
  517. package/src/atoms/components/Slider/Slider.vue +0 -0
  518. package/src/atoms/components/SparkleIcon/SparkleIcon.stories.js +386 -386
  519. package/src/atoms/components/SparkleIcon/SparkleIcon.vue +136 -136
  520. package/src/atoms/components/SparkleIcon/assets/animations/sparkle/state-01.svg +5 -5
  521. package/src/atoms/components/SparkleIcon/assets/animations/sparkle/state-02.svg +5 -5
  522. package/src/atoms/components/SparkleIcon/assets/animations/sparkle/state-03.svg +5 -5
  523. package/src/atoms/components/SparkleIcon/assets/animations/sparkle/state-04.svg +5 -5
  524. package/src/atoms/components/SparkleIcon/assets/animations/sparkle/state-05.svg +5 -5
  525. package/src/atoms/components/SparkleIcon/assets/animations/sparkle/state-06.svg +5 -5
  526. package/src/atoms/components/SparkleIcon/assets/animations/sparkle/state-07.svg +5 -5
  527. package/src/atoms/components/SparkleIcon/assets/animations/sparkle/state-08.svg +5 -5
  528. package/src/atoms/components/SparkleIcon/assets/animations/spinner/state-01.svg +5 -5
  529. package/src/atoms/components/SparkleIcon/assets/animations/spinner/state-02.svg +14 -14
  530. package/src/atoms/components/SparkleIcon/assets/animations/spinner/state-03.svg +14 -14
  531. package/src/atoms/components/SparkleIcon/assets/animations/spinner/state-04.svg +14 -14
  532. package/src/atoms/components/SparkleIcon/assets/animations/spinner/state-05.svg +14 -14
  533. package/src/atoms/components/SparkleIcon/assets/animations/spinner/state-06.svg +14 -14
  534. package/src/atoms/components/SparkleIcon/assets/animations/spinner/state-07.svg +14 -14
  535. package/src/atoms/components/SparkleIcon/assets/animations/spinner/state-08.svg +14 -14
  536. package/src/atoms/components/SparkleIcon/assets/sparkle.svg +3 -3
  537. package/src/atoms/components/SparkleIcon/index.ts +3 -3
  538. package/src/atoms/components/SparkleIcon/sparkle-paths.ts +54 -54
  539. package/src/atoms/components/SparkleIcon/sparkle-with-spinner-paths.ts +61 -61
  540. package/src/atoms/components/StarRating/StarRating.stories.js +50 -50
  541. package/src/atoms/components/StarRating/StarRating.vue +84 -84
  542. package/src/atoms/components/TabMenu/TabMenu.stories.js +54 -54
  543. package/src/atoms/components/TabMenu/TabMenu.vue +44 -44
  544. package/src/atoms/components/TextCopyField/TextCopyField.stories.js +68 -68
  545. package/src/atoms/components/TextCopyField/TextCopyField.vue +75 -75
  546. package/src/atoms/components/TextInput/TextInput.stories.js +232 -232
  547. package/src/atoms/components/TextInput/TextInput.vue +161 -161
  548. package/src/atoms/components/Textarea/Textarea.stories.js +209 -209
  549. package/src/atoms/components/Textarea/Textarea.vue +112 -112
  550. package/src/atoms/components/Toggle/Toggle.stories.js +176 -176
  551. package/src/atoms/components/Toggle/Toggle.vue +69 -69
  552. package/src/atoms/components/Tooltip/Tooltip.stories.js +493 -493
  553. package/src/atoms/components/Tooltip/Tooltip.vue +196 -196
  554. package/src/atoms/components/design-com/Icon/Icon.stories.js +94 -94
  555. package/src/atoms/components/design-com/Icon/Icon.vue +181 -181
  556. package/src/atoms/components/design-com/Icon/icons/ai.vue +5 -5
  557. package/src/atoms/components/design-com/Icon/icons/annotate-heart.vue +0 -0
  558. package/src/atoms/components/design-com/Icon/icons/award.vue +7 -7
  559. package/src/atoms/components/design-com/Icon/icons/badge.vue +7 -7
  560. package/src/atoms/components/design-com/Icon/icons/bezier-curve.vue +0 -0
  561. package/src/atoms/components/design-com/Icon/icons/briefcase.vue +6 -6
  562. package/src/atoms/components/design-com/Icon/icons/browser.vue +7 -7
  563. package/src/atoms/components/design-com/Icon/icons/bulb.vue +7 -7
  564. package/src/atoms/components/design-com/Icon/icons/card-vertical.vue +8 -8
  565. package/src/atoms/components/design-com/Icon/icons/card.vue +6 -6
  566. package/src/atoms/components/design-com/Icon/icons/check-circle-light.vue +7 -7
  567. package/src/atoms/components/design-com/Icon/icons/chevron-down.vue +7 -7
  568. package/src/atoms/components/design-com/Icon/icons/chevron-left.vue +7 -7
  569. package/src/atoms/components/design-com/Icon/icons/chevron-right.vue +3 -3
  570. package/src/atoms/components/design-com/Icon/icons/chevron-up.vue +7 -7
  571. package/src/atoms/components/design-com/Icon/icons/diamond.vue +7 -7
  572. package/src/atoms/components/design-com/Icon/icons/download.vue +7 -7
  573. package/src/atoms/components/design-com/Icon/icons/file-empty.vue +7 -7
  574. package/src/atoms/components/design-com/Icon/icons/file.vue +7 -7
  575. package/src/atoms/components/design-com/Icon/icons/filter.vue +7 -7
  576. package/src/atoms/components/design-com/Icon/icons/folder.vue +5 -5
  577. package/src/atoms/components/design-com/Icon/icons/font.vue +7 -7
  578. package/src/atoms/components/design-com/Icon/icons/headphones.vue +7 -7
  579. package/src/atoms/components/design-com/Icon/icons/heart.vue +7 -7
  580. package/src/atoms/components/design-com/Icon/icons/image.vue +7 -7
  581. package/src/atoms/components/design-com/Icon/icons/lightning.vue +7 -7
  582. package/src/atoms/components/design-com/Icon/icons/logo.vue +7 -7
  583. package/src/atoms/components/design-com/Icon/icons/minus-circle-light.vue +7 -7
  584. package/src/atoms/components/design-com/Icon/icons/palette.vue +0 -0
  585. package/src/atoms/components/design-com/Icon/icons/pen-outline.vue +0 -0
  586. package/src/atoms/components/design-com/Icon/icons/pen-sparkle.vue +0 -0
  587. package/src/atoms/components/design-com/Icon/icons/pen.vue +0 -0
  588. package/src/atoms/components/design-com/Icon/icons/plus-circle-light.vue +8 -8
  589. package/src/atoms/components/design-com/Icon/icons/printing.vue +5 -5
  590. package/src/atoms/components/design-com/Icon/icons/question-circle-filled.vue +7 -7
  591. package/src/atoms/components/design-com/Icon/icons/search.vue +7 -7
  592. package/src/atoms/components/design-com/Icon/icons/shield-tick.vue +5 -5
  593. package/src/atoms/components/design-com/Icon/icons/sparkle-square.vue +0 -0
  594. package/src/atoms/components/design-com/Icon/icons/star-filled.vue +6 -6
  595. package/src/atoms/components/design-com/Icon/icons/star-hollow.vue +6 -6
  596. package/src/atoms/components/design-com/Icon/icons/text.vue +0 -0
  597. package/src/atoms/components/design-com/Icon/icons/users.vue +7 -7
  598. package/src/atoms/constants/constants.ts +6 -6
  599. package/src/atoms/mixin/hash-router-mixin.js +68 -68
  600. package/src/atoms/thirdparty-components/VueMasonryWall/VueMasonryWall.vue +280 -280
  601. package/src/atoms/thirdparty-components/VueMasonryWall/maxBy.js +50 -50
  602. package/src/bundleTranslation.js +86 -86
  603. package/src/bundles/bundled-translations.de-DE.json +3 -1
  604. package/src/bundles/bundled-translations.es-ES.json +3 -1
  605. package/src/bundles/bundled-translations.fr-CA.json +3 -1
  606. package/src/bundles/bundled-translations.fr-FR.json +3 -1
  607. package/src/bundles/bundled-translations.json +3 -1
  608. package/src/bundles/bundled-translations.pt-BR.json +3 -1
  609. package/src/bundles/bundled-translations.pt-PT.json +3 -1
  610. package/src/css/tailwind.css +3 -3
  611. package/src/experiences/clients/brand-crowd-api.client.js +142 -124
  612. package/src/experiences/clients/brand-page-api.client.js +62 -62
  613. package/src/experiences/components/AuthFlow/Auth.fixtures.js +4 -4
  614. package/src/experiences/components/AuthFlow/Auth.stories.js +345 -345
  615. package/src/experiences/components/AuthFlow/AuthCrazyDomains.stories.js +60 -60
  616. package/src/experiences/components/AuthFlow/AuthLegal.vue +108 -108
  617. package/src/experiences/components/AuthFlow/AuthModal.vue +39 -39
  618. package/src/experiences/components/AuthFlow/ForgotPassword.vue +222 -222
  619. package/src/experiences/components/AuthFlow/ForgotPasswordModal.vue +68 -68
  620. package/src/experiences/components/AuthFlow/ResetPassword.vue +179 -179
  621. package/src/experiences/components/AuthFlow/ResetPasswordModal.vue +64 -64
  622. package/src/experiences/components/AuthFlow/ResetPasswordSuccessModal.vue +56 -56
  623. package/src/experiences/components/AuthFlow/SignIn.vue +472 -472
  624. package/src/experiences/components/AuthFlow/SignUp.vue +278 -278
  625. package/src/experiences/components/AuthFlow/SignUpModal.vue +90 -90
  626. package/src/experiences/components/AuthFlow/SocialSignIn.vue +177 -177
  627. package/src/experiences/components/AuthFlow/SocialSignInButton.vue +74 -74
  628. package/src/experiences/components/AuthFlow/SubmissionButton.vue +56 -56
  629. package/src/experiences/components/PaymentConfigList/PaymentConfig.mixin.js +118 -118
  630. package/src/experiences/components/PaymentConfigList/PaymentConfigDeleteConfigModal.vue +108 -108
  631. package/src/experiences/components/PaymentConfigList/PaymentConfigDropdown.vue +175 -175
  632. package/src/experiences/components/PaymentConfigList/PaymentConfigList.stories.js +234 -234
  633. package/src/experiences/components/PaymentConfigList/PaymentConfigList.vue +136 -136
  634. package/src/experiences/components/PaymentConfigList/i18n/shared-payment-config.de-DE.json +11 -11
  635. package/src/experiences/components/PaymentConfigList/i18n/shared-payment-config.es-ES.json +11 -11
  636. package/src/experiences/components/PaymentConfigList/i18n/shared-payment-config.fr-CA.json +11 -11
  637. package/src/experiences/components/PaymentConfigList/i18n/shared-payment-config.fr-FR.json +11 -11
  638. package/src/experiences/components/PaymentConfigList/i18n/shared-payment-config.json +11 -11
  639. package/src/experiences/components/PaymentConfigList/i18n/shared-payment-config.pt-BR.json +11 -11
  640. package/src/experiences/components/PaymentConfigList/i18n/shared-payment-config.pt-PT.json +11 -11
  641. package/src/experiences/components/PublishBrandPageModal/PublishBrandPageCard.vue +119 -119
  642. package/src/experiences/components/PublishBrandPageModal/PublishBrandPageModal.stories.js +262 -262
  643. package/src/experiences/components/PublishBrandPageModal/PublishBrandPageModal.vue +0 -0
  644. package/src/experiences/components/PublishBrandPageModal/__fixtures__/data.js +25 -25
  645. package/src/experiences/components/PublishBrandPageModal/i18n/publish-brand-page-modal.de-DE.json +26 -26
  646. package/src/experiences/components/PublishBrandPageModal/i18n/publish-brand-page-modal.es-ES.json +26 -26
  647. package/src/experiences/components/PublishBrandPageModal/i18n/publish-brand-page-modal.fr-CA.json +26 -26
  648. package/src/experiences/components/PublishBrandPageModal/i18n/publish-brand-page-modal.fr-FR.json +26 -26
  649. package/src/experiences/components/PublishBrandPageModal/i18n/publish-brand-page-modal.json +26 -26
  650. package/src/experiences/components/PublishBrandPageModal/i18n/publish-brand-page-modal.pt-BR.json +26 -26
  651. package/src/experiences/components/PublishBrandPageModal/i18n/publish-brand-page-modal.pt-PT.json +26 -26
  652. package/src/experiences/components/PublishBrandPageModal/views/PublishWhenHasDomainsView.vue +0 -0
  653. package/src/experiences/components/PublishBrandPageModal/views/PublishWhenNoDomainsView.vue +0 -0
  654. package/src/experiences/components/PublishBrandPageModal/views/PublishedView.vue +0 -0
  655. package/src/experiences/components/PublishBrandPageModal/views/SetUrlView.vue +0 -0
  656. package/src/experiences/components/SellDomainNameList/SellDomainNameList.fixtures.js +32 -32
  657. package/src/experiences/components/SellDomainNameList/SellDomainNameList.vue +157 -157
  658. package/src/experiences/components/SellDomainNameList/i18n/sell-domain-name-list.de-DE.json +7 -7
  659. package/src/experiences/components/SellDomainNameList/i18n/sell-domain-name-list.es-ES.json +7 -7
  660. package/src/experiences/components/SellDomainNameList/i18n/sell-domain-name-list.fr-CA.json +7 -7
  661. package/src/experiences/components/SellDomainNameList/i18n/sell-domain-name-list.fr-FR.json +7 -7
  662. package/src/experiences/components/SellDomainNameList/i18n/sell-domain-name-list.json +7 -7
  663. package/src/experiences/components/SellDomainNameList/i18n/sell-domain-name-list.pt-BR.json +7 -7
  664. package/src/experiences/components/SellDomainNameList/i18n/sell-domain-name-list.pt-PT.json +7 -7
  665. package/src/experiences/components/SellDomainNameListModal/SellDomainNameListModal.stories.js +74 -74
  666. package/src/experiences/components/SellDomainNameListModal/SellDomainNameListModal.vue +128 -128
  667. package/src/experiences/components/SellDomainNameListModal/i18n/sell-domain-name-list-modal.de-DE.json +5 -5
  668. package/src/experiences/components/SellDomainNameListModal/i18n/sell-domain-name-list-modal.es-ES.json +5 -5
  669. package/src/experiences/components/SellDomainNameListModal/i18n/sell-domain-name-list-modal.fr-CA.json +5 -5
  670. package/src/experiences/components/SellDomainNameListModal/i18n/sell-domain-name-list-modal.fr-FR.json +5 -5
  671. package/src/experiences/components/SellDomainNameListModal/i18n/sell-domain-name-list-modal.json +5 -5
  672. package/src/experiences/components/SellDomainNameListModal/i18n/sell-domain-name-list-modal.pt-BR.json +5 -5
  673. package/src/experiences/components/SellDomainNameListModal/i18n/sell-domain-name-list-modal.pt-PT.json +5 -5
  674. package/src/experiences/components/SellDomainNameModalApplication/SellDomainNameModalApplication.vue +222 -222
  675. package/src/experiences/components/SellDomainNameModalApplication/i18n/sell-domain-name-modal-application.de-DE.json +5 -5
  676. package/src/experiences/components/SellDomainNameModalApplication/i18n/sell-domain-name-modal-application.es-ES.json +5 -5
  677. package/src/experiences/components/SellDomainNameModalApplication/i18n/sell-domain-name-modal-application.fr-CA.json +5 -5
  678. package/src/experiences/components/SellDomainNameModalApplication/i18n/sell-domain-name-modal-application.fr-FR.json +5 -5
  679. package/src/experiences/components/SellDomainNameModalApplication/i18n/sell-domain-name-modal-application.json +5 -5
  680. package/src/experiences/components/SellDomainNameModalApplication/i18n/sell-domain-name-modal-application.pt-BR.json +5 -5
  681. package/src/experiences/components/SellDomainNameModalApplication/i18n/sell-domain-name-modal-application.pt-PT.json +5 -5
  682. package/src/experiences/components/SellDomainNameSearch/SellDomainNameSearch.vue +0 -0
  683. package/src/experiences/components/SellDomainNameSearch/i18n/sell-domain-name-search.de-DE.json +7 -7
  684. package/src/experiences/components/SellDomainNameSearch/i18n/sell-domain-name-search.es-ES.json +7 -7
  685. package/src/experiences/components/SellDomainNameSearch/i18n/sell-domain-name-search.fr-CA.json +7 -7
  686. package/src/experiences/components/SellDomainNameSearch/i18n/sell-domain-name-search.fr-FR.json +7 -7
  687. package/src/experiences/components/SellDomainNameSearch/i18n/sell-domain-name-search.json +7 -7
  688. package/src/experiences/components/SellDomainNameSearch/i18n/sell-domain-name-search.pt-BR.json +7 -7
  689. package/src/experiences/components/SellDomainNameSearch/i18n/sell-domain-name-search.pt-PT.json +7 -7
  690. package/src/experiences/components/SellDomainNameSearchResult/SellDomainNameListSearchResult.vue +167 -167
  691. package/src/experiences/components/SellDomainNameSearchResult/i18n/sell-domain-name-list-search-result.de-DE.json +5 -5
  692. package/src/experiences/components/SellDomainNameSearchResult/i18n/sell-domain-name-list-search-result.es-ES.json +5 -5
  693. package/src/experiences/components/SellDomainNameSearchResult/i18n/sell-domain-name-list-search-result.fr-CA.json +5 -5
  694. package/src/experiences/components/SellDomainNameSearchResult/i18n/sell-domain-name-list-search-result.fr-FR.json +5 -5
  695. package/src/experiences/components/SellDomainNameSearchResult/i18n/sell-domain-name-list-search-result.json +5 -5
  696. package/src/experiences/components/SellDomainNameSearchResult/i18n/sell-domain-name-list-search-result.pt-BR.json +5 -5
  697. package/src/experiences/components/SellDomainNameSearchResult/i18n/sell-domain-name-list-search-result.pt-PT.json +5 -5
  698. package/src/experiences/components/SellDomainNameSearchWithResults/SellDomainNameSearchWithResults.stories.js +38 -38
  699. package/src/experiences/components/SellDomainNameSearchWithResults/SellDomainNameSearchWithResults.vue +223 -223
  700. package/src/experiences/components/SellDomainNameWidget/SellDomainNameWidget.stories.js +40 -40
  701. package/src/experiences/components/SellDomainNameWidget/SellDomainNameWidget.vue +155 -155
  702. package/src/experiences/components/SellDomainNameWidget/i18n/sell-domain-name-widget.de-DE.json +7 -7
  703. package/src/experiences/components/SellDomainNameWidget/i18n/sell-domain-name-widget.es-ES.json +7 -7
  704. package/src/experiences/components/SellDomainNameWidget/i18n/sell-domain-name-widget.fr-CA.json +7 -7
  705. package/src/experiences/components/SellDomainNameWidget/i18n/sell-domain-name-widget.fr-FR.json +7 -7
  706. package/src/experiences/components/SellDomainNameWidget/i18n/sell-domain-name-widget.json +7 -7
  707. package/src/experiences/components/SellDomainNameWidget/i18n/sell-domain-name-widget.pt-BR.json +7 -7
  708. package/src/experiences/components/SellDomainNameWidget/i18n/sell-domain-name-widget.pt-PT.json +7 -7
  709. package/src/experiences/components/SideNavigationPanel/MenuCta.vue +62 -62
  710. package/src/experiences/components/SideNavigationPanel/MenuItem.vue +40 -40
  711. package/src/experiences/components/SideNavigationPanel/SideNavigationPanel.stories.js +219 -219
  712. package/src/experiences/components/SideNavigationPanel/SideNavigationPanel.vue +48 -48
  713. package/src/experiences/components/SideNavigationPanel/types.ts +7 -7
  714. package/src/experiences/components/UploadYourLogoApplication/UploadYourLogoApplication.stories.js +254 -205
  715. package/src/experiences/components/UploadYourLogoApplication/UploadYourLogoApplication.vue +163 -135
  716. package/src/experiences/components/UploadYourLogoDropzone/UploadYourLogoDropzone.stories.js +59 -59
  717. package/src/experiences/components/UploadYourLogoDropzone/UploadYourLogoDropzone.vue +285 -285
  718. package/src/experiences/components/UploadYourLogoOnBoarding/LogoBusinessBrandColours.stories.js +37 -37
  719. package/src/experiences/components/UploadYourLogoOnBoarding/LogoBusinessBrandColours.vue +338 -338
  720. package/src/experiences/components/UploadYourLogoOnBoarding/LogoBusinessText.vue +146 -146
  721. package/src/experiences/components/UploadYourLogoOnBoarding/LogoCropper.vue +473 -473
  722. package/src/experiences/components/UploadYourLogoOnBoarding/LogoKeywords.stories.js +65 -0
  723. package/src/experiences/components/UploadYourLogoOnBoarding/LogoKeywords.vue +156 -0
  724. package/src/experiences/components/UploadYourLogoOnBoarding/LogoPreview.vue +103 -103
  725. package/src/experiences/components/UploadYourLogoOnBoarding/LogoUploadError.vue +75 -75
  726. package/src/experiences/components/UploadYourLogoOnBoarding/LogoUploadExitConfirmation.vue +55 -55
  727. package/src/experiences/components/UploadYourLogoOnBoarding/LogoUploadModal.vue +38 -38
  728. package/src/experiences/components/UploadYourLogoOnBoarding/LogoUploader.vue +109 -109
  729. package/src/experiences/components/UploadYourLogoOnBoarding/LogoUploadingLoader.vue +39 -39
  730. package/src/experiences/components/UploadYourLogoOnBoarding/UploadYourLogoOnBoarding.vue +363 -311
  731. package/src/experiences/components/UploadYourLogoOnBoarding/i18n/upload-your-logo.de-DE.json +37 -34
  732. package/src/experiences/components/UploadYourLogoOnBoarding/i18n/upload-your-logo.es-ES.json +37 -34
  733. package/src/experiences/components/UploadYourLogoOnBoarding/i18n/upload-your-logo.fr-CA.json +37 -34
  734. package/src/experiences/components/UploadYourLogoOnBoarding/i18n/upload-your-logo.fr-FR.json +37 -34
  735. package/src/experiences/components/UploadYourLogoOnBoarding/i18n/upload-your-logo.json +37 -35
  736. package/src/experiences/components/UploadYourLogoOnBoarding/i18n/upload-your-logo.pt-BR.json +37 -34
  737. package/src/experiences/components/UploadYourLogoOnBoarding/i18n/upload-your-logo.pt-PT.json +37 -34
  738. package/src/experiences/components/UploadedLogoSearchResultCard/UploadedLogoSearchResultCard.stories.js +82 -82
  739. package/src/experiences/components/UploadedLogoSearchResultCard/UploadedLogoSearchResultCard.vue +211 -211
  740. package/src/experiences/components/UploadedLogoSearchResultCard/i18n/upload-logo-search-result-card.de-DE.json +8 -8
  741. package/src/experiences/components/UploadedLogoSearchResultCard/i18n/upload-logo-search-result-card.es-ES.json +8 -8
  742. package/src/experiences/components/UploadedLogoSearchResultCard/i18n/upload-logo-search-result-card.fr-CA.json +8 -8
  743. package/src/experiences/components/UploadedLogoSearchResultCard/i18n/upload-logo-search-result-card.fr-FR.json +8 -8
  744. package/src/experiences/components/UploadedLogoSearchResultCard/i18n/upload-logo-search-result-card.json +8 -8
  745. package/src/experiences/components/UploadedLogoSearchResultCard/i18n/upload-logo-search-result-card.pt-BR.json +8 -8
  746. package/src/experiences/components/UploadedLogoSearchResultCard/i18n/upload-logo-search-result-card.pt-PT.json +8 -8
  747. package/src/experiences/components/WebsitesContextualUpgradeModal/WebsiteContextualUpgradeModal.stories.js +181 -181
  748. package/src/experiences/components/WebsitesContextualUpgradeModal/WebsiteContextualUpgradeModal.vue +203 -203
  749. package/src/experiences/components/WebsitesContextualUpgradeModal/i18n/website-contextual-upgrade-modal.de-DE.json +42 -42
  750. package/src/experiences/components/WebsitesContextualUpgradeModal/i18n/website-contextual-upgrade-modal.es-ES.json +42 -42
  751. package/src/experiences/components/WebsitesContextualUpgradeModal/i18n/website-contextual-upgrade-modal.fr-CA.json +42 -42
  752. package/src/experiences/components/WebsitesContextualUpgradeModal/i18n/website-contextual-upgrade-modal.fr-FR.json +42 -42
  753. package/src/experiences/components/WebsitesContextualUpgradeModal/i18n/website-contextual-upgrade-modal.json +42 -42
  754. package/src/experiences/components/WebsitesContextualUpgradeModal/i18n/website-contextual-upgrade-modal.pt-BR.json +42 -42
  755. package/src/experiences/components/WebsitesContextualUpgradeModal/i18n/website-contextual-upgrade-modal.pt-PT.json +42 -42
  756. package/src/experiences/constants/api.js +9 -8
  757. package/src/experiences/constants/error-constants.js +5 -5
  758. package/src/experiences/constants/event-constants.js +18 -18
  759. package/src/experiences/constants/partner-dictionary-constants.js +27 -27
  760. package/src/experiences/constants/rego-source-constants.js +3 -3
  761. package/src/experiences/constants/sell-domain-name-constants.js +4 -4
  762. package/src/experiences/helpers/email-validator.js +5 -5
  763. package/src/experiences/helpers/hex-diff.js +116 -116
  764. package/src/experiences/helpers/tracking.js +5 -5
  765. package/src/experiences/mixins/mediaQueryMixin.js +31 -31
  766. package/src/experiences/mixins/themeMixin.js +22 -22
  767. package/src/experiences/models/websiteContextualModel.ts +11 -11
  768. package/src/themes/base.js +20 -20
  769. package/src/themes/bc.js +95 -95
  770. package/src/themes/bp.js +21 -21
  771. package/src/themes/cd.js +94 -94
  772. package/src/themes/dc.js +84 -84
  773. package/src/themes/dcom.js +106 -106
  774. package/src/themes/themes.js +16 -16
  775. package/src/useSharedLibTranslate.js +131 -131
  776. package/src/viewports.js +51 -51
  777. package/storybook-static/favicon.ico +0 -0
  778. package/stylelint.config.js +19 -19
  779. package/tailwind.build.js +83 -83
  780. package/tailwind.config.js +36 -36
  781. package/tailwind.themes.js +59 -59
  782. package/vite.config.ts +37 -37
@@ -491,40 +491,40 @@ video {
491
491
  --tw-backdrop-opacity: ;
492
492
  --tw-backdrop-saturate: ;
493
493
  --tw-backdrop-sepia: ;
494
- }
494
+ }
495
495
  .tw-container {
496
496
  width: 100%;
497
- }
497
+ }
498
498
  @media (min-width: 640px) {
499
499
 
500
500
  .tw-container {
501
501
  max-width: 640px;
502
502
  }
503
- }
503
+ }
504
504
  @media (min-width: 768px) {
505
505
 
506
506
  .tw-container {
507
507
  max-width: 768px;
508
508
  }
509
- }
509
+ }
510
510
  @media (min-width: 1024px) {
511
511
 
512
512
  .tw-container {
513
513
  max-width: 1024px;
514
514
  }
515
- }
515
+ }
516
516
  @media (min-width: 1280px) {
517
517
 
518
518
  .tw-container {
519
519
  max-width: 1280px;
520
520
  }
521
- }
521
+ }
522
522
  @media (min-width: 1536px) {
523
523
 
524
524
  .tw-container {
525
525
  max-width: 1536px;
526
526
  }
527
- }
527
+ }
528
528
  .tw-sr-only {
529
529
  position: absolute;
530
530
  width: 1px;
@@ -535,1378 +535,1387 @@ video {
535
535
  clip: rect(0, 0, 0, 0);
536
536
  white-space: nowrap;
537
537
  border-width: 0;
538
- }
538
+ }
539
539
  .tw-pointer-events-none {
540
540
  pointer-events: none;
541
- }
541
+ }
542
542
  .tw-static {
543
543
  position: static;
544
- }
544
+ }
545
545
  .tw-fixed {
546
546
  position: fixed;
547
- }
547
+ }
548
548
  .tw-absolute {
549
549
  position: absolute;
550
- }
550
+ }
551
551
  .tw-relative {
552
552
  position: relative;
553
- }
553
+ }
554
+ .tw-inset-0 {
555
+ inset: 0px;
556
+ }
554
557
  .tw--left-16 {
555
558
  left: -4rem;
556
- }
559
+ }
557
560
  .tw--right-16 {
558
561
  right: -4rem;
559
- }
562
+ }
560
563
  .tw-bottom-0 {
561
564
  bottom: 0px;
562
- }
565
+ }
563
566
  .tw-bottom-full {
564
567
  bottom: 100%;
565
- }
568
+ }
566
569
  .tw-left-0 {
567
570
  left: 0px;
568
- }
571
+ }
569
572
  .tw-left-1\/2 {
570
573
  left: 50%;
571
- }
574
+ }
572
575
  .tw-left-2 {
573
576
  left: 0.5rem;
574
- }
577
+ }
575
578
  .tw-left-full {
576
579
  left: 100%;
577
- }
580
+ }
578
581
  .tw-right-0 {
579
582
  right: 0px;
580
- }
583
+ }
581
584
  .tw-right-2 {
582
585
  right: 0.5rem;
583
- }
586
+ }
584
587
  .tw-right-full {
585
588
  right: 100%;
586
- }
589
+ }
587
590
  .tw-top-0 {
588
591
  top: 0px;
589
- }
592
+ }
590
593
  .tw-top-1\/2 {
591
594
  top: 50%;
592
- }
595
+ }
593
596
  .tw-top-full {
594
597
  top: 100%;
595
- }
598
+ }
596
599
  .tw-z-10 {
597
600
  z-index: 10;
598
- }
601
+ }
599
602
  .tw-z-20 {
600
603
  z-index: 20;
601
- }
604
+ }
602
605
  .tw-z-30 {
603
606
  z-index: 30;
604
- }
607
+ }
605
608
  .tw-z-50 {
606
609
  z-index: 50;
607
- }
610
+ }
608
611
  .tw-order-last {
609
612
  order: 9999;
610
- }
613
+ }
611
614
  .tw-col-span-2 {
612
615
  grid-column: span 2 / span 2;
613
- }
616
+ }
614
617
  .tw-m-0 {
615
618
  margin: 0px;
616
- }
619
+ }
617
620
  .tw-m-3 {
618
621
  margin: 0.75rem;
619
- }
622
+ }
620
623
  .tw-m-4 {
621
624
  margin: 1rem;
622
- }
625
+ }
623
626
  .tw-m-5 {
624
627
  margin: 1.25rem;
625
- }
628
+ }
626
629
  .tw-m-auto {
627
630
  margin: auto;
628
- }
631
+ }
629
632
  .tw-mx-2 {
630
633
  margin-left: 0.5rem;
631
634
  margin-right: 0.5rem;
632
- }
635
+ }
633
636
  .tw-mx-4 {
634
637
  margin-left: 1rem;
635
638
  margin-right: 1rem;
636
- }
639
+ }
637
640
  .tw-mx-8 {
638
641
  margin-left: 2rem;
639
642
  margin-right: 2rem;
640
- }
643
+ }
641
644
  .tw-mx-auto {
642
645
  margin-left: auto;
643
646
  margin-right: auto;
644
- }
647
+ }
645
648
  .tw-my-0 {
646
649
  margin-top: 0px;
647
650
  margin-bottom: 0px;
648
- }
651
+ }
649
652
  .tw-my-1 {
650
653
  margin-top: 0.25rem;
651
654
  margin-bottom: 0.25rem;
652
- }
655
+ }
653
656
  .tw-my-10 {
654
657
  margin-top: 2.5rem;
655
658
  margin-bottom: 2.5rem;
656
- }
659
+ }
657
660
  .tw-my-4 {
658
661
  margin-top: 1rem;
659
662
  margin-bottom: 1rem;
660
- }
663
+ }
661
664
  .tw-my-5 {
662
665
  margin-top: 1.25rem;
663
666
  margin-bottom: 1.25rem;
664
- }
667
+ }
665
668
  .tw-my-auto {
666
669
  margin-top: auto;
667
670
  margin-bottom: auto;
668
- }
671
+ }
669
672
  .tw--mb-1 {
670
673
  margin-bottom: -0.25rem;
671
- }
674
+ }
672
675
  .tw--mb-1\.5 {
673
676
  margin-bottom: -0.375rem;
674
- }
677
+ }
675
678
  .tw--ml-px {
676
679
  margin-left: -1px;
677
- }
680
+ }
678
681
  .tw--mr-1 {
679
682
  margin-right: -0.25rem;
680
- }
683
+ }
681
684
  .tw--mr-1\.5 {
682
685
  margin-right: -0.375rem;
683
- }
686
+ }
684
687
  .tw--mt-px {
685
688
  margin-top: -1px;
686
- }
689
+ }
687
690
  .tw-mb-0 {
688
691
  margin-bottom: 0px;
689
- }
692
+ }
690
693
  .tw-mb-0\.5 {
691
694
  margin-bottom: 0.125rem;
692
- }
695
+ }
693
696
  .tw-mb-1 {
694
697
  margin-bottom: 0.25rem;
695
- }
698
+ }
696
699
  .tw-mb-10 {
697
700
  margin-bottom: 2.5rem;
698
- }
701
+ }
699
702
  .tw-mb-2 {
700
703
  margin-bottom: 0.5rem;
701
- }
704
+ }
702
705
  .tw-mb-3 {
703
706
  margin-bottom: 0.75rem;
704
- }
707
+ }
705
708
  .tw-mb-4 {
706
709
  margin-bottom: 1rem;
707
- }
710
+ }
708
711
  .tw-mb-6 {
709
712
  margin-bottom: 1.5rem;
710
- }
713
+ }
711
714
  .tw-mb-8 {
712
715
  margin-bottom: 2rem;
713
- }
716
+ }
714
717
  .tw-ml-0 {
715
718
  margin-left: 0px;
716
- }
719
+ }
717
720
  .tw-ml-2 {
718
721
  margin-left: 0.5rem;
719
- }
722
+ }
720
723
  .tw-ml-3 {
721
724
  margin-left: 0.75rem;
722
- }
725
+ }
723
726
  .tw-ml-4 {
724
727
  margin-left: 1rem;
725
- }
728
+ }
726
729
  .tw-ml-auto {
727
730
  margin-left: auto;
728
- }
731
+ }
729
732
  .tw-mr-1 {
730
733
  margin-right: 0.25rem;
731
- }
734
+ }
732
735
  .tw-mr-2 {
733
736
  margin-right: 0.5rem;
734
- }
737
+ }
735
738
  .tw-mr-3 {
736
739
  margin-right: 0.75rem;
737
- }
740
+ }
738
741
  .tw-mr-4 {
739
742
  margin-right: 1rem;
740
- }
743
+ }
741
744
  .tw-mr-auto {
742
745
  margin-right: auto;
743
- }
746
+ }
744
747
  .tw-mt-0 {
745
748
  margin-top: 0px;
746
- }
749
+ }
747
750
  .tw-mt-1 {
748
751
  margin-top: 0.25rem;
749
- }
752
+ }
750
753
  .tw-mt-2 {
751
754
  margin-top: 0.5rem;
752
- }
755
+ }
753
756
  .tw-mt-3 {
754
757
  margin-top: 0.75rem;
755
- }
758
+ }
756
759
  .tw-mt-4 {
757
760
  margin-top: 1rem;
758
- }
761
+ }
759
762
  .tw-mt-6 {
760
763
  margin-top: 1.5rem;
761
- }
764
+ }
762
765
  .tw-mt-8 {
763
766
  margin-top: 2rem;
764
- }
767
+ }
765
768
  .tw-box-border {
766
769
  box-sizing: border-box;
767
- }
770
+ }
768
771
  .tw-box-content {
769
772
  box-sizing: content-box;
770
- }
773
+ }
771
774
  .tw-line-clamp-1 {
772
775
  overflow: hidden;
773
776
  display: -webkit-box;
774
777
  -webkit-box-orient: vertical;
775
778
  -webkit-line-clamp: 1;
776
- }
779
+ }
777
780
  .tw-line-clamp-2 {
778
781
  overflow: hidden;
779
782
  display: -webkit-box;
780
783
  -webkit-box-orient: vertical;
781
784
  -webkit-line-clamp: 2;
782
- }
785
+ }
783
786
  .tw-line-clamp-3 {
784
787
  overflow: hidden;
785
788
  display: -webkit-box;
786
789
  -webkit-box-orient: vertical;
787
790
  -webkit-line-clamp: 3;
788
- }
791
+ }
789
792
  .tw-line-clamp-4 {
790
793
  overflow: hidden;
791
794
  display: -webkit-box;
792
795
  -webkit-box-orient: vertical;
793
796
  -webkit-line-clamp: 4;
794
- }
797
+ }
795
798
  .tw-line-clamp-5 {
796
799
  overflow: hidden;
797
800
  display: -webkit-box;
798
801
  -webkit-box-orient: vertical;
799
802
  -webkit-line-clamp: 5;
800
- }
803
+ }
801
804
  .tw-line-clamp-6 {
802
805
  overflow: hidden;
803
806
  display: -webkit-box;
804
807
  -webkit-box-orient: vertical;
805
808
  -webkit-line-clamp: 6;
806
- }
809
+ }
807
810
  .tw-line-clamp-none {
808
811
  overflow: visible;
809
812
  display: block;
810
813
  -webkit-box-orient: horizontal;
811
814
  -webkit-line-clamp: none;
812
- }
815
+ }
813
816
  .tw-block {
814
817
  display: block;
815
- }
818
+ }
816
819
  .tw-inline-block {
817
820
  display: inline-block;
818
- }
821
+ }
819
822
  .tw-inline {
820
823
  display: inline;
821
- }
824
+ }
822
825
  .tw-flex {
823
826
  display: flex;
824
- }
827
+ }
825
828
  .tw-inline-flex {
826
829
  display: inline-flex;
827
- }
830
+ }
828
831
  .tw-grid {
829
832
  display: grid;
830
- }
833
+ }
831
834
  .tw-hidden {
832
835
  display: none;
833
- }
836
+ }
834
837
  .tw-h-0 {
835
838
  height: 0px;
836
- }
839
+ }
837
840
  .tw-h-10 {
838
841
  height: 2.5rem;
839
- }
842
+ }
840
843
  .tw-h-12 {
841
844
  height: 3rem;
842
- }
845
+ }
843
846
  .tw-h-14 {
844
847
  height: 3.5rem;
845
- }
848
+ }
846
849
  .tw-h-16 {
847
850
  height: 4rem;
848
- }
851
+ }
849
852
  .tw-h-2 {
850
853
  height: 0.5rem;
851
- }
854
+ }
852
855
  .tw-h-20 {
853
856
  height: 5rem;
854
- }
857
+ }
855
858
  .tw-h-24 {
856
859
  height: 6rem;
857
- }
860
+ }
858
861
  .tw-h-3 {
859
862
  height: 0.75rem;
860
- }
863
+ }
861
864
  .tw-h-4 {
862
865
  height: 1rem;
863
- }
866
+ }
864
867
  .tw-h-40 {
865
868
  height: 10rem;
866
- }
869
+ }
867
870
  .tw-h-5 {
868
871
  height: 1.25rem;
869
- }
872
+ }
870
873
  .tw-h-6 {
871
874
  height: 1.5rem;
872
- }
875
+ }
873
876
  .tw-h-8 {
874
877
  height: 2rem;
875
- }
878
+ }
876
879
  .tw-h-80 {
877
880
  height: 20rem;
878
- }
881
+ }
879
882
  .tw-h-auto {
880
883
  height: auto;
881
- }
884
+ }
882
885
  .tw-h-fit {
883
886
  height: -moz-fit-content;
884
887
  height: fit-content;
885
- }
888
+ }
886
889
  .tw-h-full {
887
890
  height: 100%;
888
- }
891
+ }
889
892
  .tw-max-h-56 {
890
893
  max-height: 14rem;
891
- }
894
+ }
892
895
  .tw-max-h-72 {
893
896
  max-height: 18rem;
894
- }
897
+ }
895
898
  .tw-max-h-full {
896
899
  max-height: 100%;
897
- }
900
+ }
898
901
  .tw-max-h-screen {
899
902
  max-height: 100vh;
900
- }
903
+ }
901
904
  .tw-w-10 {
902
905
  width: 2.5rem;
903
- }
906
+ }
904
907
  .tw-w-12 {
905
908
  width: 3rem;
906
- }
909
+ }
907
910
  .tw-w-14 {
908
911
  width: 3.5rem;
909
- }
912
+ }
910
913
  .tw-w-16 {
911
914
  width: 4rem;
912
- }
915
+ }
913
916
  .tw-w-2 {
914
917
  width: 0.5rem;
915
- }
918
+ }
916
919
  .tw-w-24 {
917
920
  width: 6rem;
918
- }
921
+ }
919
922
  .tw-w-3 {
920
923
  width: 0.75rem;
921
- }
924
+ }
922
925
  .tw-w-32 {
923
926
  width: 8rem;
924
- }
927
+ }
925
928
  .tw-w-4 {
926
929
  width: 1rem;
927
- }
930
+ }
928
931
  .tw-w-5 {
929
932
  width: 1.25rem;
930
- }
933
+ }
931
934
  .tw-w-6 {
932
935
  width: 1.5rem;
933
- }
936
+ }
934
937
  .tw-w-60 {
935
938
  width: 15rem;
936
- }
939
+ }
937
940
  .tw-w-64 {
938
941
  width: 16rem;
939
- }
942
+ }
940
943
  .tw-w-72 {
941
944
  width: 18rem;
942
- }
945
+ }
943
946
  .tw-w-8 {
944
947
  width: 2rem;
945
- }
948
+ }
946
949
  .tw-w-96 {
947
950
  width: 24rem;
948
- }
951
+ }
949
952
  .tw-w-\[14rem\] {
950
953
  width: 14rem;
951
- }
954
+ }
952
955
  .tw-w-auto {
953
956
  width: auto;
954
- }
957
+ }
955
958
  .tw-w-fit {
956
959
  width: -moz-fit-content;
957
960
  width: fit-content;
958
- }
961
+ }
959
962
  .tw-w-full {
960
963
  width: 100%;
961
- }
964
+ }
962
965
  .tw-max-w-2xl {
963
966
  max-width: 42rem;
964
- }
967
+ }
965
968
  .tw-max-w-3xl {
966
969
  max-width: 48rem;
967
- }
970
+ }
968
971
  .tw-max-w-full {
969
972
  max-width: 100%;
970
- }
973
+ }
971
974
  .tw-max-w-md {
972
975
  max-width: 28rem;
973
- }
976
+ }
974
977
  .tw-max-w-xl {
975
978
  max-width: 36rem;
976
- }
979
+ }
977
980
  .tw-flex-auto {
978
981
  flex: 1 1 auto;
979
- }
982
+ }
980
983
  .tw-flex-none {
981
984
  flex: none;
982
- }
985
+ }
983
986
  .tw-flex-shrink-0 {
984
987
  flex-shrink: 0;
985
- }
988
+ }
986
989
  .tw-grow {
987
990
  flex-grow: 1;
988
- }
991
+ }
989
992
  .tw-origin-top-right {
990
993
  transform-origin: top right;
991
- }
994
+ }
992
995
  .-tw-translate-x-px {
993
996
  --tw-translate-x: -1px;
994
997
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
995
- }
998
+ }
996
999
  .tw--translate-x-2 {
997
1000
  --tw-translate-x: -0.5rem;
998
1001
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
999
- }
1002
+ }
1000
1003
  .tw--translate-x-3 {
1001
1004
  --tw-translate-x: -0.75rem;
1002
1005
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
1003
- }
1006
+ }
1004
1007
  .tw--translate-x-4 {
1005
1008
  --tw-translate-x: -1rem;
1006
1009
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
1007
- }
1010
+ }
1008
1011
  .tw--translate-y-1\/2 {
1009
1012
  --tw-translate-y: -50%;
1010
1013
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
1011
- }
1014
+ }
1012
1015
  .tw--translate-y-2 {
1013
1016
  --tw-translate-y: -0.5rem;
1014
1017
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
1015
- }
1018
+ }
1016
1019
  .tw-translate-x-12 {
1017
1020
  --tw-translate-x: 3rem;
1018
1021
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
1019
- }
1022
+ }
1020
1023
  .tw-translate-x-20 {
1021
1024
  --tw-translate-x: 5rem;
1022
1025
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
1023
- }
1026
+ }
1024
1027
  .tw-translate-x-4 {
1025
1028
  --tw-translate-x: 1rem;
1026
1029
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
1027
- }
1030
+ }
1028
1031
  .tw-translate-x-5 {
1029
1032
  --tw-translate-x: 1.25rem;
1030
1033
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
1031
- }
1034
+ }
1032
1035
  .tw-translate-x-6 {
1033
1036
  --tw-translate-x: 1.5rem;
1034
1037
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
1035
- }
1038
+ }
1036
1039
  .tw-translate-x-8 {
1037
1040
  --tw-translate-x: 2rem;
1038
1041
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
1039
- }
1042
+ }
1040
1043
  .tw-translate-y-1\/2 {
1041
1044
  --tw-translate-y: 50%;
1042
1045
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
1043
- }
1046
+ }
1044
1047
  .tw-translate-y-2 {
1045
1048
  --tw-translate-y: 0.5rem;
1046
1049
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
1047
- }
1050
+ }
1048
1051
  .tw-translate-y-2\.5 {
1049
1052
  --tw-translate-y: 0.625rem;
1050
1053
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
1051
- }
1054
+ }
1052
1055
  .tw-translate-y-4 {
1053
1056
  --tw-translate-y: 1rem;
1054
1057
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
1055
- }
1058
+ }
1056
1059
  .tw-scale-0 {
1057
1060
  --tw-scale-x: 0;
1058
1061
  --tw-scale-y: 0;
1059
1062
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
1060
- }
1063
+ }
1061
1064
  .tw-scale-100 {
1062
1065
  --tw-scale-x: 1;
1063
1066
  --tw-scale-y: 1;
1064
1067
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
1065
- }
1068
+ }
1066
1069
  .tw-transform {
1067
1070
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
1068
- }
1071
+ }
1069
1072
  @keyframes tw-spin {
1070
1073
 
1071
1074
  to {
1072
1075
  transform: rotate(360deg);
1073
1076
  }
1074
- }
1077
+ }
1075
1078
  .tw-animate-spin {
1076
1079
  animation: tw-spin 1s linear infinite;
1077
- }
1080
+ }
1078
1081
  .\!tw-cursor-not-allowed {
1079
1082
  cursor: not-allowed !important;
1080
- }
1083
+ }
1081
1084
  .tw-cursor-not-allowed {
1082
1085
  cursor: not-allowed;
1083
- }
1086
+ }
1084
1087
  .tw-cursor-pointer {
1085
1088
  cursor: pointer;
1086
- }
1089
+ }
1087
1090
  .tw-cursor-text {
1088
1091
  cursor: text;
1089
- }
1092
+ }
1090
1093
  .tw-cursor-wait {
1091
1094
  cursor: wait;
1092
- }
1095
+ }
1093
1096
  .tw-select-none {
1094
1097
  -webkit-user-select: none;
1095
1098
  -moz-user-select: none;
1096
1099
  user-select: none;
1097
- }
1100
+ }
1098
1101
  .tw-resize-none {
1099
1102
  resize: none;
1100
- }
1103
+ }
1101
1104
  .tw-list-none {
1102
1105
  list-style-type: none;
1103
- }
1106
+ }
1104
1107
  .tw-appearance-none {
1105
1108
  -webkit-appearance: none;
1106
1109
  -moz-appearance: none;
1107
1110
  appearance: none;
1108
- }
1111
+ }
1109
1112
  .tw-grid-flow-row {
1110
1113
  grid-auto-flow: row;
1111
- }
1114
+ }
1112
1115
  .tw-auto-rows-max {
1113
1116
  grid-auto-rows: max-content;
1114
- }
1117
+ }
1115
1118
  .tw-grid-cols-1 {
1116
1119
  grid-template-columns: repeat(1, minmax(0, 1fr));
1117
- }
1120
+ }
1118
1121
  .tw-grid-cols-3 {
1119
1122
  grid-template-columns: repeat(3, minmax(0, 1fr));
1120
- }
1123
+ }
1121
1124
  .tw-grid-cols-4 {
1122
1125
  grid-template-columns: repeat(4, minmax(0, 1fr));
1123
- }
1126
+ }
1124
1127
  .tw-flex-row {
1125
1128
  flex-direction: row;
1126
- }
1129
+ }
1127
1130
  .tw-flex-row-reverse {
1128
1131
  flex-direction: row-reverse;
1129
- }
1132
+ }
1130
1133
  .tw-flex-col {
1131
1134
  flex-direction: column;
1132
- }
1135
+ }
1133
1136
  .tw-flex-col-reverse {
1134
1137
  flex-direction: column-reverse;
1135
- }
1138
+ }
1136
1139
  .tw-content-start {
1137
1140
  align-content: flex-start;
1138
- }
1141
+ }
1139
1142
  .tw-items-start {
1140
1143
  align-items: flex-start;
1141
- }
1144
+ }
1142
1145
  .tw-items-end {
1143
1146
  align-items: flex-end;
1144
- }
1147
+ }
1145
1148
  .tw-items-center {
1146
1149
  align-items: center;
1147
- }
1150
+ }
1148
1151
  .tw-items-stretch {
1149
1152
  align-items: stretch;
1150
- }
1153
+ }
1151
1154
  .tw-justify-start {
1152
1155
  justify-content: flex-start;
1153
- }
1156
+ }
1154
1157
  .tw-justify-end {
1155
1158
  justify-content: flex-end;
1156
- }
1159
+ }
1157
1160
  .tw-justify-center {
1158
1161
  justify-content: center;
1159
- }
1162
+ }
1160
1163
  .tw-justify-between {
1161
1164
  justify-content: space-between;
1162
- }
1165
+ }
1163
1166
  .tw-gap-2 {
1164
1167
  gap: 0.5rem;
1165
- }
1168
+ }
1166
1169
  .tw-gap-3 {
1167
1170
  gap: 0.75rem;
1168
- }
1171
+ }
1169
1172
  .tw-gap-4 {
1170
1173
  gap: 1rem;
1171
- }
1174
+ }
1172
1175
  .tw-self-center {
1173
1176
  align-self: center;
1174
- }
1177
+ }
1175
1178
  .tw-overflow-hidden {
1176
1179
  overflow: hidden;
1177
- }
1180
+ }
1178
1181
  .tw-overflow-visible {
1179
1182
  overflow: visible;
1180
- }
1183
+ }
1181
1184
  .tw-overflow-scroll {
1182
1185
  overflow: scroll;
1183
- }
1186
+ }
1184
1187
  .tw-overflow-x-auto {
1185
1188
  overflow-x: auto;
1186
- }
1189
+ }
1187
1190
  .tw-overflow-y-auto {
1188
1191
  overflow-y: auto;
1189
- }
1192
+ }
1190
1193
  .tw-overflow-x-hidden {
1191
1194
  overflow-x: hidden;
1192
- }
1195
+ }
1193
1196
  .tw-overflow-y-hidden {
1194
1197
  overflow-y: hidden;
1195
- }
1198
+ }
1196
1199
  .tw-truncate {
1197
1200
  overflow: hidden;
1198
1201
  text-overflow: ellipsis;
1199
1202
  white-space: nowrap;
1200
- }
1203
+ }
1201
1204
  .tw-text-ellipsis {
1202
1205
  text-overflow: ellipsis;
1203
- }
1206
+ }
1204
1207
  .tw-whitespace-nowrap {
1205
1208
  white-space: nowrap;
1206
- }
1209
+ }
1207
1210
  .tw-break-all {
1208
1211
  word-break: break-all;
1209
- }
1212
+ }
1210
1213
  .tw-rounded {
1211
1214
  border-radius: 0.25rem;
1212
- }
1215
+ }
1213
1216
  .tw-rounded-full {
1214
1217
  border-radius: 9999px;
1215
- }
1218
+ }
1216
1219
  .tw-rounded-lg {
1217
1220
  border-radius: 0.5rem;
1218
- }
1221
+ }
1219
1222
  .tw-rounded-md {
1220
1223
  border-radius: 0.375rem;
1221
- }
1224
+ }
1222
1225
  .tw-rounded-none {
1223
1226
  border-radius: 0px;
1224
- }
1227
+ }
1225
1228
  .tw-rounded-sm {
1226
1229
  border-radius: 0.125rem;
1227
- }
1230
+ }
1228
1231
  .\!tw-rounded-l-none {
1229
1232
  border-top-left-radius: 0px !important;
1230
1233
  border-bottom-left-radius: 0px !important;
1231
- }
1234
+ }
1232
1235
  .\!tw-rounded-r-none {
1233
1236
  border-top-right-radius: 0px !important;
1234
1237
  border-bottom-right-radius: 0px !important;
1235
- }
1238
+ }
1236
1239
  .tw-rounded-b {
1237
1240
  border-bottom-right-radius: 0.25rem;
1238
1241
  border-bottom-left-radius: 0.25rem;
1239
- }
1242
+ }
1240
1243
  .tw-rounded-l {
1241
1244
  border-top-left-radius: 0.25rem;
1242
1245
  border-bottom-left-radius: 0.25rem;
1243
- }
1246
+ }
1244
1247
  .tw-rounded-l-none {
1245
1248
  border-top-left-radius: 0px;
1246
1249
  border-bottom-left-radius: 0px;
1247
- }
1250
+ }
1248
1251
  .tw-rounded-r {
1249
1252
  border-top-right-radius: 0.25rem;
1250
1253
  border-bottom-right-radius: 0.25rem;
1251
- }
1254
+ }
1252
1255
  .tw-rounded-r-none {
1253
1256
  border-top-right-radius: 0px;
1254
1257
  border-bottom-right-radius: 0px;
1255
- }
1258
+ }
1256
1259
  .tw-border {
1257
1260
  border-width: 1px;
1258
- }
1261
+ }
1259
1262
  .tw-border-0 {
1260
1263
  border-width: 0px;
1261
- }
1264
+ }
1262
1265
  .tw-border-2 {
1263
1266
  border-width: 2px;
1264
- }
1267
+ }
1265
1268
  .tw-border-b-0 {
1266
1269
  border-bottom-width: 0px;
1267
- }
1270
+ }
1268
1271
  .tw-border-b-2 {
1269
1272
  border-bottom-width: 2px;
1270
- }
1273
+ }
1271
1274
  .tw-border-b-4 {
1272
1275
  border-bottom-width: 4px;
1273
- }
1276
+ }
1274
1277
  .tw-border-l {
1275
1278
  border-left-width: 1px;
1276
- }
1279
+ }
1277
1280
  .tw-border-l-0 {
1278
1281
  border-left-width: 0px;
1279
- }
1282
+ }
1280
1283
  .tw-border-r {
1281
1284
  border-right-width: 1px;
1282
- }
1285
+ }
1283
1286
  .tw-border-r-0 {
1284
1287
  border-right-width: 0px;
1285
- }
1288
+ }
1286
1289
  .tw-border-t {
1287
1290
  border-top-width: 1px;
1288
- }
1291
+ }
1289
1292
  .tw-border-t-0 {
1290
1293
  border-top-width: 0px;
1291
- }
1294
+ }
1292
1295
  .tw-border-t-2 {
1293
1296
  border-top-width: 2px;
1294
- }
1297
+ }
1295
1298
  .tw-border-solid {
1296
1299
  border-style: solid;
1297
- }
1300
+ }
1298
1301
  .tw-border-dashed {
1299
1302
  border-style: dashed;
1300
- }
1303
+ }
1301
1304
  .tw-border-none {
1302
1305
  border-style: none;
1303
- }
1306
+ }
1304
1307
  .tw-border-black\/10 {
1305
1308
  border-color: rgb(0 0 0 / 0.1);
1306
- }
1309
+ }
1307
1310
  .tw-border-grayscale-100 {
1308
1311
  --tw-border-opacity: 1;
1309
1312
  border-color: rgb(255 255 255 / var(--tw-border-opacity));
1310
- }
1313
+ }
1311
1314
  .tw-border-grayscale-300 {
1312
1315
  --tw-border-opacity: 1;
1313
1316
  border-color: rgb(239 239 239 / var(--tw-border-opacity));
1314
- }
1317
+ }
1315
1318
  .tw-border-grayscale-400 {
1316
1319
  --tw-border-opacity: 1;
1317
1320
  border-color: rgb(230 230 230 / var(--tw-border-opacity));
1318
- }
1321
+ }
1319
1322
  .tw-border-grayscale-500 {
1320
1323
  --tw-border-opacity: 1;
1321
1324
  border-color: rgb(208 208 208 / var(--tw-border-opacity));
1322
- }
1325
+ }
1323
1326
  .tw-border-grayscale-600 {
1324
1327
  --tw-border-opacity: 1;
1325
1328
  border-color: rgb(94 94 94 / var(--tw-border-opacity));
1326
- }
1329
+ }
1327
1330
  .tw-border-grayscale-700 {
1328
1331
  --tw-border-opacity: 1;
1329
1332
  border-color: rgb(43 43 43 / var(--tw-border-opacity));
1330
- }
1333
+ }
1331
1334
  .tw-border-white {
1332
1335
  --tw-border-opacity: 1;
1333
1336
  border-color: rgb(255 255 255 / var(--tw-border-opacity));
1334
- }
1337
+ }
1338
+ .tw-border-t-transparent {
1339
+ border-top-color: transparent;
1340
+ }
1335
1341
  .tw-bg-black {
1336
1342
  --tw-bg-opacity: 1;
1337
1343
  background-color: rgb(0 0 0 / var(--tw-bg-opacity));
1338
- }
1344
+ }
1339
1345
  .tw-bg-grayscale-100 {
1340
1346
  --tw-bg-opacity: 1;
1341
1347
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
1342
- }
1348
+ }
1343
1349
  .tw-bg-grayscale-200 {
1344
1350
  --tw-bg-opacity: 1;
1345
1351
  background-color: rgb(244 244 244 / var(--tw-bg-opacity));
1346
- }
1352
+ }
1347
1353
  .tw-bg-grayscale-300 {
1348
1354
  --tw-bg-opacity: 1;
1349
1355
  background-color: rgb(239 239 239 / var(--tw-bg-opacity));
1350
- }
1356
+ }
1351
1357
  .tw-bg-grayscale-400 {
1352
1358
  --tw-bg-opacity: 1;
1353
1359
  background-color: rgb(230 230 230 / var(--tw-bg-opacity));
1354
- }
1360
+ }
1355
1361
  .tw-bg-grayscale-500 {
1356
1362
  --tw-bg-opacity: 1;
1357
1363
  background-color: rgb(208 208 208 / var(--tw-bg-opacity));
1358
- }
1364
+ }
1359
1365
  .tw-bg-transparent {
1360
1366
  background-color: transparent;
1361
- }
1367
+ }
1362
1368
  .tw-bg-white {
1363
1369
  --tw-bg-opacity: 1;
1364
1370
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
1365
- }
1371
+ }
1372
+ .tw-bg-white\/50 {
1373
+ background-color: rgb(255 255 255 / 0.5);
1374
+ }
1366
1375
  .tw-bg-opacity-75 {
1367
1376
  --tw-bg-opacity: 0.75;
1368
- }
1377
+ }
1369
1378
  .tw-bg-opacity-80 {
1370
1379
  --tw-bg-opacity: 0.8;
1371
- }
1380
+ }
1372
1381
  .tw-bg-gradient-to-t {
1373
1382
  background-image: linear-gradient(to top, var(--tw-gradient-stops));
1374
- }
1383
+ }
1375
1384
  .tw-from-\[\#d946ef\] {
1376
1385
  --tw-gradient-from: #d946ef var(--tw-gradient-from-position);
1377
1386
  --tw-gradient-to: rgb(217 70 239 / 0) var(--tw-gradient-to-position);
1378
1387
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
1379
- }
1388
+ }
1380
1389
  .tw-to-\[\#8b5cf6\] {
1381
1390
  --tw-gradient-to: #8b5cf6 var(--tw-gradient-to-position);
1382
- }
1391
+ }
1383
1392
  .tw-bg-no-repeat {
1384
1393
  background-repeat: no-repeat;
1385
- }
1394
+ }
1386
1395
  .tw-fill-current {
1387
1396
  fill: currentColor;
1388
- }
1397
+ }
1389
1398
  .tw-object-contain {
1390
1399
  -o-object-fit: contain;
1391
1400
  object-fit: contain;
1392
- }
1401
+ }
1393
1402
  .tw-object-cover {
1394
1403
  -o-object-fit: cover;
1395
1404
  object-fit: cover;
1396
- }
1405
+ }
1397
1406
  .tw-object-top {
1398
1407
  -o-object-position: top;
1399
1408
  object-position: top;
1400
- }
1409
+ }
1401
1410
  .\!tw-p-0 {
1402
1411
  padding: 0px !important;
1403
- }
1412
+ }
1404
1413
  .\!tw-p-0\.5 {
1405
1414
  padding: 0.125rem !important;
1406
- }
1415
+ }
1407
1416
  .\!tw-p-1 {
1408
1417
  padding: 0.25rem !important;
1409
- }
1418
+ }
1410
1419
  .\!tw-p-1\.5 {
1411
1420
  padding: 0.375rem !important;
1412
- }
1421
+ }
1413
1422
  .\!tw-p-10 {
1414
1423
  padding: 2.5rem !important;
1415
- }
1424
+ }
1416
1425
  .\!tw-p-11 {
1417
1426
  padding: 2.75rem !important;
1418
- }
1427
+ }
1419
1428
  .\!tw-p-12 {
1420
1429
  padding: 3rem !important;
1421
- }
1430
+ }
1422
1431
  .\!tw-p-14 {
1423
1432
  padding: 3.5rem !important;
1424
- }
1433
+ }
1425
1434
  .\!tw-p-16 {
1426
1435
  padding: 4rem !important;
1427
- }
1436
+ }
1428
1437
  .\!tw-p-2 {
1429
1438
  padding: 0.5rem !important;
1430
- }
1439
+ }
1431
1440
  .\!tw-p-2\.5 {
1432
1441
  padding: 0.625rem !important;
1433
- }
1442
+ }
1434
1443
  .\!tw-p-20 {
1435
1444
  padding: 5rem !important;
1436
- }
1445
+ }
1437
1446
  .\!tw-p-24 {
1438
1447
  padding: 6rem !important;
1439
- }
1448
+ }
1440
1449
  .\!tw-p-28 {
1441
1450
  padding: 7rem !important;
1442
- }
1451
+ }
1443
1452
  .\!tw-p-3 {
1444
1453
  padding: 0.75rem !important;
1445
- }
1454
+ }
1446
1455
  .\!tw-p-3\.5 {
1447
1456
  padding: 0.875rem !important;
1448
- }
1457
+ }
1449
1458
  .\!tw-p-32 {
1450
1459
  padding: 8rem !important;
1451
- }
1460
+ }
1452
1461
  .\!tw-p-36 {
1453
1462
  padding: 9rem !important;
1454
- }
1463
+ }
1455
1464
  .\!tw-p-4 {
1456
1465
  padding: 1rem !important;
1457
- }
1466
+ }
1458
1467
  .\!tw-p-40 {
1459
1468
  padding: 10rem !important;
1460
- }
1469
+ }
1461
1470
  .\!tw-p-44 {
1462
1471
  padding: 11rem !important;
1463
- }
1472
+ }
1464
1473
  .\!tw-p-48 {
1465
1474
  padding: 12rem !important;
1466
- }
1475
+ }
1467
1476
  .\!tw-p-5 {
1468
1477
  padding: 1.25rem !important;
1469
- }
1478
+ }
1470
1479
  .\!tw-p-52 {
1471
1480
  padding: 13rem !important;
1472
- }
1481
+ }
1473
1482
  .\!tw-p-56 {
1474
1483
  padding: 14rem !important;
1475
- }
1484
+ }
1476
1485
  .\!tw-p-6 {
1477
1486
  padding: 1.5rem !important;
1478
- }
1487
+ }
1479
1488
  .\!tw-p-60 {
1480
1489
  padding: 15rem !important;
1481
- }
1490
+ }
1482
1491
  .\!tw-p-64 {
1483
1492
  padding: 16rem !important;
1484
- }
1493
+ }
1485
1494
  .\!tw-p-7 {
1486
1495
  padding: 1.75rem !important;
1487
- }
1496
+ }
1488
1497
  .\!tw-p-72 {
1489
1498
  padding: 18rem !important;
1490
- }
1499
+ }
1491
1500
  .\!tw-p-8 {
1492
1501
  padding: 2rem !important;
1493
- }
1502
+ }
1494
1503
  .\!tw-p-80 {
1495
1504
  padding: 20rem !important;
1496
- }
1505
+ }
1497
1506
  .\!tw-p-9 {
1498
1507
  padding: 2.25rem !important;
1499
- }
1508
+ }
1500
1509
  .\!tw-p-96 {
1501
1510
  padding: 24rem !important;
1502
- }
1511
+ }
1503
1512
  .\!tw-p-px {
1504
1513
  padding: 1px !important;
1505
- }
1514
+ }
1506
1515
  .tw-p-0 {
1507
1516
  padding: 0px;
1508
- }
1517
+ }
1509
1518
  .tw-p-1 {
1510
1519
  padding: 0.25rem;
1511
- }
1520
+ }
1512
1521
  .tw-p-2 {
1513
1522
  padding: 0.5rem;
1514
- }
1523
+ }
1515
1524
  .tw-p-3 {
1516
1525
  padding: 0.75rem;
1517
- }
1526
+ }
1518
1527
  .tw-p-4 {
1519
1528
  padding: 1rem;
1520
- }
1529
+ }
1521
1530
  .tw-p-5 {
1522
1531
  padding: 1.25rem;
1523
- }
1532
+ }
1524
1533
  .tw-p-6 {
1525
1534
  padding: 1.5rem;
1526
- }
1535
+ }
1527
1536
  .tw-p-8 {
1528
1537
  padding: 2rem;
1529
- }
1538
+ }
1530
1539
  .tw-px-0 {
1531
1540
  padding-left: 0px;
1532
1541
  padding-right: 0px;
1533
- }
1542
+ }
1534
1543
  .tw-px-0\.5 {
1535
1544
  padding-left: 0.125rem;
1536
1545
  padding-right: 0.125rem;
1537
- }
1546
+ }
1538
1547
  .tw-px-2 {
1539
1548
  padding-left: 0.5rem;
1540
1549
  padding-right: 0.5rem;
1541
- }
1550
+ }
1542
1551
  .tw-px-20 {
1543
1552
  padding-left: 5rem;
1544
1553
  padding-right: 5rem;
1545
- }
1554
+ }
1546
1555
  .tw-px-3 {
1547
1556
  padding-left: 0.75rem;
1548
1557
  padding-right: 0.75rem;
1549
- }
1558
+ }
1550
1559
  .tw-px-4 {
1551
1560
  padding-left: 1rem;
1552
1561
  padding-right: 1rem;
1553
- }
1562
+ }
1554
1563
  .tw-px-5 {
1555
1564
  padding-left: 1.25rem;
1556
1565
  padding-right: 1.25rem;
1557
- }
1566
+ }
1558
1567
  .tw-px-6 {
1559
1568
  padding-left: 1.5rem;
1560
1569
  padding-right: 1.5rem;
1561
- }
1570
+ }
1562
1571
  .tw-px-8 {
1563
1572
  padding-left: 2rem;
1564
1573
  padding-right: 2rem;
1565
- }
1574
+ }
1566
1575
  .tw-px-px {
1567
1576
  padding-left: 1px;
1568
1577
  padding-right: 1px;
1569
- }
1578
+ }
1570
1579
  .tw-py-0 {
1571
1580
  padding-top: 0px;
1572
1581
  padding-bottom: 0px;
1573
- }
1582
+ }
1574
1583
  .tw-py-0\.5 {
1575
1584
  padding-top: 0.125rem;
1576
1585
  padding-bottom: 0.125rem;
1577
- }
1586
+ }
1578
1587
  .tw-py-1 {
1579
1588
  padding-top: 0.25rem;
1580
1589
  padding-bottom: 0.25rem;
1581
- }
1590
+ }
1582
1591
  .tw-py-1\.5 {
1583
1592
  padding-top: 0.375rem;
1584
1593
  padding-bottom: 0.375rem;
1585
- }
1594
+ }
1586
1595
  .tw-py-10 {
1587
1596
  padding-top: 2.5rem;
1588
1597
  padding-bottom: 2.5rem;
1589
- }
1598
+ }
1590
1599
  .tw-py-2 {
1591
1600
  padding-top: 0.5rem;
1592
1601
  padding-bottom: 0.5rem;
1593
- }
1602
+ }
1594
1603
  .tw-py-3 {
1595
1604
  padding-top: 0.75rem;
1596
1605
  padding-bottom: 0.75rem;
1597
- }
1606
+ }
1598
1607
  .tw-py-3\.5 {
1599
1608
  padding-top: 0.875rem;
1600
1609
  padding-bottom: 0.875rem;
1601
- }
1610
+ }
1602
1611
  .tw-py-4 {
1603
1612
  padding-top: 1rem;
1604
1613
  padding-bottom: 1rem;
1605
- }
1614
+ }
1606
1615
  .tw-py-5 {
1607
1616
  padding-top: 1.25rem;
1608
1617
  padding-bottom: 1.25rem;
1609
- }
1618
+ }
1610
1619
  .tw-py-8 {
1611
1620
  padding-top: 2rem;
1612
1621
  padding-bottom: 2rem;
1613
- }
1622
+ }
1614
1623
  .tw-pb-0 {
1615
1624
  padding-bottom: 0px;
1616
- }
1625
+ }
1617
1626
  .tw-pb-16 {
1618
1627
  padding-bottom: 4rem;
1619
- }
1628
+ }
1620
1629
  .tw-pb-24 {
1621
1630
  padding-bottom: 6rem;
1622
- }
1631
+ }
1623
1632
  .tw-pb-8 {
1624
1633
  padding-bottom: 2rem;
1625
- }
1634
+ }
1626
1635
  .tw-pl-0 {
1627
1636
  padding-left: 0px;
1628
- }
1637
+ }
1629
1638
  .tw-pl-12 {
1630
1639
  padding-left: 3rem;
1631
- }
1640
+ }
1632
1641
  .tw-pl-3 {
1633
1642
  padding-left: 0.75rem;
1634
- }
1643
+ }
1635
1644
  .tw-pl-8 {
1636
1645
  padding-left: 2rem;
1637
- }
1646
+ }
1638
1647
  .tw-pr-12 {
1639
1648
  padding-right: 3rem;
1640
- }
1649
+ }
1641
1650
  .tw-pr-2 {
1642
1651
  padding-right: 0.5rem;
1643
- }
1652
+ }
1644
1653
  .tw-pr-4 {
1645
1654
  padding-right: 1rem;
1646
- }
1655
+ }
1647
1656
  .tw-pr-6 {
1648
1657
  padding-right: 1.5rem;
1649
- }
1658
+ }
1650
1659
  .tw-pt-1 {
1651
1660
  padding-top: 0.25rem;
1652
- }
1661
+ }
1653
1662
  .tw-pt-12 {
1654
1663
  padding-top: 3rem;
1655
- }
1664
+ }
1656
1665
  .tw-pt-2 {
1657
1666
  padding-top: 0.5rem;
1658
- }
1667
+ }
1659
1668
  .tw-pt-6 {
1660
1669
  padding-top: 1.5rem;
1661
- }
1670
+ }
1662
1671
  .tw-text-left {
1663
1672
  text-align: left;
1664
- }
1673
+ }
1665
1674
  .tw-text-center {
1666
1675
  text-align: center;
1667
- }
1676
+ }
1668
1677
  .tw-align-top {
1669
1678
  vertical-align: top;
1670
- }
1679
+ }
1671
1680
  .tw-align-middle {
1672
1681
  vertical-align: middle;
1673
- }
1682
+ }
1674
1683
  .tw-font-sans {
1675
1684
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
1676
- }
1685
+ }
1677
1686
  .tw-text-2xl {
1678
1687
  font-size: 1.5rem;
1679
1688
  line-height: 2rem;
1680
- }
1689
+ }
1681
1690
  .tw-text-3xl {
1682
1691
  font-size: 1.875rem;
1683
1692
  line-height: 2.25rem;
1684
- }
1693
+ }
1685
1694
  .tw-text-4xl {
1686
1695
  font-size: 2.25rem;
1687
1696
  line-height: 2.5rem;
1688
- }
1697
+ }
1689
1698
  .tw-text-base {
1690
1699
  font-size: 1rem;
1691
1700
  line-height: 1.5rem;
1692
- }
1701
+ }
1693
1702
  .tw-text-lg {
1694
1703
  font-size: 1.125rem;
1695
1704
  line-height: 1.75rem;
1696
- }
1705
+ }
1697
1706
  .tw-text-sm {
1698
1707
  font-size: 0.875rem;
1699
1708
  line-height: 1.25rem;
1700
- }
1709
+ }
1701
1710
  .tw-text-xs {
1702
1711
  font-size: 0.75rem;
1703
1712
  line-height: 1rem;
1704
- }
1713
+ }
1705
1714
  .tw-font-bold {
1706
1715
  font-weight: 700;
1707
- }
1716
+ }
1708
1717
  .tw-font-medium {
1709
1718
  font-weight: 500;
1710
- }
1719
+ }
1711
1720
  .tw-font-normal {
1712
1721
  font-weight: 400;
1713
- }
1722
+ }
1714
1723
  .tw-font-semibold {
1715
1724
  font-weight: 600;
1716
- }
1725
+ }
1717
1726
  .tw-uppercase {
1718
1727
  text-transform: uppercase;
1719
- }
1728
+ }
1720
1729
  .tw-capitalize {
1721
1730
  text-transform: capitalize;
1722
- }
1731
+ }
1723
1732
  .tw-leading-tight {
1724
1733
  line-height: 1.25;
1725
- }
1734
+ }
1726
1735
  .tw-text-black {
1727
1736
  --tw-text-opacity: 1;
1728
1737
  color: rgb(0 0 0 / var(--tw-text-opacity));
1729
- }
1738
+ }
1730
1739
  .tw-text-grayscale-500 {
1731
1740
  --tw-text-opacity: 1;
1732
1741
  color: rgb(208 208 208 / var(--tw-text-opacity));
1733
- }
1742
+ }
1734
1743
  .tw-text-grayscale-600 {
1735
1744
  --tw-text-opacity: 1;
1736
1745
  color: rgb(94 94 94 / var(--tw-text-opacity));
1737
- }
1746
+ }
1738
1747
  .tw-text-grayscale-700 {
1739
1748
  --tw-text-opacity: 1;
1740
1749
  color: rgb(43 43 43 / var(--tw-text-opacity));
1741
- }
1750
+ }
1742
1751
  .tw-text-grayscale-800 {
1743
1752
  --tw-text-opacity: 1;
1744
1753
  color: rgb(17 21 23 / var(--tw-text-opacity));
1745
- }
1754
+ }
1746
1755
  .tw-text-white {
1747
1756
  --tw-text-opacity: 1;
1748
1757
  color: rgb(255 255 255 / var(--tw-text-opacity));
1749
- }
1758
+ }
1750
1759
  .tw-underline {
1751
1760
  text-decoration-line: underline;
1752
- }
1761
+ }
1753
1762
  .tw-no-underline {
1754
1763
  text-decoration-line: none;
1755
- }
1764
+ }
1756
1765
  .tw-opacity-0 {
1757
1766
  opacity: 0;
1758
- }
1767
+ }
1759
1768
  .tw-opacity-100 {
1760
1769
  opacity: 1;
1761
- }
1770
+ }
1762
1771
  .tw-opacity-30 {
1763
1772
  opacity: 0.3;
1764
- }
1773
+ }
1765
1774
  .tw-opacity-40 {
1766
1775
  opacity: 0.4;
1767
- }
1776
+ }
1768
1777
  .tw-opacity-50 {
1769
1778
  opacity: 0.5;
1770
- }
1779
+ }
1771
1780
  .\!tw-shadow-\[0_0_0_1px\] {
1772
1781
  --tw-shadow: 0 0 0 1px !important;
1773
1782
  --tw-shadow-colored: 0 0 0 1px var(--tw-shadow-color) !important;
1774
1783
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
1775
- }
1784
+ }
1776
1785
  .\!tw-shadow-\[0_0_0_2px\] {
1777
1786
  --tw-shadow: 0 0 0 2px !important;
1778
1787
  --tw-shadow-colored: 0 0 0 2px var(--tw-shadow-color) !important;
1779
1788
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
1780
- }
1789
+ }
1781
1790
  .tw-shadow {
1782
1791
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
1783
1792
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
1784
1793
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
1785
- }
1794
+ }
1786
1795
  .tw-shadow-inner {
1787
1796
  --tw-shadow: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
1788
1797
  --tw-shadow-colored: inset 0 2px 4px 0 var(--tw-shadow-color);
1789
1798
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
1790
- }
1799
+ }
1791
1800
  .tw-shadow-lg {
1792
1801
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
1793
1802
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
1794
1803
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
1795
- }
1804
+ }
1796
1805
  .tw-shadow-md {
1797
1806
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
1798
1807
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
1799
1808
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
1800
- }
1809
+ }
1801
1810
  .tw-shadow-sm {
1802
1811
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
1803
1812
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
1804
1813
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
1805
- }
1814
+ }
1806
1815
  .tw-shadow-xl {
1807
1816
  --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
1808
1817
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
1809
1818
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
1810
- }
1819
+ }
1811
1820
  .tw-outline-none {
1812
1821
  outline: 2px solid transparent;
1813
1822
  outline-offset: 2px;
1814
- }
1823
+ }
1815
1824
  .tw-ring-1 {
1816
1825
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
1817
1826
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
1818
1827
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
1819
- }
1828
+ }
1820
1829
  .tw-ring-black {
1821
1830
  --tw-ring-opacity: 1;
1822
1831
  --tw-ring-color: rgb(0 0 0 / var(--tw-ring-opacity));
1823
- }
1832
+ }
1824
1833
  .tw-ring-opacity-5 {
1825
1834
  --tw-ring-opacity: 0.05;
1826
- }
1835
+ }
1827
1836
  .tw-drop-shadow-sm {
1828
1837
  --tw-drop-shadow: drop-shadow(0 1px 1px rgb(0 0 0 / 0.05));
1829
1838
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
1830
- }
1839
+ }
1831
1840
  .tw-transition-colors {
1832
1841
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
1833
1842
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
1834
1843
  transition-duration: 150ms;
1835
- }
1844
+ }
1836
1845
  .tw-transition-shadow {
1837
1846
  transition-property: box-shadow;
1838
1847
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
1839
1848
  transition-duration: 150ms;
1840
- }
1849
+ }
1841
1850
  .tw-transition-transform {
1842
1851
  transition-property: transform;
1843
1852
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
1844
1853
  transition-duration: 150ms;
1845
- }
1854
+ }
1846
1855
  .tw-duration-200 {
1847
1856
  transition-duration: 200ms;
1848
- }
1857
+ }
1849
1858
  .tw-duration-300 {
1850
1859
  transition-duration: 300ms;
1851
- }
1860
+ }
1852
1861
  .tw-ease-in-out {
1853
1862
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
1854
- }
1863
+ }
1855
1864
  .tw-ease-out {
1856
1865
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
1857
- }
1866
+ }
1858
1867
  .hover\:tw-border-grayscale-400:hover {
1859
1868
  --tw-border-opacity: 1;
1860
1869
  border-color: rgb(230 230 230 / var(--tw-border-opacity));
1861
- }
1870
+ }
1862
1871
  .hover\:tw-border-grayscale-500:hover {
1863
1872
  --tw-border-opacity: 1;
1864
1873
  border-color: rgb(208 208 208 / var(--tw-border-opacity));
1865
- }
1874
+ }
1866
1875
  .hover\:tw-bg-grayscale-200:hover {
1867
1876
  --tw-bg-opacity: 1;
1868
1877
  background-color: rgb(244 244 244 / var(--tw-bg-opacity));
1869
- }
1878
+ }
1870
1879
  .hover\:tw-bg-grayscale-300:hover {
1871
1880
  --tw-bg-opacity: 1;
1872
1881
  background-color: rgb(239 239 239 / var(--tw-bg-opacity));
1873
- }
1882
+ }
1874
1883
  .hover\:tw-bg-grayscale-400:hover {
1875
1884
  --tw-bg-opacity: 1;
1876
1885
  background-color: rgb(230 230 230 / var(--tw-bg-opacity));
1877
- }
1886
+ }
1878
1887
  .hover\:tw-bg-grayscale-500:hover {
1879
1888
  --tw-bg-opacity: 1;
1880
1889
  background-color: rgb(208 208 208 / var(--tw-bg-opacity));
1881
- }
1890
+ }
1882
1891
  .hover\:tw-text-white:hover {
1883
1892
  --tw-text-opacity: 1;
1884
1893
  color: rgb(255 255 255 / var(--tw-text-opacity));
1885
- }
1894
+ }
1886
1895
  .hover\:tw-underline:hover {
1887
1896
  text-decoration-line: underline;
1888
- }
1897
+ }
1889
1898
  .hover\:tw-shadow-lg:hover {
1890
1899
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
1891
1900
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
1892
1901
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
1893
- }
1902
+ }
1894
1903
  .hover\:tw-brightness-\[0\.85\]:hover {
1895
1904
  --tw-brightness: brightness(0.85);
1896
1905
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
1897
- }
1906
+ }
1898
1907
  .focus\:tw-border-grayscale-600:focus {
1899
1908
  --tw-border-opacity: 1;
1900
1909
  border-color: rgb(94 94 94 / var(--tw-border-opacity));
1901
- }
1910
+ }
1902
1911
  .focus\:tw-border-grayscale-700:focus {
1903
1912
  --tw-border-opacity: 1;
1904
1913
  border-color: rgb(43 43 43 / var(--tw-border-opacity));
1905
- }
1914
+ }
1906
1915
  .focus\:tw-outline-none:focus {
1907
1916
  outline: 2px solid transparent;
1908
1917
  outline-offset: 2px;
1909
- }
1918
+ }
1910
1919
  @media (min-width: 640px) {
1911
1920
 
1912
1921
  .sm\:tw-absolute {
@@ -2002,7 +2011,7 @@ video {
2002
2011
  padding-left: 1rem;
2003
2012
  padding-right: 1rem;
2004
2013
  }
2005
- }
2014
+ }
2006
2015
  @media (min-width: 768px) {
2007
2016
 
2008
2017
  .md\:tw-relative {
@@ -2225,7 +2234,7 @@ video {
2225
2234
  font-size: 0.75rem;
2226
2235
  line-height: 1rem;
2227
2236
  }
2228
- }
2237
+ }
2229
2238
  @media (min-width: 1024px) {
2230
2239
 
2231
2240
  .lg\:tw-static {
@@ -2289,4 +2298,4 @@ video {
2289
2298
  .lg\:tw-pt-20 {
2290
2299
  padding-top: 5rem;
2291
2300
  }
2292
- }
2301
+ }