@designcrowd/fe-shared-lib 1.1.5 → 1.1.6-eng-2158-2

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