@designcrowd/fe-shared-lib 1.5.36 → 1.6.0-eng-4039

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