@lukso/up-connector 0.4.0-dev.a8c9315

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 (109) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +280 -0
  3. package/dist/account-modal.cjs +9 -0
  4. package/dist/account-modal.cjs.map +1 -0
  5. package/dist/account-modal.d.cts +16 -0
  6. package/dist/account-modal.d.ts +16 -0
  7. package/dist/account-modal.js +9 -0
  8. package/dist/account-modal.js.map +1 -0
  9. package/dist/auto-setup.cjs +17 -0
  10. package/dist/auto-setup.cjs.map +1 -0
  11. package/dist/auto-setup.d.cts +123 -0
  12. package/dist/auto-setup.d.ts +123 -0
  13. package/dist/auto-setup.js +17 -0
  14. package/dist/auto-setup.js.map +1 -0
  15. package/dist/avatar-CmUCtW_w.d.cts +205 -0
  16. package/dist/avatar-CmUCtW_w.d.ts +205 -0
  17. package/dist/avatar.cjs +12 -0
  18. package/dist/avatar.cjs.map +1 -0
  19. package/dist/avatar.d.cts +1 -0
  20. package/dist/avatar.d.ts +1 -0
  21. package/dist/avatar.js +12 -0
  22. package/dist/avatar.js.map +1 -0
  23. package/dist/backup-modal.cjs +9 -0
  24. package/dist/backup-modal.cjs.map +1 -0
  25. package/dist/backup-modal.d.cts +41 -0
  26. package/dist/backup-modal.d.ts +41 -0
  27. package/dist/backup-modal.js +9 -0
  28. package/dist/backup-modal.js.map +1 -0
  29. package/dist/chunk-3SGSPHOZ.js +595 -0
  30. package/dist/chunk-3SGSPHOZ.js.map +1 -0
  31. package/dist/chunk-6AYZOIFY.js +181 -0
  32. package/dist/chunk-6AYZOIFY.js.map +1 -0
  33. package/dist/chunk-6N35TCFT.js +852 -0
  34. package/dist/chunk-6N35TCFT.js.map +1 -0
  35. package/dist/chunk-7ETKG6KR.cjs +387 -0
  36. package/dist/chunk-7ETKG6KR.cjs.map +1 -0
  37. package/dist/chunk-EUXUH3YW.js +15 -0
  38. package/dist/chunk-EUXUH3YW.js.map +1 -0
  39. package/dist/chunk-GFVUWAG4.cjs +158 -0
  40. package/dist/chunk-GFVUWAG4.cjs.map +1 -0
  41. package/dist/chunk-IAKQFHFD.cjs +595 -0
  42. package/dist/chunk-IAKQFHFD.cjs.map +1 -0
  43. package/dist/chunk-MH7MP7XK.cjs +181 -0
  44. package/dist/chunk-MH7MP7XK.cjs.map +1 -0
  45. package/dist/chunk-NWCNJSG3.js +387 -0
  46. package/dist/chunk-NWCNJSG3.js.map +1 -0
  47. package/dist/chunk-NXU2DQAV.js +1128 -0
  48. package/dist/chunk-NXU2DQAV.js.map +1 -0
  49. package/dist/chunk-ORJK2YGG.cjs +852 -0
  50. package/dist/chunk-ORJK2YGG.cjs.map +1 -0
  51. package/dist/chunk-RFA6SEIS.cjs +1128 -0
  52. package/dist/chunk-RFA6SEIS.cjs.map +1 -0
  53. package/dist/chunk-XGIT7YUY.js +31 -0
  54. package/dist/chunk-XGIT7YUY.js.map +1 -0
  55. package/dist/chunk-XOKG3KIL.cjs +31 -0
  56. package/dist/chunk-XOKG3KIL.cjs.map +1 -0
  57. package/dist/chunk-YIWSPI4I.js +158 -0
  58. package/dist/chunk-YIWSPI4I.js.map +1 -0
  59. package/dist/chunk-ZBDE64SD.cjs +15 -0
  60. package/dist/chunk-ZBDE64SD.cjs.map +1 -0
  61. package/dist/connect-modal/index.cjs +20 -0
  62. package/dist/connect-modal/index.cjs.map +1 -0
  63. package/dist/connect-modal/index.d.cts +9 -0
  64. package/dist/connect-modal/index.d.ts +9 -0
  65. package/dist/connect-modal/index.js +20 -0
  66. package/dist/connect-modal/index.js.map +1 -0
  67. package/dist/index-D2orHGFi.d.cts +8 -0
  68. package/dist/index-D2orHGFi.d.ts +8 -0
  69. package/dist/index.cjs +793 -0
  70. package/dist/index.cjs.map +1 -0
  71. package/dist/index.d.cts +189 -0
  72. package/dist/index.d.ts +189 -0
  73. package/dist/index.js +793 -0
  74. package/dist/index.js.map +1 -0
  75. package/dist/restore-modal.cjs +9 -0
  76. package/dist/restore-modal.cjs.map +1 -0
  77. package/dist/restore-modal.d.cts +68 -0
  78. package/dist/restore-modal.d.ts +68 -0
  79. package/dist/restore-modal.js +9 -0
  80. package/dist/restore-modal.js.map +1 -0
  81. package/dist/wagmi-CVuDs_0h.d.cts +386 -0
  82. package/dist/wagmi-CVuDs_0h.d.ts +386 -0
  83. package/package.json +158 -0
  84. package/src/account-modal.ts +142 -0
  85. package/src/auto-setup.ts +362 -0
  86. package/src/avatar.ts +1135 -0
  87. package/src/backup-modal.ts +439 -0
  88. package/src/connect-modal/components/connection-view.ts +398 -0
  89. package/src/connect-modal/components/eoa-connection-view.ts +408 -0
  90. package/src/connect-modal/components/qr-code-view.ts +71 -0
  91. package/src/connect-modal/connect-modal.base.ts +18 -0
  92. package/src/connect-modal/connect-modal.config.ts +27 -0
  93. package/src/connect-modal/connect-modal.templates.ts +21 -0
  94. package/src/connect-modal/connect-modal.ts +270 -0
  95. package/src/connect-modal/connect-modal.types.ts +104 -0
  96. package/src/connect-modal/images/up-cube-glass.png +0 -0
  97. package/src/connect-modal/index.ts +23 -0
  98. package/src/connect-modal/services/wagmi.ts +266 -0
  99. package/src/connect-modal/styles/styles.css +1 -0
  100. package/src/connect-modal/utils/walletConnectDeepLinkUrl.ts +43 -0
  101. package/src/connector.ts +544 -0
  102. package/src/index.ts +62 -0
  103. package/src/popup-instance.ts +537 -0
  104. package/src/restore-modal.ts +702 -0
  105. package/src/styles/index.ts +28 -0
  106. package/src/styles/styles.css +1 -0
  107. package/src/types/css-raw.d.ts +4 -0
  108. package/src/types/images.d.ts +4 -0
  109. package/src/types.ts +168 -0
@@ -0,0 +1,1128 @@
1
+ "use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { newObj[key] = obj[key]; } } } newObj.default = obj; return newObj; } } function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }
2
+
3
+ var _chunkZBDE64SDcjs = require('./chunk-ZBDE64SD.cjs');
4
+
5
+ // src/connect-modal/connect-modal.base.ts
6
+ var _lit = require('lit');
7
+
8
+ // src/connect-modal/styles/styles.css?__raw__
9
+ var styles_default = '/**\n * @file Main styles\n *\n * This file contain general styles that should be applied to host page.\n */\n:root {\n --neutral-10: #121b21;\n --neutral-15: #1b2832;\n --neutral-20: #243542;\n --neutral-25: #2d4253;\n --neutral-30: #365063;\n --neutral-35: #3e5d74;\n --neutral-40: #476a85;\n --neutral-45: #507795;\n --neutral-50: #5985a6;\n --neutral-55: #6a91af;\n --neutral-60: #7a9db8;\n --neutral-65: #8ba9c1;\n --neutral-70: #9cb6c9;\n --neutral-75: #acc2d2;\n --neutral-80: #bdcedb;\n --neutral-85: #cddae4;\n --neutral-90: #dee7ed;\n --neutral-95: #eef3f6;\n --neutral-97: #f5f8fa;\n --neutral-98: #f8fafb;\n --neutral-100: #ffffff;\n --honey-72: #fad275;\n --honey-75: #fbd784;\n --honey-82: #fce2a6;\n --honey-85: #fce7b5;\n --honey-92: #fef2d8;\n --coral-65: #f37c58;\n --coral-74: #f69e83;\n --coral-75: #f7a288;\n --coral-84: #fac3b3;\n --coral-85: #fac7b7;\n --coral-94: #fde9e2;\n --warm-77: #ffbb8a;\n --warm-87: #ffd8bd;\n --warm-97: #fff6f0;\n --sea-salt-57: #7fa4a4;\n --sea-salt-67: #9db9b9;\n --sea-salt-88: #dbe6e6;\n --cloud-43: #447c97;\n --cloud-75: #a7c7d7;\n --cloud-88: #d5e4ec;\n --ocean-38: #3c6286;\n --ocean-75: #a7c0d7;\n --ocean-88: #d5e1ec;\n --sky-64: #68a5de;\n --sky-75: #96c1e8;\n --sky-85: #c0daf1;\n --lukso-50: #aa5578;\n --lukso-60: #bb7793;\n --lukso-70: #cc99ae;\n --lukso-80: #ddbbc9;\n --lukso-90: #eedde4;\n --yellow-25: #804d00;\n --yellow-55: #ffa31a;\n --yellow-65: #ffb84d;\n --yellow-75: #ffcc80;\n --yellow-85: #ffe0b3;\n --yellow-95: #fff5e5;\n --green-45: #31b452;\n --green-54: #47cd68;\n --green-63: #6bd686;\n --green-75: #9be4ad;\n --green-85: #c3efce;\n --green-95: #ebfaef;\n --blue-40: #0452c8;\n --blue-50: #0567fa;\n --blue-60: #3785fb;\n --blue-75: #82b3fc;\n --blue-85: #b4d1fd;\n --blue-95: #e6f0fe;\n --red-55: #e23636;\n --red-65: #e96363;\n --red-75: #ef8f8f;\n --red-85: #f5bcbc;\n --red-95: #fce9e9;\n --purple-15: #1d202f;\n --purple-18: #232739;\n --purple-31: #3c4262;\n --purple-41: #4f5882;\n --purple-51: #646ea0;\n --purple-58: #7a83ae;\n --purple-63: #8a92b7;\n --purple-82: #c6cadc;\n --purple-94: #ecedf3;\n --pink-90: #f8dad3;\n --pink-91: #f9ddd7;\n --pink-92: #f9e1dc;\n --pink-93: #fae5e0;\n --pink-94: #fbe9e5;\n --pink-95: #fcece9;\n --pink-96: #fcf0ed;\n --pink-97: #fdf4f2;\n --measure-50: #e8178a;\n --measure-70: #f174b9;\n --measure-80: #f6a2d0;\n --measure-97: #fef1f8;\n --grey-10: #1a1a1a;\n --grey-15: #262626;\n --grey-20: #333333;\n --grey-25: #404040;\n --grey-30: #4d4d4d;\n --grey-35: #595959;\n --grey-40: #666666;\n --grey-45: #737373;\n --grey-50: #808080;\n --grey-55: #8c8c8c;\n --grey-60: #999999;\n --grey-65: #a6a6a6;\n --grey-70: #b3b3b3;\n --grey-75: #bfbfbf;\n --grey-80: #cccccc;\n --gradient-1-start: #D39B9D;\n --gradient-1-end: #9071D1;\n --gradient-2-start: #F8DAD3;\n --gradient-2-end: #CC99AE;\n --gradient-3-start: #393e56;\n --gradient-3-end: #646ea0;\n}\n/**\n * @file Fonts\n *\n * This file contains all fonts used in designs.\n */\n@font-face {\n font-family: Inter;\n src: url("/assets/fonts/Inter-Regular.woff2") format("woff2");\n font-weight: normal;\n font-style: normal;\n font-display: swap;\n}\n@font-face {\n font-family: Inter;\n src: url("/assets/fonts/Inter-ExtraBold.woff2") format("woff2");\n font-weight: 800;\n font-style: normal;\n font-display: swap;\n}\n@font-face {\n font-family: Inter;\n src: url("/assets/fonts/Inter-Bold.woff2") format("woff2");\n font-weight: bold;\n font-style: normal;\n font-display: swap;\n}\n@font-face {\n font-family: Inter;\n src: url("/assets/fonts/Inter-SemiBold.woff2") format("woff2");\n font-weight: 600;\n font-style: normal;\n font-display: swap;\n}\n@font-face {\n font-family: Inter;\n src: url("/assets/fonts/Inter-Medium.woff2") format("woff2");\n font-weight: 500;\n font-style: normal;\n font-display: swap;\n}\n@font-face {\n font-family: Inter;\n src: url("/assets/fonts/Inter-Thin.woff2") format("woff2");\n font-weight: 100;\n font-style: normal;\n font-display: swap;\n}\n@font-face {\n font-family: "PT Mono";\n src: url("/assets/fonts/PT-Mono-Regular.woff2") format("woff2");\n font-weight: normal;\n font-style: normal;\n}\n@font-face {\n font-family: "PT Mono";\n src: url("/assets/fonts/PT-Mono-Bold.woff2") format("woff2");\n font-weight: bold;\n font-style: normal;\n}\n/**\n * @file Typography\n *\n * This file contains all typography classes used in designs.\n * They should be used instead of individual font attributes.\n *\n * You can use them same as the normal Tailwind classes, e.g.: class="heading-inter-26-semi-bold"\n */\n/**\n * @file Variables\n *\n * This file contains all CSS variables used in designs.\n */\n.tippy-box[data-animation=fade][data-state=hidden] {\n opacity: 0;\n}\n.tippy-arrow::before {\n content: "";\n position: absolute;\n border-color: transparent;\n border-style: solid;\n}\n.tippy-box[data-placement^=top] > .tippy-arrow::before {\n border-top-color: initial;\n transform-origin: center top;\n}\n.tippy-box[data-placement^=bottom] > .tippy-arrow::before {\n border-bottom-color: initial;\n transform-origin: center bottom;\n}\n.tippy-box[data-placement^=left] > .tippy-arrow::before {\n border-left-color: initial;\n transform-origin: center left;\n}\n.tippy-box[data-placement^=right] > .tippy-arrow::before {\n border-right-color: initial;\n transform-origin: center right;\n}\n.tippy-box[data-inertia][data-state=visible] {\n transition-timing-function: cubic-bezier(0.54, 1.5, 0.38, 1.11);\n}\n.tippy-arrow {\n width: 16px;\n height: 16px;\n}\n.tippy-size-medium {\n border-radius: 4px;\n padding-left: 0.5rem;\n padding-right: 0.5rem;\n padding-top: 0.5rem;\n padding-bottom: 0.5rem;\n font-family: Inter, sans-serif;\n font-size: 10px;\n font-weight: 600;\n font-style: normal;\n line-height: 12px;\n --tw-shadow: 0px 27px 12px 0px rgba(63, 93, 116, 0.00), 0px 18px 7px 0px rgba(63, 93, 116, 0.02), 0px 10px 6px 0px rgba(63, 93, 116, 0.08), 0px 4px 4px 0px rgba(63, 93, 116, 0.13), 0px 1px 2px 0px rgba(63, 93, 116, 0.15), 0px 0px 14px 0px rgba(63, 93, 116, 0.16);\n --tw-shadow-colored: 0px 27px 12px 0px var(--tw-shadow-color), 0px 18px 7px 0px var(--tw-shadow-color), 0px 10px 6px 0px var(--tw-shadow-color), 0px 4px 4px 0px var(--tw-shadow-color), 0px 1px 2px 0px var(--tw-shadow-color), 0px 0px 14px 0px var(--tw-shadow-color);\n box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);\n}\n.tippy-size-medium[data-placement^=top] > .tippy-arrow {\n bottom: 0;\n}\n.tippy-size-medium[data-placement^=top] > .tippy-arrow::before {\n bottom: -6px;\n left: 2px;\n border-width: 6px 6px 0;\n}\n.tippy-size-medium[data-placement^=bottom] > .tippy-arrow {\n top: 0;\n}\n.tippy-size-medium[data-placement^=bottom] > .tippy-arrow::before {\n top: -6px;\n left: 2px;\n border-width: 0 6px 6px;\n}\n.tippy-size-medium[data-placement^=left] > .tippy-arrow {\n right: 0;\n}\n.tippy-size-medium[data-placement^=left] > .tippy-arrow::before {\n border-width: 6px 0 6px 6px;\n right: -6px;\n top: 2px;\n}\n.tippy-size-medium[data-placement^=right] > .tippy-arrow {\n left: 0;\n}\n.tippy-size-medium[data-placement^=right] > .tippy-arrow::before {\n left: -6px;\n top: 2px;\n border-width: 6px 6px 6px 0;\n}\n.tippy-size-large {\n border-radius: 8px;\n padding-left: 0.75rem;\n padding-right: 0.75rem;\n padding-top: 0.5rem;\n padding-bottom: 0.5rem;\n font-family: Inter, sans-serif;\n font-size: 12px;\n font-weight: 400;\n font-style: normal;\n line-height: 20px;\n --tw-shadow: 0px 27px 12px 0px rgba(63, 93, 116, 0.00), 0px 18px 7px 0px rgba(63, 93, 116, 0.02), 0px 10px 6px 0px rgba(63, 93, 116, 0.08), 0px 4px 4px 0px rgba(63, 93, 116, 0.13), 0px 1px 2px 0px rgba(63, 93, 116, 0.15), 0px 0px 14px 0px rgba(63, 93, 116, 0.16);\n --tw-shadow-colored: 0px 27px 12px 0px var(--tw-shadow-color), 0px 18px 7px 0px var(--tw-shadow-color), 0px 10px 6px 0px var(--tw-shadow-color), 0px 4px 4px 0px var(--tw-shadow-color), 0px 1px 2px 0px var(--tw-shadow-color), 0px 0px 14px 0px var(--tw-shadow-color);\n box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);\n}\n.tippy-size-large[data-placement^=top] > .tippy-arrow {\n bottom: 0;\n}\n.tippy-size-large[data-placement^=top] > .tippy-arrow::before {\n bottom: -8px;\n left: 0;\n border-width: 8px 8px 0;\n}\n.tippy-size-large[data-placement^=bottom] > .tippy-arrow {\n top: 0;\n}\n.tippy-size-large[data-placement^=bottom] > .tippy-arrow::before {\n top: -8px;\n left: 0;\n border-width: 0 8px 8px;\n}\n.tippy-size-large[data-placement^=left] > .tippy-arrow {\n right: 0;\n}\n.tippy-size-large[data-placement^=left] > .tippy-arrow::before {\n border-width: 8px 0 8px 8px;\n right: -8px;\n}\n.tippy-size-large[data-placement^=right] > .tippy-arrow {\n left: 0;\n}\n.tippy-size-large[data-placement^=right] > .tippy-arrow::before {\n left: -8px;\n border-width: 8px 8px 8px 0;\n}\n.tippy-variant-dark {\n --tw-bg-opacity: 1;\n background-color: rgb(54 80 99 / var(--tw-bg-opacity, 1));\n --tw-text-opacity: 1;\n color: rgb(255 255 255 / var(--tw-text-opacity, 1));\n}\n.tippy-variant-dark[data-placement^=top] .tippy-arrow::before {\n --tw-border-opacity: 1;\n border-top-color: rgb(54 80 99 / var(--tw-border-opacity, 1));\n}\n.tippy-variant-dark[data-placement^=bottom] .tippy-arrow::before {\n --tw-border-opacity: 1;\n border-bottom-color: rgb(54 80 99 / var(--tw-border-opacity, 1));\n}\n.tippy-variant-dark[data-placement^=left] .tippy-arrow::before {\n --tw-border-opacity: 1;\n border-left-color: rgb(54 80 99 / var(--tw-border-opacity, 1));\n}\n.tippy-variant-dark[data-placement^=right] .tippy-arrow::before {\n --tw-border-opacity: 1;\n border-right-color: rgb(54 80 99 / var(--tw-border-opacity, 1));\n}\n.tippy-variant-dark > .tippy-backdrop {\n --tw-bg-opacity: 1;\n background-color: rgb(54 80 99 / var(--tw-bg-opacity, 1));\n}\n.tippy-variant-dark > .tippy-svg-arrow {\n fill: #365063;\n}\n.tippy-variant-light {\n --tw-bg-opacity: 1;\n background-color: rgb(245 248 250 / var(--tw-bg-opacity, 1));\n --tw-text-opacity: 1;\n color: rgb(36 53 66 / var(--tw-text-opacity, 1));\n}\n.tippy-variant-light[data-placement^=top] .tippy-arrow::before {\n --tw-border-opacity: 1;\n border-top-color: rgb(245 248 250 / var(--tw-border-opacity, 1));\n}\n.tippy-variant-light[data-placement^=bottom] .tippy-arrow::before {\n --tw-border-opacity: 1;\n border-bottom-color: rgb(245 248 250 / var(--tw-border-opacity, 1));\n}\n.tippy-variant-light[data-placement^=left] .tippy-arrow::before {\n --tw-border-opacity: 1;\n border-left-color: rgb(245 248 250 / var(--tw-border-opacity, 1));\n}\n.tippy-variant-light[data-placement^=right] .tippy-arrow::before {\n --tw-border-opacity: 1;\n border-right-color: rgb(245 248 250 / var(--tw-border-opacity, 1));\n}\n.tippy-variant-light > .tippy-backdrop {\n --tw-bg-opacity: 1;\n background-color: rgb(245 248 250 / var(--tw-bg-opacity, 1));\n}\n.tippy-variant-light > .tippy-svg-arrow {\n fill: #f5f8fa;\n}\n.tippy-variant-white {\n --tw-bg-opacity: 1;\n background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));\n --tw-text-opacity: 1;\n color: rgb(36 53 66 / var(--tw-text-opacity, 1));\n}\n.tippy-variant-white[data-placement^=top] .tippy-arrow::before {\n --tw-border-opacity: 1;\n border-top-color: rgb(255 255 255 / var(--tw-border-opacity, 1));\n}\n.tippy-variant-white[data-placement^=bottom] .tippy-arrow::before {\n --tw-border-opacity: 1;\n border-bottom-color: rgb(255 255 255 / var(--tw-border-opacity, 1));\n}\n.tippy-variant-white[data-placement^=left] .tippy-arrow::before {\n --tw-border-opacity: 1;\n border-left-color: rgb(255 255 255 / var(--tw-border-opacity, 1));\n}\n.tippy-variant-white[data-placement^=right] .tippy-arrow::before {\n --tw-border-opacity: 1;\n border-right-color: rgb(255 255 255 / var(--tw-border-opacity, 1));\n}\n.tippy-variant-white > .tippy-backdrop {\n --tw-bg-opacity: 1;\n background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));\n}\n.tippy-variant-white > .tippy-svg-arrow {\n fill: #ffffff;\n}\n.tippy-variant-success {\n --tw-bg-opacity: 1;\n background-color: rgb(71 205 104 / var(--tw-bg-opacity, 1));\n --tw-text-opacity: 1;\n color: rgb(255 255 255 / var(--tw-text-opacity, 1));\n}\n.tippy-variant-success[data-placement^=top] .tippy-arrow::before {\n --tw-border-opacity: 1;\n border-top-color: rgb(71 205 104 / var(--tw-border-opacity, 1));\n}\n.tippy-variant-success[data-placement^=bottom] .tippy-arrow::before {\n --tw-border-opacity: 1;\n border-bottom-color: rgb(71 205 104 / var(--tw-border-opacity, 1));\n}\n.tippy-variant-success[data-placement^=left] .tippy-arrow::before {\n --tw-border-opacity: 1;\n border-left-color: rgb(71 205 104 / var(--tw-border-opacity, 1));\n}\n.tippy-variant-success[data-placement^=right] .tippy-arrow::before {\n --tw-border-opacity: 1;\n border-right-color: rgb(71 205 104 / var(--tw-border-opacity, 1));\n}\n.tippy-variant-success > .tippy-backdrop {\n --tw-bg-opacity: 1;\n background-color: rgb(71 205 104 / var(--tw-bg-opacity, 1));\n}\n.tippy-variant-success > .tippy-svg-arrow {\n fill: #47cd68;\n}\n.tippy-variant-danger {\n --tw-bg-opacity: 1;\n background-color: rgb(233 99 99 / var(--tw-bg-opacity, 1));\n --tw-text-opacity: 1;\n color: rgb(255 255 255 / var(--tw-text-opacity, 1));\n}\n.tippy-variant-danger[data-placement^=top] .tippy-arrow::before {\n --tw-border-opacity: 1;\n border-top-color: rgb(233 99 99 / var(--tw-border-opacity, 1));\n}\n.tippy-variant-danger[data-placement^=bottom] .tippy-arrow::before {\n --tw-border-opacity: 1;\n border-bottom-color: rgb(233 99 99 / var(--tw-border-opacity, 1));\n}\n.tippy-variant-danger[data-placement^=left] .tippy-arrow::before {\n --tw-border-opacity: 1;\n border-left-color: rgb(233 99 99 / var(--tw-border-opacity, 1));\n}\n.tippy-variant-danger[data-placement^=right] .tippy-arrow::before {\n --tw-border-opacity: 1;\n border-right-color: rgb(233 99 99 / var(--tw-border-opacity, 1));\n}\n.tippy-variant-danger > .tippy-backdrop {\n --tw-bg-opacity: 1;\n background-color: rgb(233 99 99 / var(--tw-bg-opacity, 1));\n}\n.tippy-variant-danger > .tippy-svg-arrow {\n fill: #e96363;\n}\n.tippy-box[data-theme~=dark-medium] {\n border-radius: 4px;\n padding-left: 0.5rem;\n padding-right: 0.5rem;\n padding-top: 0.5rem;\n padding-bottom: 0.5rem;\n font-family: Inter, sans-serif;\n font-size: 10px;\n font-weight: 600;\n font-style: normal;\n line-height: 12px;\n --tw-shadow: 0px 27px 12px 0px rgba(63, 93, 116, 0.00), 0px 18px 7px 0px rgba(63, 93, 116, 0.02), 0px 10px 6px 0px rgba(63, 93, 116, 0.08), 0px 4px 4px 0px rgba(63, 93, 116, 0.13), 0px 1px 2px 0px rgba(63, 93, 116, 0.15), 0px 0px 14px 0px rgba(63, 93, 116, 0.16);\n --tw-shadow-colored: 0px 27px 12px 0px var(--tw-shadow-color), 0px 18px 7px 0px var(--tw-shadow-color), 0px 10px 6px 0px var(--tw-shadow-color), 0px 4px 4px 0px var(--tw-shadow-color), 0px 1px 2px 0px var(--tw-shadow-color), 0px 0px 14px 0px var(--tw-shadow-color);\n box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);\n}\n.tippy-box[data-theme~=dark-medium][data-placement^=top] > .tippy-arrow {\n bottom: 0;\n}\n.tippy-box[data-theme~=dark-medium][data-placement^=top] > .tippy-arrow::before {\n bottom: -6px;\n left: 2px;\n border-width: 6px 6px 0;\n}\n.tippy-box[data-theme~=dark-medium][data-placement^=bottom] > .tippy-arrow {\n top: 0;\n}\n.tippy-box[data-theme~=dark-medium][data-placement^=bottom] > .tippy-arrow::before {\n top: -6px;\n left: 2px;\n border-width: 0 6px 6px;\n}\n.tippy-box[data-theme~=dark-medium][data-placement^=left] > .tippy-arrow {\n right: 0;\n}\n.tippy-box[data-theme~=dark-medium][data-placement^=left] > .tippy-arrow::before {\n border-width: 6px 0 6px 6px;\n right: -6px;\n top: 2px;\n}\n.tippy-box[data-theme~=dark-medium][data-placement^=right] > .tippy-arrow {\n left: 0;\n}\n.tippy-box[data-theme~=dark-medium][data-placement^=right] > .tippy-arrow::before {\n left: -6px;\n top: 2px;\n border-width: 6px 6px 6px 0;\n}\n.tippy-box[data-theme~=dark-medium] {\n --tw-bg-opacity: 1;\n background-color: rgb(54 80 99 / var(--tw-bg-opacity, 1));\n --tw-text-opacity: 1;\n color: rgb(255 255 255 / var(--tw-text-opacity, 1));\n}\n.tippy-box[data-theme~=dark-medium][data-placement^=top] .tippy-arrow::before {\n --tw-border-opacity: 1;\n border-top-color: rgb(54 80 99 / var(--tw-border-opacity, 1));\n}\n.tippy-box[data-theme~=dark-medium][data-placement^=bottom] .tippy-arrow::before {\n --tw-border-opacity: 1;\n border-bottom-color: rgb(54 80 99 / var(--tw-border-opacity, 1));\n}\n.tippy-box[data-theme~=dark-medium][data-placement^=left] .tippy-arrow::before {\n --tw-border-opacity: 1;\n border-left-color: rgb(54 80 99 / var(--tw-border-opacity, 1));\n}\n.tippy-box[data-theme~=dark-medium][data-placement^=right] .tippy-arrow::before {\n --tw-border-opacity: 1;\n border-right-color: rgb(54 80 99 / var(--tw-border-opacity, 1));\n}\n.tippy-box[data-theme~=dark-medium] > .tippy-backdrop {\n --tw-bg-opacity: 1;\n background-color: rgb(54 80 99 / var(--tw-bg-opacity, 1));\n}\n.tippy-box[data-theme~=dark-medium] > .tippy-svg-arrow {\n fill: #365063;\n}\n.tippy-box[data-theme~=dark-large] {\n border-radius: 8px;\n padding-left: 0.75rem;\n padding-right: 0.75rem;\n padding-top: 0.5rem;\n padding-bottom: 0.5rem;\n font-family: Inter, sans-serif;\n font-size: 12px;\n font-weight: 400;\n font-style: normal;\n line-height: 20px;\n --tw-shadow: 0px 27px 12px 0px rgba(63, 93, 116, 0.00), 0px 18px 7px 0px rgba(63, 93, 116, 0.02), 0px 10px 6px 0px rgba(63, 93, 116, 0.08), 0px 4px 4px 0px rgba(63, 93, 116, 0.13), 0px 1px 2px 0px rgba(63, 93, 116, 0.15), 0px 0px 14px 0px rgba(63, 93, 116, 0.16);\n --tw-shadow-colored: 0px 27px 12px 0px var(--tw-shadow-color), 0px 18px 7px 0px var(--tw-shadow-color), 0px 10px 6px 0px var(--tw-shadow-color), 0px 4px 4px 0px var(--tw-shadow-color), 0px 1px 2px 0px var(--tw-shadow-color), 0px 0px 14px 0px var(--tw-shadow-color);\n box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);\n}\n.tippy-box[data-theme~=dark-large][data-placement^=top] > .tippy-arrow {\n bottom: 0;\n}\n.tippy-box[data-theme~=dark-large][data-placement^=top] > .tippy-arrow::before {\n bottom: -8px;\n left: 0;\n border-width: 8px 8px 0;\n}\n.tippy-box[data-theme~=dark-large][data-placement^=bottom] > .tippy-arrow {\n top: 0;\n}\n.tippy-box[data-theme~=dark-large][data-placement^=bottom] > .tippy-arrow::before {\n top: -8px;\n left: 0;\n border-width: 0 8px 8px;\n}\n.tippy-box[data-theme~=dark-large][data-placement^=left] > .tippy-arrow {\n right: 0;\n}\n.tippy-box[data-theme~=dark-large][data-placement^=left] > .tippy-arrow::before {\n border-width: 8px 0 8px 8px;\n right: -8px;\n}\n.tippy-box[data-theme~=dark-large][data-placement^=right] > .tippy-arrow {\n left: 0;\n}\n.tippy-box[data-theme~=dark-large][data-placement^=right] > .tippy-arrow::before {\n left: -8px;\n border-width: 8px 8px 8px 0;\n}\n.tippy-box[data-theme~=dark-large] {\n --tw-bg-opacity: 1;\n background-color: rgb(54 80 99 / var(--tw-bg-opacity, 1));\n --tw-text-opacity: 1;\n color: rgb(255 255 255 / var(--tw-text-opacity, 1));\n}\n.tippy-box[data-theme~=dark-large][data-placement^=top] .tippy-arrow::before {\n --tw-border-opacity: 1;\n border-top-color: rgb(54 80 99 / var(--tw-border-opacity, 1));\n}\n.tippy-box[data-theme~=dark-large][data-placement^=bottom] .tippy-arrow::before {\n --tw-border-opacity: 1;\n border-bottom-color: rgb(54 80 99 / var(--tw-border-opacity, 1));\n}\n.tippy-box[data-theme~=dark-large][data-placement^=left] .tippy-arrow::before {\n --tw-border-opacity: 1;\n border-left-color: rgb(54 80 99 / var(--tw-border-opacity, 1));\n}\n.tippy-box[data-theme~=dark-large][data-placement^=right] .tippy-arrow::before {\n --tw-border-opacity: 1;\n border-right-color: rgb(54 80 99 / var(--tw-border-opacity, 1));\n}\n.tippy-box[data-theme~=dark-large] > .tippy-backdrop {\n --tw-bg-opacity: 1;\n background-color: rgb(54 80 99 / var(--tw-bg-opacity, 1));\n}\n.tippy-box[data-theme~=dark-large] > .tippy-svg-arrow {\n fill: #365063;\n}\n.tippy-box[data-theme~=light-medium] {\n border-radius: 4px;\n padding-left: 0.5rem;\n padding-right: 0.5rem;\n padding-top: 0.5rem;\n padding-bottom: 0.5rem;\n font-family: Inter, sans-serif;\n font-size: 10px;\n font-weight: 600;\n font-style: normal;\n line-height: 12px;\n --tw-shadow: 0px 27px 12px 0px rgba(63, 93, 116, 0.00), 0px 18px 7px 0px rgba(63, 93, 116, 0.02), 0px 10px 6px 0px rgba(63, 93, 116, 0.08), 0px 4px 4px 0px rgba(63, 93, 116, 0.13), 0px 1px 2px 0px rgba(63, 93, 116, 0.15), 0px 0px 14px 0px rgba(63, 93, 116, 0.16);\n --tw-shadow-colored: 0px 27px 12px 0px var(--tw-shadow-color), 0px 18px 7px 0px var(--tw-shadow-color), 0px 10px 6px 0px var(--tw-shadow-color), 0px 4px 4px 0px var(--tw-shadow-color), 0px 1px 2px 0px var(--tw-shadow-color), 0px 0px 14px 0px var(--tw-shadow-color);\n box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);\n}\n.tippy-box[data-theme~=light-medium][data-placement^=top] > .tippy-arrow {\n bottom: 0;\n}\n.tippy-box[data-theme~=light-medium][data-placement^=top] > .tippy-arrow::before {\n bottom: -6px;\n left: 2px;\n border-width: 6px 6px 0;\n}\n.tippy-box[data-theme~=light-medium][data-placement^=bottom] > .tippy-arrow {\n top: 0;\n}\n.tippy-box[data-theme~=light-medium][data-placement^=bottom] > .tippy-arrow::before {\n top: -6px;\n left: 2px;\n border-width: 0 6px 6px;\n}\n.tippy-box[data-theme~=light-medium][data-placement^=left] > .tippy-arrow {\n right: 0;\n}\n.tippy-box[data-theme~=light-medium][data-placement^=left] > .tippy-arrow::before {\n border-width: 6px 0 6px 6px;\n right: -6px;\n top: 2px;\n}\n.tippy-box[data-theme~=light-medium][data-placement^=right] > .tippy-arrow {\n left: 0;\n}\n.tippy-box[data-theme~=light-medium][data-placement^=right] > .tippy-arrow::before {\n left: -6px;\n top: 2px;\n border-width: 6px 6px 6px 0;\n}\n.tippy-box[data-theme~=light-medium] {\n --tw-bg-opacity: 1;\n background-color: rgb(245 248 250 / var(--tw-bg-opacity, 1));\n --tw-text-opacity: 1;\n color: rgb(36 53 66 / var(--tw-text-opacity, 1));\n}\n.tippy-box[data-theme~=light-medium][data-placement^=top] .tippy-arrow::before {\n --tw-border-opacity: 1;\n border-top-color: rgb(245 248 250 / var(--tw-border-opacity, 1));\n}\n.tippy-box[data-theme~=light-medium][data-placement^=bottom] .tippy-arrow::before {\n --tw-border-opacity: 1;\n border-bottom-color: rgb(245 248 250 / var(--tw-border-opacity, 1));\n}\n.tippy-box[data-theme~=light-medium][data-placement^=left] .tippy-arrow::before {\n --tw-border-opacity: 1;\n border-left-color: rgb(245 248 250 / var(--tw-border-opacity, 1));\n}\n.tippy-box[data-theme~=light-medium][data-placement^=right] .tippy-arrow::before {\n --tw-border-opacity: 1;\n border-right-color: rgb(245 248 250 / var(--tw-border-opacity, 1));\n}\n.tippy-box[data-theme~=light-medium] > .tippy-backdrop {\n --tw-bg-opacity: 1;\n background-color: rgb(245 248 250 / var(--tw-bg-opacity, 1));\n}\n.tippy-box[data-theme~=light-medium] > .tippy-svg-arrow {\n fill: #f5f8fa;\n}\n.tippy-box[data-theme~=light-large] {\n border-radius: 8px;\n padding-left: 0.75rem;\n padding-right: 0.75rem;\n padding-top: 0.5rem;\n padding-bottom: 0.5rem;\n font-family: Inter, sans-serif;\n font-size: 12px;\n font-weight: 400;\n font-style: normal;\n line-height: 20px;\n --tw-shadow: 0px 27px 12px 0px rgba(63, 93, 116, 0.00), 0px 18px 7px 0px rgba(63, 93, 116, 0.02), 0px 10px 6px 0px rgba(63, 93, 116, 0.08), 0px 4px 4px 0px rgba(63, 93, 116, 0.13), 0px 1px 2px 0px rgba(63, 93, 116, 0.15), 0px 0px 14px 0px rgba(63, 93, 116, 0.16);\n --tw-shadow-colored: 0px 27px 12px 0px var(--tw-shadow-color), 0px 18px 7px 0px var(--tw-shadow-color), 0px 10px 6px 0px var(--tw-shadow-color), 0px 4px 4px 0px var(--tw-shadow-color), 0px 1px 2px 0px var(--tw-shadow-color), 0px 0px 14px 0px var(--tw-shadow-color);\n box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);\n}\n.tippy-box[data-theme~=light-large][data-placement^=top] > .tippy-arrow {\n bottom: 0;\n}\n.tippy-box[data-theme~=light-large][data-placement^=top] > .tippy-arrow::before {\n bottom: -8px;\n left: 0;\n border-width: 8px 8px 0;\n}\n.tippy-box[data-theme~=light-large][data-placement^=bottom] > .tippy-arrow {\n top: 0;\n}\n.tippy-box[data-theme~=light-large][data-placement^=bottom] > .tippy-arrow::before {\n top: -8px;\n left: 0;\n border-width: 0 8px 8px;\n}\n.tippy-box[data-theme~=light-large][data-placement^=left] > .tippy-arrow {\n right: 0;\n}\n.tippy-box[data-theme~=light-large][data-placement^=left] > .tippy-arrow::before {\n border-width: 8px 0 8px 8px;\n right: -8px;\n}\n.tippy-box[data-theme~=light-large][data-placement^=right] > .tippy-arrow {\n left: 0;\n}\n.tippy-box[data-theme~=light-large][data-placement^=right] > .tippy-arrow::before {\n left: -8px;\n border-width: 8px 8px 8px 0;\n}\n.tippy-box[data-theme~=light-large] {\n --tw-bg-opacity: 1;\n background-color: rgb(245 248 250 / var(--tw-bg-opacity, 1));\n --tw-text-opacity: 1;\n color: rgb(36 53 66 / var(--tw-text-opacity, 1));\n}\n.tippy-box[data-theme~=light-large][data-placement^=top] .tippy-arrow::before {\n --tw-border-opacity: 1;\n border-top-color: rgb(245 248 250 / var(--tw-border-opacity, 1));\n}\n.tippy-box[data-theme~=light-large][data-placement^=bottom] .tippy-arrow::before {\n --tw-border-opacity: 1;\n border-bottom-color: rgb(245 248 250 / var(--tw-border-opacity, 1));\n}\n.tippy-box[data-theme~=light-large][data-placement^=left] .tippy-arrow::before {\n --tw-border-opacity: 1;\n border-left-color: rgb(245 248 250 / var(--tw-border-opacity, 1));\n}\n.tippy-box[data-theme~=light-large][data-placement^=right] .tippy-arrow::before {\n --tw-border-opacity: 1;\n border-right-color: rgb(245 248 250 / var(--tw-border-opacity, 1));\n}\n.tippy-box[data-theme~=light-large] > .tippy-backdrop {\n --tw-bg-opacity: 1;\n background-color: rgb(245 248 250 / var(--tw-bg-opacity, 1));\n}\n.tippy-box[data-theme~=light-large] > .tippy-svg-arrow {\n fill: #f5f8fa;\n}\n.tippy-box[data-theme~=white-medium] {\n border-radius: 4px;\n padding-left: 0.5rem;\n padding-right: 0.5rem;\n padding-top: 0.5rem;\n padding-bottom: 0.5rem;\n font-family: Inter, sans-serif;\n font-size: 10px;\n font-weight: 600;\n font-style: normal;\n line-height: 12px;\n --tw-shadow: 0px 27px 12px 0px rgba(63, 93, 116, 0.00), 0px 18px 7px 0px rgba(63, 93, 116, 0.02), 0px 10px 6px 0px rgba(63, 93, 116, 0.08), 0px 4px 4px 0px rgba(63, 93, 116, 0.13), 0px 1px 2px 0px rgba(63, 93, 116, 0.15), 0px 0px 14px 0px rgba(63, 93, 116, 0.16);\n --tw-shadow-colored: 0px 27px 12px 0px var(--tw-shadow-color), 0px 18px 7px 0px var(--tw-shadow-color), 0px 10px 6px 0px var(--tw-shadow-color), 0px 4px 4px 0px var(--tw-shadow-color), 0px 1px 2px 0px var(--tw-shadow-color), 0px 0px 14px 0px var(--tw-shadow-color);\n box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);\n}\n.tippy-box[data-theme~=white-medium][data-placement^=top] > .tippy-arrow {\n bottom: 0;\n}\n.tippy-box[data-theme~=white-medium][data-placement^=top] > .tippy-arrow::before {\n bottom: -6px;\n left: 2px;\n border-width: 6px 6px 0;\n}\n.tippy-box[data-theme~=white-medium][data-placement^=bottom] > .tippy-arrow {\n top: 0;\n}\n.tippy-box[data-theme~=white-medium][data-placement^=bottom] > .tippy-arrow::before {\n top: -6px;\n left: 2px;\n border-width: 0 6px 6px;\n}\n.tippy-box[data-theme~=white-medium][data-placement^=left] > .tippy-arrow {\n right: 0;\n}\n.tippy-box[data-theme~=white-medium][data-placement^=left] > .tippy-arrow::before {\n border-width: 6px 0 6px 6px;\n right: -6px;\n top: 2px;\n}\n.tippy-box[data-theme~=white-medium][data-placement^=right] > .tippy-arrow {\n left: 0;\n}\n.tippy-box[data-theme~=white-medium][data-placement^=right] > .tippy-arrow::before {\n left: -6px;\n top: 2px;\n border-width: 6px 6px 6px 0;\n}\n.tippy-box[data-theme~=white-medium] {\n --tw-bg-opacity: 1;\n background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));\n --tw-text-opacity: 1;\n color: rgb(36 53 66 / var(--tw-text-opacity, 1));\n}\n.tippy-box[data-theme~=white-medium][data-placement^=top] .tippy-arrow::before {\n --tw-border-opacity: 1;\n border-top-color: rgb(255 255 255 / var(--tw-border-opacity, 1));\n}\n.tippy-box[data-theme~=white-medium][data-placement^=bottom] .tippy-arrow::before {\n --tw-border-opacity: 1;\n border-bottom-color: rgb(255 255 255 / var(--tw-border-opacity, 1));\n}\n.tippy-box[data-theme~=white-medium][data-placement^=left] .tippy-arrow::before {\n --tw-border-opacity: 1;\n border-left-color: rgb(255 255 255 / var(--tw-border-opacity, 1));\n}\n.tippy-box[data-theme~=white-medium][data-placement^=right] .tippy-arrow::before {\n --tw-border-opacity: 1;\n border-right-color: rgb(255 255 255 / var(--tw-border-opacity, 1));\n}\n.tippy-box[data-theme~=white-medium] > .tippy-backdrop {\n --tw-bg-opacity: 1;\n background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));\n}\n.tippy-box[data-theme~=white-medium] > .tippy-svg-arrow {\n fill: #ffffff;\n}\n.tippy-box[data-theme~=white-large] {\n border-radius: 8px;\n padding-left: 0.75rem;\n padding-right: 0.75rem;\n padding-top: 0.5rem;\n padding-bottom: 0.5rem;\n font-family: Inter, sans-serif;\n font-size: 12px;\n font-weight: 400;\n font-style: normal;\n line-height: 20px;\n --tw-shadow: 0px 27px 12px 0px rgba(63, 93, 116, 0.00), 0px 18px 7px 0px rgba(63, 93, 116, 0.02), 0px 10px 6px 0px rgba(63, 93, 116, 0.08), 0px 4px 4px 0px rgba(63, 93, 116, 0.13), 0px 1px 2px 0px rgba(63, 93, 116, 0.15), 0px 0px 14px 0px rgba(63, 93, 116, 0.16);\n --tw-shadow-colored: 0px 27px 12px 0px var(--tw-shadow-color), 0px 18px 7px 0px var(--tw-shadow-color), 0px 10px 6px 0px var(--tw-shadow-color), 0px 4px 4px 0px var(--tw-shadow-color), 0px 1px 2px 0px var(--tw-shadow-color), 0px 0px 14px 0px var(--tw-shadow-color);\n box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);\n}\n.tippy-box[data-theme~=white-large][data-placement^=top] > .tippy-arrow {\n bottom: 0;\n}\n.tippy-box[data-theme~=white-large][data-placement^=top] > .tippy-arrow::before {\n bottom: -8px;\n left: 0;\n border-width: 8px 8px 0;\n}\n.tippy-box[data-theme~=white-large][data-placement^=bottom] > .tippy-arrow {\n top: 0;\n}\n.tippy-box[data-theme~=white-large][data-placement^=bottom] > .tippy-arrow::before {\n top: -8px;\n left: 0;\n border-width: 0 8px 8px;\n}\n.tippy-box[data-theme~=white-large][data-placement^=left] > .tippy-arrow {\n right: 0;\n}\n.tippy-box[data-theme~=white-large][data-placement^=left] > .tippy-arrow::before {\n border-width: 8px 0 8px 8px;\n right: -8px;\n}\n.tippy-box[data-theme~=white-large][data-placement^=right] > .tippy-arrow {\n left: 0;\n}\n.tippy-box[data-theme~=white-large][data-placement^=right] > .tippy-arrow::before {\n left: -8px;\n border-width: 8px 8px 8px 0;\n}\n.tippy-box[data-theme~=white-large] {\n --tw-bg-opacity: 1;\n background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));\n --tw-text-opacity: 1;\n color: rgb(36 53 66 / var(--tw-text-opacity, 1));\n}\n.tippy-box[data-theme~=white-large][data-placement^=top] .tippy-arrow::before {\n --tw-border-opacity: 1;\n border-top-color: rgb(255 255 255 / var(--tw-border-opacity, 1));\n}\n.tippy-box[data-theme~=white-large][data-placement^=bottom] .tippy-arrow::before {\n --tw-border-opacity: 1;\n border-bottom-color: rgb(255 255 255 / var(--tw-border-opacity, 1));\n}\n.tippy-box[data-theme~=white-large][data-placement^=left] .tippy-arrow::before {\n --tw-border-opacity: 1;\n border-left-color: rgb(255 255 255 / var(--tw-border-opacity, 1));\n}\n.tippy-box[data-theme~=white-large][data-placement^=right] .tippy-arrow::before {\n --tw-border-opacity: 1;\n border-right-color: rgb(255 255 255 / var(--tw-border-opacity, 1));\n}\n.tippy-box[data-theme~=white-large] > .tippy-backdrop {\n --tw-bg-opacity: 1;\n background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));\n}\n.tippy-box[data-theme~=white-large] > .tippy-svg-arrow {\n fill: #ffffff;\n}\n.tippy-box[data-theme~=success-medium] {\n border-radius: 4px;\n padding-left: 0.5rem;\n padding-right: 0.5rem;\n padding-top: 0.5rem;\n padding-bottom: 0.5rem;\n font-family: Inter, sans-serif;\n font-size: 10px;\n font-weight: 600;\n font-style: normal;\n line-height: 12px;\n --tw-shadow: 0px 27px 12px 0px rgba(63, 93, 116, 0.00), 0px 18px 7px 0px rgba(63, 93, 116, 0.02), 0px 10px 6px 0px rgba(63, 93, 116, 0.08), 0px 4px 4px 0px rgba(63, 93, 116, 0.13), 0px 1px 2px 0px rgba(63, 93, 116, 0.15), 0px 0px 14px 0px rgba(63, 93, 116, 0.16);\n --tw-shadow-colored: 0px 27px 12px 0px var(--tw-shadow-color), 0px 18px 7px 0px var(--tw-shadow-color), 0px 10px 6px 0px var(--tw-shadow-color), 0px 4px 4px 0px var(--tw-shadow-color), 0px 1px 2px 0px var(--tw-shadow-color), 0px 0px 14px 0px var(--tw-shadow-color);\n box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);\n}\n.tippy-box[data-theme~=success-medium][data-placement^=top] > .tippy-arrow {\n bottom: 0;\n}\n.tippy-box[data-theme~=success-medium][data-placement^=top] > .tippy-arrow::before {\n bottom: -6px;\n left: 2px;\n border-width: 6px 6px 0;\n}\n.tippy-box[data-theme~=success-medium][data-placement^=bottom] > .tippy-arrow {\n top: 0;\n}\n.tippy-box[data-theme~=success-medium][data-placement^=bottom] > .tippy-arrow::before {\n top: -6px;\n left: 2px;\n border-width: 0 6px 6px;\n}\n.tippy-box[data-theme~=success-medium][data-placement^=left] > .tippy-arrow {\n right: 0;\n}\n.tippy-box[data-theme~=success-medium][data-placement^=left] > .tippy-arrow::before {\n border-width: 6px 0 6px 6px;\n right: -6px;\n top: 2px;\n}\n.tippy-box[data-theme~=success-medium][data-placement^=right] > .tippy-arrow {\n left: 0;\n}\n.tippy-box[data-theme~=success-medium][data-placement^=right] > .tippy-arrow::before {\n left: -6px;\n top: 2px;\n border-width: 6px 6px 6px 0;\n}\n.tippy-box[data-theme~=success-medium] {\n --tw-bg-opacity: 1;\n background-color: rgb(71 205 104 / var(--tw-bg-opacity, 1));\n --tw-text-opacity: 1;\n color: rgb(255 255 255 / var(--tw-text-opacity, 1));\n}\n.tippy-box[data-theme~=success-medium][data-placement^=top] .tippy-arrow::before {\n --tw-border-opacity: 1;\n border-top-color: rgb(71 205 104 / var(--tw-border-opacity, 1));\n}\n.tippy-box[data-theme~=success-medium][data-placement^=bottom] .tippy-arrow::before {\n --tw-border-opacity: 1;\n border-bottom-color: rgb(71 205 104 / var(--tw-border-opacity, 1));\n}\n.tippy-box[data-theme~=success-medium][data-placement^=left] .tippy-arrow::before {\n --tw-border-opacity: 1;\n border-left-color: rgb(71 205 104 / var(--tw-border-opacity, 1));\n}\n.tippy-box[data-theme~=success-medium][data-placement^=right] .tippy-arrow::before {\n --tw-border-opacity: 1;\n border-right-color: rgb(71 205 104 / var(--tw-border-opacity, 1));\n}\n.tippy-box[data-theme~=success-medium] > .tippy-backdrop {\n --tw-bg-opacity: 1;\n background-color: rgb(71 205 104 / var(--tw-bg-opacity, 1));\n}\n.tippy-box[data-theme~=success-medium] > .tippy-svg-arrow {\n fill: #47cd68;\n}\n.tippy-box[data-theme~=success-large] {\n border-radius: 8px;\n padding-left: 0.75rem;\n padding-right: 0.75rem;\n padding-top: 0.5rem;\n padding-bottom: 0.5rem;\n font-family: Inter, sans-serif;\n font-size: 12px;\n font-weight: 400;\n font-style: normal;\n line-height: 20px;\n --tw-shadow: 0px 27px 12px 0px rgba(63, 93, 116, 0.00), 0px 18px 7px 0px rgba(63, 93, 116, 0.02), 0px 10px 6px 0px rgba(63, 93, 116, 0.08), 0px 4px 4px 0px rgba(63, 93, 116, 0.13), 0px 1px 2px 0px rgba(63, 93, 116, 0.15), 0px 0px 14px 0px rgba(63, 93, 116, 0.16);\n --tw-shadow-colored: 0px 27px 12px 0px var(--tw-shadow-color), 0px 18px 7px 0px var(--tw-shadow-color), 0px 10px 6px 0px var(--tw-shadow-color), 0px 4px 4px 0px var(--tw-shadow-color), 0px 1px 2px 0px var(--tw-shadow-color), 0px 0px 14px 0px var(--tw-shadow-color);\n box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);\n}\n.tippy-box[data-theme~=success-large][data-placement^=top] > .tippy-arrow {\n bottom: 0;\n}\n.tippy-box[data-theme~=success-large][data-placement^=top] > .tippy-arrow::before {\n bottom: -8px;\n left: 0;\n border-width: 8px 8px 0;\n}\n.tippy-box[data-theme~=success-large][data-placement^=bottom] > .tippy-arrow {\n top: 0;\n}\n.tippy-box[data-theme~=success-large][data-placement^=bottom] > .tippy-arrow::before {\n top: -8px;\n left: 0;\n border-width: 0 8px 8px;\n}\n.tippy-box[data-theme~=success-large][data-placement^=left] > .tippy-arrow {\n right: 0;\n}\n.tippy-box[data-theme~=success-large][data-placement^=left] > .tippy-arrow::before {\n border-width: 8px 0 8px 8px;\n right: -8px;\n}\n.tippy-box[data-theme~=success-large][data-placement^=right] > .tippy-arrow {\n left: 0;\n}\n.tippy-box[data-theme~=success-large][data-placement^=right] > .tippy-arrow::before {\n left: -8px;\n border-width: 8px 8px 8px 0;\n}\n.tippy-box[data-theme~=success-large] {\n --tw-bg-opacity: 1;\n background-color: rgb(71 205 104 / var(--tw-bg-opacity, 1));\n --tw-text-opacity: 1;\n color: rgb(255 255 255 / var(--tw-text-opacity, 1));\n}\n.tippy-box[data-theme~=success-large][data-placement^=top] .tippy-arrow::before {\n --tw-border-opacity: 1;\n border-top-color: rgb(71 205 104 / var(--tw-border-opacity, 1));\n}\n.tippy-box[data-theme~=success-large][data-placement^=bottom] .tippy-arrow::before {\n --tw-border-opacity: 1;\n border-bottom-color: rgb(71 205 104 / var(--tw-border-opacity, 1));\n}\n.tippy-box[data-theme~=success-large][data-placement^=left] .tippy-arrow::before {\n --tw-border-opacity: 1;\n border-left-color: rgb(71 205 104 / var(--tw-border-opacity, 1));\n}\n.tippy-box[data-theme~=success-large][data-placement^=right] .tippy-arrow::before {\n --tw-border-opacity: 1;\n border-right-color: rgb(71 205 104 / var(--tw-border-opacity, 1));\n}\n.tippy-box[data-theme~=success-large] > .tippy-backdrop {\n --tw-bg-opacity: 1;\n background-color: rgb(71 205 104 / var(--tw-bg-opacity, 1));\n}\n.tippy-box[data-theme~=success-large] > .tippy-svg-arrow {\n fill: #47cd68;\n}\n.tippy-box[data-theme~=danger-medium] {\n border-radius: 4px;\n padding-left: 0.5rem;\n padding-right: 0.5rem;\n padding-top: 0.5rem;\n padding-bottom: 0.5rem;\n font-family: Inter, sans-serif;\n font-size: 10px;\n font-weight: 600;\n font-style: normal;\n line-height: 12px;\n --tw-shadow: 0px 27px 12px 0px rgba(63, 93, 116, 0.00), 0px 18px 7px 0px rgba(63, 93, 116, 0.02), 0px 10px 6px 0px rgba(63, 93, 116, 0.08), 0px 4px 4px 0px rgba(63, 93, 116, 0.13), 0px 1px 2px 0px rgba(63, 93, 116, 0.15), 0px 0px 14px 0px rgba(63, 93, 116, 0.16);\n --tw-shadow-colored: 0px 27px 12px 0px var(--tw-shadow-color), 0px 18px 7px 0px var(--tw-shadow-color), 0px 10px 6px 0px var(--tw-shadow-color), 0px 4px 4px 0px var(--tw-shadow-color), 0px 1px 2px 0px var(--tw-shadow-color), 0px 0px 14px 0px var(--tw-shadow-color);\n box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);\n}\n.tippy-box[data-theme~=danger-medium][data-placement^=top] > .tippy-arrow {\n bottom: 0;\n}\n.tippy-box[data-theme~=danger-medium][data-placement^=top] > .tippy-arrow::before {\n bottom: -6px;\n left: 2px;\n border-width: 6px 6px 0;\n}\n.tippy-box[data-theme~=danger-medium][data-placement^=bottom] > .tippy-arrow {\n top: 0;\n}\n.tippy-box[data-theme~=danger-medium][data-placement^=bottom] > .tippy-arrow::before {\n top: -6px;\n left: 2px;\n border-width: 0 6px 6px;\n}\n.tippy-box[data-theme~=danger-medium][data-placement^=left] > .tippy-arrow {\n right: 0;\n}\n.tippy-box[data-theme~=danger-medium][data-placement^=left] > .tippy-arrow::before {\n border-width: 6px 0 6px 6px;\n right: -6px;\n top: 2px;\n}\n.tippy-box[data-theme~=danger-medium][data-placement^=right] > .tippy-arrow {\n left: 0;\n}\n.tippy-box[data-theme~=danger-medium][data-placement^=right] > .tippy-arrow::before {\n left: -6px;\n top: 2px;\n border-width: 6px 6px 6px 0;\n}\n.tippy-box[data-theme~=danger-medium] {\n --tw-bg-opacity: 1;\n background-color: rgb(233 99 99 / var(--tw-bg-opacity, 1));\n --tw-text-opacity: 1;\n color: rgb(255 255 255 / var(--tw-text-opacity, 1));\n}\n.tippy-box[data-theme~=danger-medium][data-placement^=top] .tippy-arrow::before {\n --tw-border-opacity: 1;\n border-top-color: rgb(233 99 99 / var(--tw-border-opacity, 1));\n}\n.tippy-box[data-theme~=danger-medium][data-placement^=bottom] .tippy-arrow::before {\n --tw-border-opacity: 1;\n border-bottom-color: rgb(233 99 99 / var(--tw-border-opacity, 1));\n}\n.tippy-box[data-theme~=danger-medium][data-placement^=left] .tippy-arrow::before {\n --tw-border-opacity: 1;\n border-left-color: rgb(233 99 99 / var(--tw-border-opacity, 1));\n}\n.tippy-box[data-theme~=danger-medium][data-placement^=right] .tippy-arrow::before {\n --tw-border-opacity: 1;\n border-right-color: rgb(233 99 99 / var(--tw-border-opacity, 1));\n}\n.tippy-box[data-theme~=danger-medium] > .tippy-backdrop {\n --tw-bg-opacity: 1;\n background-color: rgb(233 99 99 / var(--tw-bg-opacity, 1));\n}\n.tippy-box[data-theme~=danger-medium] > .tippy-svg-arrow {\n fill: #e96363;\n}\n.tippy-box[data-theme~=danger-large] {\n border-radius: 8px;\n padding-left: 0.75rem;\n padding-right: 0.75rem;\n padding-top: 0.5rem;\n padding-bottom: 0.5rem;\n font-family: Inter, sans-serif;\n font-size: 12px;\n font-weight: 400;\n font-style: normal;\n line-height: 20px;\n --tw-shadow: 0px 27px 12px 0px rgba(63, 93, 116, 0.00), 0px 18px 7px 0px rgba(63, 93, 116, 0.02), 0px 10px 6px 0px rgba(63, 93, 116, 0.08), 0px 4px 4px 0px rgba(63, 93, 116, 0.13), 0px 1px 2px 0px rgba(63, 93, 116, 0.15), 0px 0px 14px 0px rgba(63, 93, 116, 0.16);\n --tw-shadow-colored: 0px 27px 12px 0px var(--tw-shadow-color), 0px 18px 7px 0px var(--tw-shadow-color), 0px 10px 6px 0px var(--tw-shadow-color), 0px 4px 4px 0px var(--tw-shadow-color), 0px 1px 2px 0px var(--tw-shadow-color), 0px 0px 14px 0px var(--tw-shadow-color);\n box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);\n}\n.tippy-box[data-theme~=danger-large][data-placement^=top] > .tippy-arrow {\n bottom: 0;\n}\n.tippy-box[data-theme~=danger-large][data-placement^=top] > .tippy-arrow::before {\n bottom: -8px;\n left: 0;\n border-width: 8px 8px 0;\n}\n.tippy-box[data-theme~=danger-large][data-placement^=bottom] > .tippy-arrow {\n top: 0;\n}\n.tippy-box[data-theme~=danger-large][data-placement^=bottom] > .tippy-arrow::before {\n top: -8px;\n left: 0;\n border-width: 0 8px 8px;\n}\n.tippy-box[data-theme~=danger-large][data-placement^=left] > .tippy-arrow {\n right: 0;\n}\n.tippy-box[data-theme~=danger-large][data-placement^=left] > .tippy-arrow::before {\n border-width: 8px 0 8px 8px;\n right: -8px;\n}\n.tippy-box[data-theme~=danger-large][data-placement^=right] > .tippy-arrow {\n left: 0;\n}\n.tippy-box[data-theme~=danger-large][data-placement^=right] > .tippy-arrow::before {\n left: -8px;\n border-width: 8px 8px 8px 0;\n}\n.tippy-box[data-theme~=danger-large] {\n --tw-bg-opacity: 1;\n background-color: rgb(233 99 99 / var(--tw-bg-opacity, 1));\n --tw-text-opacity: 1;\n color: rgb(255 255 255 / var(--tw-text-opacity, 1));\n}\n.tippy-box[data-theme~=danger-large][data-placement^=top] .tippy-arrow::before {\n --tw-border-opacity: 1;\n border-top-color: rgb(233 99 99 / var(--tw-border-opacity, 1));\n}\n.tippy-box[data-theme~=danger-large][data-placement^=bottom] .tippy-arrow::before {\n --tw-border-opacity: 1;\n border-bottom-color: rgb(233 99 99 / var(--tw-border-opacity, 1));\n}\n.tippy-box[data-theme~=danger-large][data-placement^=left] .tippy-arrow::before {\n --tw-border-opacity: 1;\n border-left-color: rgb(233 99 99 / var(--tw-border-opacity, 1));\n}\n.tippy-box[data-theme~=danger-large][data-placement^=right] .tippy-arrow::before {\n --tw-border-opacity: 1;\n border-right-color: rgb(233 99 99 / var(--tw-border-opacity, 1));\n}\n.tippy-box[data-theme~=danger-large] > .tippy-backdrop {\n --tw-bg-opacity: 1;\n background-color: rgb(233 99 99 / var(--tw-bg-opacity, 1));\n}\n.tippy-box[data-theme~=danger-large] > .tippy-svg-arrow {\n fill: #e96363;\n}\n*, ::before, ::after {\n --tw-border-spacing-x: 0;\n --tw-border-spacing-y: 0;\n --tw-translate-x: 0;\n --tw-translate-y: 0;\n --tw-rotate: 0;\n --tw-skew-x: 0;\n --tw-skew-y: 0;\n --tw-scale-x: 1;\n --tw-scale-y: 1;\n --tw-pan-x: ;\n --tw-pan-y: ;\n --tw-pinch-zoom: ;\n --tw-scroll-snap-strictness: proximity;\n --tw-gradient-from-position: ;\n --tw-gradient-via-position: ;\n --tw-gradient-to-position: ;\n --tw-ordinal: ;\n --tw-slashed-zero: ;\n --tw-numeric-figure: ;\n --tw-numeric-spacing: ;\n --tw-numeric-fraction: ;\n --tw-ring-inset: ;\n --tw-ring-offset-width: 0px;\n --tw-ring-offset-color: #fff;\n --tw-ring-color: rgb(59 130 246 / 0.5);\n --tw-ring-offset-shadow: 0 0 #0000;\n --tw-ring-shadow: 0 0 #0000;\n --tw-shadow: 0 0 #0000;\n --tw-shadow-colored: 0 0 #0000;\n --tw-blur: ;\n --tw-brightness: ;\n --tw-contrast: ;\n --tw-grayscale: ;\n --tw-hue-rotate: ;\n --tw-invert: ;\n --tw-saturate: ;\n --tw-sepia: ;\n --tw-drop-shadow: ;\n --tw-backdrop-blur: ;\n --tw-backdrop-brightness: ;\n --tw-backdrop-contrast: ;\n --tw-backdrop-grayscale: ;\n --tw-backdrop-hue-rotate: ;\n --tw-backdrop-invert: ;\n --tw-backdrop-opacity: ;\n --tw-backdrop-saturate: ;\n --tw-backdrop-sepia: ;\n --tw-contain-size: ;\n --tw-contain-layout: ;\n --tw-contain-paint: ;\n --tw-contain-style: ;\n}\n::backdrop {\n --tw-border-spacing-x: 0;\n --tw-border-spacing-y: 0;\n --tw-translate-x: 0;\n --tw-translate-y: 0;\n --tw-rotate: 0;\n --tw-skew-x: 0;\n --tw-skew-y: 0;\n --tw-scale-x: 1;\n --tw-scale-y: 1;\n --tw-pan-x: ;\n --tw-pan-y: ;\n --tw-pinch-zoom: ;\n --tw-scroll-snap-strictness: proximity;\n --tw-gradient-from-position: ;\n --tw-gradient-via-position: ;\n --tw-gradient-to-position: ;\n --tw-ordinal: ;\n --tw-slashed-zero: ;\n --tw-numeric-figure: ;\n --tw-numeric-spacing: ;\n --tw-numeric-fraction: ;\n --tw-ring-inset: ;\n --tw-ring-offset-width: 0px;\n --tw-ring-offset-color: #fff;\n --tw-ring-color: rgb(59 130 246 / 0.5);\n --tw-ring-offset-shadow: 0 0 #0000;\n --tw-ring-shadow: 0 0 #0000;\n --tw-shadow: 0 0 #0000;\n --tw-shadow-colored: 0 0 #0000;\n --tw-blur: ;\n --tw-brightness: ;\n --tw-contrast: ;\n --tw-grayscale: ;\n --tw-hue-rotate: ;\n --tw-invert: ;\n --tw-saturate: ;\n --tw-sepia: ;\n --tw-drop-shadow: ;\n --tw-backdrop-blur: ;\n --tw-backdrop-brightness: ;\n --tw-backdrop-contrast: ;\n --tw-backdrop-grayscale: ;\n --tw-backdrop-hue-rotate: ;\n --tw-backdrop-invert: ;\n --tw-backdrop-opacity: ;\n --tw-backdrop-saturate: ;\n --tw-backdrop-sepia: ;\n --tw-contain-size: ;\n --tw-contain-layout: ;\n --tw-contain-paint: ;\n --tw-contain-style: ;\n}\n/*! tailwindcss v3.4.18 | MIT License | https://tailwindcss.com\n */\n/*\n1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)\n2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)\n*/\n*,\n::before,\n::after {\n box-sizing: border-box; /* 1 */\n border-width: 0; /* 2 */\n border-style: solid; /* 2 */\n border-color: #e5e7eb; /* 2 */\n}\n::before,\n::after {\n --tw-content: \'\';\n}\n/*\n1. Use a consistent sensible line-height in all browsers.\n2. Prevent adjustments of font size after orientation changes in iOS.\n3. Use a more readable tab size.\n4. Use the user\'s configured `sans` font-family by default.\n5. Use the user\'s configured `sans` font-feature-settings by default.\n6. Use the user\'s configured `sans` font-variation-settings by default.\n7. Disable tap highlights on iOS\n*/\nhtml,\n:host {\n line-height: 1.5; /* 1 */\n -webkit-text-size-adjust: 100%; /* 2 */\n -moz-tab-size: 4; /* 3 */\n -o-tab-size: 4;\n tab-size: 4; /* 3 */\n font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */\n font-feature-settings: normal; /* 5 */\n font-variation-settings: normal; /* 6 */\n -webkit-tap-highlight-color: transparent; /* 7 */\n}\n/*\n1. Remove the margin in all browsers.\n2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.\n*/\nbody {\n margin: 0; /* 1 */\n line-height: inherit; /* 2 */\n}\n/*\n1. Add the correct height in Firefox.\n2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)\n3. Ensure horizontal rules are visible by default.\n*/\nhr {\n height: 0; /* 1 */\n color: inherit; /* 2 */\n border-top-width: 1px; /* 3 */\n}\n/*\nAdd the correct text decoration in Chrome, Edge, and Safari.\n*/\nabbr:where([title]) {\n -webkit-text-decoration: underline dotted;\n text-decoration: underline dotted;\n}\n/*\nRemove the default font size and weight for headings.\n*/\nh1,\nh2,\nh3,\nh4,\nh5,\nh6 {\n font-size: inherit;\n font-weight: inherit;\n}\n/*\nReset links to optimize for opt-in styling instead of opt-out.\n*/\na {\n color: inherit;\n text-decoration: inherit;\n}\n/*\nAdd the correct font weight in Edge and Safari.\n*/\nb,\nstrong {\n font-weight: bolder;\n}\n/*\n1. Use the user\'s configured `mono` font-family by default.\n2. Use the user\'s configured `mono` font-feature-settings by default.\n3. Use the user\'s configured `mono` font-variation-settings by default.\n4. Correct the odd `em` font sizing in all browsers.\n*/\ncode,\nkbd,\nsamp,\npre {\n font-family: "PT Mono", sans-serif; /* 1 */\n font-feature-settings: normal; /* 2 */\n font-variation-settings: normal; /* 3 */\n font-size: 1em; /* 4 */\n}\n/*\nAdd the correct font size in all browsers.\n*/\nsmall {\n font-size: 80%;\n}\n/*\nPrevent `sub` and `sup` elements from affecting the line height in all browsers.\n*/\nsub,\nsup {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n}\nsub {\n bottom: -0.25em;\n}\nsup {\n top: -0.5em;\n}\n/*\n1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)\n2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)\n3. Remove gaps between table borders by default.\n*/\ntable {\n text-indent: 0; /* 1 */\n border-color: inherit; /* 2 */\n border-collapse: collapse; /* 3 */\n}\n/*\n1. Change the font styles in all browsers.\n2. Remove the margin in Firefox and Safari.\n3. Remove default padding in all browsers.\n*/\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n font-family: inherit; /* 1 */\n font-feature-settings: inherit; /* 1 */\n font-variation-settings: inherit; /* 1 */\n font-size: 100%; /* 1 */\n font-weight: inherit; /* 1 */\n line-height: inherit; /* 1 */\n letter-spacing: inherit; /* 1 */\n color: inherit; /* 1 */\n margin: 0; /* 2 */\n padding: 0; /* 3 */\n}\n/*\nRemove the inheritance of text transform in Edge and Firefox.\n*/\nbutton,\nselect {\n text-transform: none;\n}\n/*\n1. Correct the inability to style clickable types in iOS and Safari.\n2. Remove default button styles.\n*/\nbutton,\ninput:where([type=\'button\']),\ninput:where([type=\'reset\']),\ninput:where([type=\'submit\']) {\n -webkit-appearance: button; /* 1 */\n background-color: transparent; /* 2 */\n background-image: none; /* 2 */\n}\n/*\nUse the modern Firefox focus style for all focusable elements.\n*/\n:-moz-focusring {\n outline: auto;\n}\n/*\nRemove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)\n*/\n:-moz-ui-invalid {\n box-shadow: none;\n}\n/*\nAdd the correct vertical alignment in Chrome and Firefox.\n*/\nprogress {\n vertical-align: baseline;\n}\n/*\nCorrect the cursor style of increment and decrement buttons in Safari.\n*/\n::-webkit-inner-spin-button,\n::-webkit-outer-spin-button {\n height: auto;\n}\n/*\n1. Correct the odd appearance in Chrome and Safari.\n2. Correct the outline style in Safari.\n*/\n[type=\'search\'] {\n -webkit-appearance: textfield; /* 1 */\n outline-offset: -2px; /* 2 */\n}\n/*\nRemove the inner padding in Chrome and Safari on macOS.\n*/\n::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n/*\n1. Correct the inability to style clickable types in iOS and Safari.\n2. Change font properties to `inherit` in Safari.\n*/\n::-webkit-file-upload-button {\n -webkit-appearance: button; /* 1 */\n font: inherit; /* 2 */\n}\n/*\nAdd the correct display in Chrome and Safari.\n*/\nsummary {\n display: list-item;\n}\n/*\nRemoves the default spacing and border for appropriate elements.\n*/\nblockquote,\ndl,\ndd,\nh1,\nh2,\nh3,\nh4,\nh5,\nh6,\nhr,\nfigure,\np,\npre {\n margin: 0;\n}\nfieldset {\n margin: 0;\n padding: 0;\n}\nlegend {\n padding: 0;\n}\nol,\nul,\nmenu {\n list-style: none;\n margin: 0;\n padding: 0;\n}\n/*\nReset default styling for dialogs.\n*/\ndialog {\n padding: 0;\n}\n/*\nPrevent resizing textareas horizontally by default.\n*/\ntextarea {\n resize: vertical;\n}\n/*\n1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)\n2. Set the default placeholder color to the user\'s configured gray 400 color.\n*/\ninput::-moz-placeholder, textarea::-moz-placeholder {\n opacity: 1; /* 1 */\n color: #9ca3af; /* 2 */\n}\ninput::placeholder,\ntextarea::placeholder {\n opacity: 1; /* 1 */\n color: #9ca3af; /* 2 */\n}\n/*\nSet the default cursor for buttons.\n*/\nbutton,\n[role="button"] {\n cursor: pointer;\n}\n/*\nMake sure disabled buttons don\'t get the pointer cursor.\n*/\n:disabled {\n cursor: default;\n}\n/*\n1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)\n2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)\n This can trigger a poorly considered lint error in some tools but is included by design.\n*/\nimg,\nsvg,\nvideo,\ncanvas,\naudio,\niframe,\nembed,\nobject {\n display: block; /* 1 */\n vertical-align: middle; /* 2 */\n}\n/*\nConstrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)\n*/\nimg,\nvideo {\n max-width: 100%;\n height: auto;\n}\n/* Make elements with the HTML hidden attribute stay hidden by default */\n[hidden]:where(:not([hidden="until-found"])) {\n display: none;\n}\n.heading-inter-21-semi-bold {\n font-family: Inter, sans-serif;\n font-size: 21px;\n font-weight: 600;\n font-style: normal;\n line-height: 26px;\n}\n.paragraph-inter-16-regular {\n font-family: Inter, sans-serif;\n font-size: 16px;\n font-weight: 400;\n font-style: normal;\n line-height: 24px;\n}\n.paragraph-inter-14-regular {\n font-family: Inter, sans-serif;\n font-size: 14px;\n font-weight: 400;\n font-style: normal;\n line-height: 22px;\n}\n.paragraph-inter-14-semi-bold {\n font-family: Inter, sans-serif;\n font-size: 14px;\n font-weight: 600;\n font-style: normal;\n line-height: 22px;\n}\n.paragraph-inter-13-regular {\n font-family: Inter, sans-serif;\n font-size: 13px;\n font-weight: 400;\n font-style: normal;\n line-height: 20px;\n}\n.paragraph-inter-12-regular {\n font-family: Inter, sans-serif;\n font-size: 12px;\n font-weight: 400;\n font-style: normal;\n line-height: 20px;\n}\n.container {\n width: 100%;\n}\n@media (min-width: 640px) {\n .container {\n max-width: 640px;\n }\n}\n@media (min-width: 768px) {\n .container {\n max-width: 768px;\n }\n}\n@media (min-width: 1024px) {\n .container {\n max-width: 1024px;\n }\n}\n@media (min-width: 1280px) {\n .container {\n max-width: 1280px;\n }\n}\n@media (min-width: 1536px) {\n .container {\n max-width: 1536px;\n }\n}\n.prose {\n color: var(--tw-prose-body);\n max-width: 65ch;\n}\n.prose :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 1.25em;\n margin-bottom: 1.25em;\n}\n.prose :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n color: var(--tw-prose-lead);\n font-size: 1.25em;\n line-height: 1.6;\n margin-top: 1.2em;\n margin-bottom: 1.2em;\n}\n.prose :where(a):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n color: var(--tw-prose-links);\n text-decoration: underline;\n font-weight: 500;\n}\n.prose :where(strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n color: var(--tw-prose-bold);\n font-weight: 600;\n}\n.prose :where(a strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n color: inherit;\n}\n.prose :where(blockquote strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n color: inherit;\n}\n.prose :where(thead th strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n color: inherit;\n}\n.prose :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n list-style-type: decimal;\n margin-top: 1.25em;\n margin-bottom: 1.25em;\n padding-inline-start: 1.625em;\n}\n.prose :where(ol[type="A"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n list-style-type: upper-alpha;\n}\n.prose :where(ol[type="a"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n list-style-type: lower-alpha;\n}\n.prose :where(ol[type="A" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n list-style-type: upper-alpha;\n}\n.prose :where(ol[type="a" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n list-style-type: lower-alpha;\n}\n.prose :where(ol[type="I"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n list-style-type: upper-roman;\n}\n.prose :where(ol[type="i"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n list-style-type: lower-roman;\n}\n.prose :where(ol[type="I" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n list-style-type: upper-roman;\n}\n.prose :where(ol[type="i" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n list-style-type: lower-roman;\n}\n.prose :where(ol[type="1"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n list-style-type: decimal;\n}\n.prose :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n list-style-type: disc;\n margin-top: 1.25em;\n margin-bottom: 1.25em;\n padding-inline-start: 1.625em;\n}\n.prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {\n font-weight: 400;\n color: var(--tw-prose-counters);\n}\n.prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {\n color: var(--tw-prose-bullets);\n}\n.prose :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n color: var(--tw-prose-headings);\n font-weight: 600;\n margin-top: 1.25em;\n}\n.prose :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n border-color: var(--tw-prose-hr);\n border-top-width: 1px;\n margin-top: 3em;\n margin-bottom: 3em;\n}\n.prose :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n font-weight: 500;\n font-style: italic;\n color: var(--tw-prose-quotes);\n border-inline-start-width: 0.25rem;\n border-inline-start-color: var(--tw-prose-quote-borders);\n quotes: "\\201C""\\201D""\\2018""\\2019";\n margin-top: 1.6em;\n margin-bottom: 1.6em;\n padding-inline-start: 1em;\n}\n.prose :where(blockquote p:first-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {\n content: open-quote;\n}\n.prose :where(blockquote p:last-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {\n content: close-quote;\n}\n.prose :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n color: var(--tw-prose-headings);\n font-weight: 800;\n font-size: 2.25em;\n margin-top: 0;\n margin-bottom: 0.8888889em;\n line-height: 1.1111111;\n}\n.prose :where(h1 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n font-weight: 900;\n color: inherit;\n}\n.prose :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n color: var(--tw-prose-headings);\n font-weight: 700;\n font-size: 1.5em;\n margin-top: 2em;\n margin-bottom: 1em;\n line-height: 1.3333333;\n}\n.prose :where(h2 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n font-weight: 800;\n color: inherit;\n}\n.prose :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n color: var(--tw-prose-headings);\n font-weight: 600;\n font-size: 1.25em;\n margin-top: 1.6em;\n margin-bottom: 0.6em;\n line-height: 1.6;\n}\n.prose :where(h3 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n font-weight: 700;\n color: inherit;\n}\n.prose :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n color: var(--tw-prose-headings);\n font-weight: 600;\n margin-top: 1.5em;\n margin-bottom: 0.5em;\n line-height: 1.5;\n}\n.prose :where(h4 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n font-weight: 700;\n color: inherit;\n}\n.prose :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 2em;\n margin-bottom: 2em;\n}\n.prose :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n display: block;\n margin-top: 2em;\n margin-bottom: 2em;\n}\n.prose :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 2em;\n margin-bottom: 2em;\n}\n.prose :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n font-weight: 500;\n font-family: inherit;\n color: var(--tw-prose-kbd);\n box-shadow: 0 0 0 1px var(--tw-prose-kbd-shadows), 0 3px 0 var(--tw-prose-kbd-shadows);\n font-size: 0.875em;\n border-radius: 0.3125rem;\n padding-top: 0.1875em;\n padding-inline-end: 0.375em;\n padding-bottom: 0.1875em;\n padding-inline-start: 0.375em;\n}\n.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n color: var(--tw-prose-code);\n font-weight: 600;\n font-size: 0.875em;\n}\n.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {\n content: "`";\n}\n.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {\n content: "`";\n}\n.prose :where(a code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n color: inherit;\n}\n.prose :where(h1 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n color: inherit;\n}\n.prose :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n color: inherit;\n font-size: 0.875em;\n}\n.prose :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n color: inherit;\n font-size: 0.9em;\n}\n.prose :where(h4 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n color: inherit;\n}\n.prose :where(blockquote code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n color: inherit;\n}\n.prose :where(thead th code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n color: inherit;\n}\n.prose :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n color: var(--tw-prose-pre-code);\n background-color: var(--tw-prose-pre-bg);\n overflow-x: auto;\n font-weight: 400;\n font-size: 0.875em;\n line-height: 1.7142857;\n margin-top: 1.7142857em;\n margin-bottom: 1.7142857em;\n border-radius: 0.375rem;\n padding-top: 0.8571429em;\n padding-inline-end: 1.1428571em;\n padding-bottom: 0.8571429em;\n padding-inline-start: 1.1428571em;\n}\n.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n background-color: transparent;\n border-width: 0;\n border-radius: 0;\n padding: 0;\n font-weight: inherit;\n color: inherit;\n font-size: inherit;\n font-family: inherit;\n line-height: inherit;\n}\n.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {\n content: none;\n}\n.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {\n content: none;\n}\n.prose :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n width: 100%;\n table-layout: auto;\n margin-top: 2em;\n margin-bottom: 2em;\n font-size: 0.875em;\n line-height: 1.7142857;\n}\n.prose :where(thead):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n border-bottom-width: 1px;\n border-bottom-color: var(--tw-prose-th-borders);\n}\n.prose :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n color: var(--tw-prose-headings);\n font-weight: 600;\n vertical-align: bottom;\n padding-inline-end: 0.5714286em;\n padding-bottom: 0.5714286em;\n padding-inline-start: 0.5714286em;\n}\n.prose :where(tbody tr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n border-bottom-width: 1px;\n border-bottom-color: var(--tw-prose-td-borders);\n}\n.prose :where(tbody tr:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n border-bottom-width: 0;\n}\n.prose :where(tbody td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n vertical-align: baseline;\n}\n.prose :where(tfoot):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n border-top-width: 1px;\n border-top-color: var(--tw-prose-th-borders);\n}\n.prose :where(tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n vertical-align: top;\n}\n.prose :where(th, td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n text-align: start;\n}\n.prose :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0;\n margin-bottom: 0;\n}\n.prose :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n color: var(--tw-prose-captions);\n font-size: 0.875em;\n line-height: 1.4285714;\n margin-top: 0.8571429em;\n}\n.prose {\n --tw-prose-body: #374151;\n --tw-prose-headings: #111827;\n --tw-prose-lead: #4b5563;\n --tw-prose-links: #111827;\n --tw-prose-bold: #111827;\n --tw-prose-counters: #6b7280;\n --tw-prose-bullets: #d1d5db;\n --tw-prose-hr: #e5e7eb;\n --tw-prose-quotes: #111827;\n --tw-prose-quote-borders: #e5e7eb;\n --tw-prose-captions: #6b7280;\n --tw-prose-kbd: #111827;\n --tw-prose-kbd-shadows: rgb(17 24 39 / 10%);\n --tw-prose-code: #111827;\n --tw-prose-pre-code: #e5e7eb;\n --tw-prose-pre-bg: #1f2937;\n --tw-prose-th-borders: #d1d5db;\n --tw-prose-td-borders: #e5e7eb;\n --tw-prose-invert-body: #d1d5db;\n --tw-prose-invert-headings: #fff;\n --tw-prose-invert-lead: #9ca3af;\n --tw-prose-invert-links: #fff;\n --tw-prose-invert-bold: #fff;\n --tw-prose-invert-counters: #9ca3af;\n --tw-prose-invert-bullets: #4b5563;\n --tw-prose-invert-hr: #374151;\n --tw-prose-invert-quotes: #f3f4f6;\n --tw-prose-invert-quote-borders: #374151;\n --tw-prose-invert-captions: #9ca3af;\n --tw-prose-invert-kbd: #fff;\n --tw-prose-invert-kbd-shadows: rgb(255 255 255 / 10%);\n --tw-prose-invert-code: #fff;\n --tw-prose-invert-pre-code: #d1d5db;\n --tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);\n --tw-prose-invert-th-borders: #4b5563;\n --tw-prose-invert-td-borders: #374151;\n font-size: 1rem;\n line-height: 1.75;\n}\n.prose :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0;\n margin-bottom: 0;\n}\n.prose :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0.5em;\n margin-bottom: 0.5em;\n}\n.prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n padding-inline-start: 0.375em;\n}\n.prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n padding-inline-start: 0.375em;\n}\n.prose :where(.prose > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0.75em;\n margin-bottom: 0.75em;\n}\n.prose :where(.prose > ul > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 1.25em;\n}\n.prose :where(.prose > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-bottom: 1.25em;\n}\n.prose :where(.prose > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 1.25em;\n}\n.prose :where(.prose > ol > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-bottom: 1.25em;\n}\n.prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0.75em;\n margin-bottom: 0.75em;\n}\n.prose :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 1.25em;\n margin-bottom: 1.25em;\n}\n.prose :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0.5em;\n padding-inline-start: 1.625em;\n}\n.prose :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0;\n}\n.prose :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0;\n}\n.prose :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0;\n}\n.prose :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0;\n}\n.prose :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n padding-inline-start: 0;\n}\n.prose :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n padding-inline-end: 0;\n}\n.prose :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n padding-top: 0.5714286em;\n padding-inline-end: 0.5714286em;\n padding-bottom: 0.5714286em;\n padding-inline-start: 0.5714286em;\n}\n.prose :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n padding-inline-start: 0;\n}\n.prose :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n padding-inline-end: 0;\n}\n.prose :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 2em;\n margin-bottom: 2em;\n}\n.prose :where(.prose > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0;\n}\n.prose :where(.prose > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-bottom: 0;\n}\n.prose-sm {\n font-size: 0.875rem;\n line-height: 1.6;\n}\n.prose-sm :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0.5em;\n margin-bottom: 0.5em;\n line-height: 1.5;\n}\n.prose-sm :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n font-size: 1.2857143em;\n line-height: 1.5555556;\n margin-top: 0.8888889em;\n margin-bottom: 0.8888889em;\n}\n.prose-sm :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0.5em;\n margin-bottom: 0.5em;\n padding-inline-start: 1.1111111em;\n padding-left: 1em;\n border-left-width: 0.25rem;\n font-style: italic;\n color: inherit;\n}\n.prose-sm :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n font-size: 2.1428571em;\n margin-top: 0.75em;\n margin-bottom: 0.5em;\n line-height: 1.2;\n}\n.prose-sm :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n font-size: 1.4285714em;\n margin-top: 0.65em;\n margin-bottom: 0.45em;\n line-height: 1.25;\n}\n.prose-sm :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n font-size: 1.2857143em;\n margin-top: 0.6em;\n margin-bottom: 0.4em;\n line-height: 1.3;\n}\n.prose-sm :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0.5em;\n margin-bottom: 0.35em;\n line-height: 1.35;\n}\n.prose-sm :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 1.7142857em;\n margin-bottom: 1.7142857em;\n}\n.prose-sm :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 1.7142857em;\n margin-bottom: 1.7142857em;\n}\n.prose-sm :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0;\n margin-bottom: 0;\n}\n.prose-sm :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 1.7142857em;\n margin-bottom: 1.7142857em;\n}\n.prose-sm :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n font-size: 0.8571429em;\n border-radius: 0.3125rem;\n padding-top: 0.1428571em;\n padding-inline-end: 0.3571429em;\n padding-bottom: 0.1428571em;\n padding-inline-start: 0.3571429em;\n}\n.prose-sm :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n font-size: 0.8571429em;\n}\n.prose-sm :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n font-size: 0.9em;\n}\n.prose-sm :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n font-size: 0.8888889em;\n}\n.prose-sm :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n font-size: 0.8571429em;\n line-height: 1.45;\n margin-top: 0.5em;\n margin-bottom: 0.5em;\n border-radius: 0.25rem;\n padding-top: 0.6666667em;\n padding-inline-end: 1em;\n padding-bottom: 0.6666667em;\n padding-inline-start: 1em;\n box-sizing: border-box;\n max-width: 100%;\n overflow-x: auto;\n white-space: pre-wrap;\n overflow-wrap: break-word;\n}\n.prose-sm :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0.5em;\n margin-bottom: 0.5em;\n padding-inline-start: 1.5714286em;\n padding-left: 1.25em;\n}\n.prose-sm :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0.5em;\n margin-bottom: 0.5em;\n padding-inline-start: 1.5714286em;\n padding-left: 1.25em;\n}\n.prose-sm :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0.25em;\n margin-bottom: 0.25em;\n}\n.prose-sm :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n padding-inline-start: 0.4285714em;\n}\n.prose-sm :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n padding-inline-start: 0.4285714em;\n}\n.prose-sm :where(.prose-sm > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0.5714286em;\n margin-bottom: 0.5714286em;\n}\n.prose-sm :where(.prose-sm > ul > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 1.1428571em;\n}\n.prose-sm :where(.prose-sm > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-bottom: 1.1428571em;\n}\n.prose-sm :where(.prose-sm > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 1.1428571em;\n}\n.prose-sm :where(.prose-sm > ol > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-bottom: 1.1428571em;\n}\n.prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0.25em;\n margin-bottom: 0.25em;\n}\n.prose-sm :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 1.1428571em;\n margin-bottom: 1.1428571em;\n}\n.prose-sm :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 1.1428571em;\n}\n.prose-sm :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0.2857143em;\n padding-inline-start: 1.5714286em;\n}\n.prose-sm :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 2em;\n margin-bottom: 2em;\n}\n.prose-sm :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0;\n}\n.prose-sm :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0;\n}\n.prose-sm :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0;\n}\n.prose-sm :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0;\n}\n.prose-sm :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n font-size: 0.8571429em;\n line-height: 1.5;\n}\n.prose-sm :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n padding-inline-end: 1em;\n padding-bottom: 0.6666667em;\n padding-inline-start: 1em;\n}\n.prose-sm :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n padding-inline-start: 0;\n}\n.prose-sm :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n padding-inline-end: 0;\n}\n.prose-sm :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n padding-top: 0.6666667em;\n padding-inline-end: 1em;\n padding-bottom: 0.6666667em;\n padding-inline-start: 1em;\n}\n.prose-sm :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n padding-inline-start: 0;\n}\n.prose-sm :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n padding-inline-end: 0;\n}\n.prose-sm :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 1.7142857em;\n margin-bottom: 1.7142857em;\n}\n.prose-sm :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0;\n margin-bottom: 0;\n}\n.prose-sm :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n font-size: 0.8571429em;\n line-height: 1.3333333;\n margin-top: 0.6666667em;\n}\n.prose-sm :where(.prose-sm > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0;\n}\n.prose-sm :where(.prose-sm > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-bottom: 0;\n}\n.prose-sm {\n max-width: none;\n}\n.prose-sm :where(h5):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0.45em;\n margin-bottom: 0.3em;\n line-height: 1.4;\n}\n.prose-sm :where(h6):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0.4em;\n margin-bottom: 0.25em;\n line-height: 1.45;\n}\n.prose-sm :where(a):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n color: var(--tw-prose-links);\n text-decoration: underline;\n font-weight: 500;\n}\n.prose-sm :where(a):not(:where([class~="not-prose"],[class~="not-prose"] *)):hover {\n color: var(--tw-prose-links-hover, var(--tw-prose-links));\n text-decoration: none;\n}\n.prose-base {\n font-size: 1rem;\n line-height: 1.6;\n}\n.prose-base :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0.5em;\n margin-bottom: 0.5em;\n line-height: 1.5;\n}\n.prose-base :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n font-size: 1.25em;\n line-height: 1.6;\n margin-top: 1.2em;\n margin-bottom: 1.2em;\n}\n.prose-base :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0.5em;\n margin-bottom: 0.5em;\n padding-inline-start: 1em;\n padding-left: 1em;\n border-left-width: 0.25rem;\n font-style: italic;\n color: inherit;\n}\n.prose-base :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n font-size: 2.25em;\n margin-top: 0.75em;\n margin-bottom: 0.5em;\n line-height: 1.2;\n}\n.prose-base :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n font-size: 1.5em;\n margin-top: 0.65em;\n margin-bottom: 0.45em;\n line-height: 1.25;\n}\n.prose-base :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n font-size: 1.25em;\n margin-top: 0.6em;\n margin-bottom: 0.4em;\n line-height: 1.3;\n}\n.prose-base :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0.5em;\n margin-bottom: 0.35em;\n line-height: 1.35;\n}\n.prose-base :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 2em;\n margin-bottom: 2em;\n}\n.prose-base :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 2em;\n margin-bottom: 2em;\n}\n.prose-base :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0;\n margin-bottom: 0;\n}\n.prose-base :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 2em;\n margin-bottom: 2em;\n}\n.prose-base :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n font-size: 0.875em;\n border-radius: 0.3125rem;\n padding-top: 0.1875em;\n padding-inline-end: 0.375em;\n padding-bottom: 0.1875em;\n padding-inline-start: 0.375em;\n}\n.prose-base :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n font-size: 0.875em;\n}\n.prose-base :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n font-size: 0.875em;\n}\n.prose-base :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n font-size: 0.9em;\n}\n.prose-base :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n font-size: 0.875em;\n line-height: 1.45;\n margin-top: 0.5em;\n margin-bottom: 0.5em;\n border-radius: 0.375rem;\n padding-top: 0.8571429em;\n padding-inline-end: 1.1428571em;\n padding-bottom: 0.8571429em;\n padding-inline-start: 1.1428571em;\n box-sizing: border-box;\n max-width: 100%;\n overflow-x: auto;\n white-space: pre-wrap;\n overflow-wrap: break-word;\n}\n.prose-base :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0.5em;\n margin-bottom: 0.5em;\n padding-inline-start: 1.625em;\n padding-left: 1.25em;\n}\n.prose-base :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0.5em;\n margin-bottom: 0.5em;\n padding-inline-start: 1.625em;\n padding-left: 1.25em;\n}\n.prose-base :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0.25em;\n margin-bottom: 0.25em;\n}\n.prose-base :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n padding-inline-start: 0.375em;\n}\n.prose-base :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n padding-inline-start: 0.375em;\n}\n.prose-base :where(.prose-base > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0.75em;\n margin-bottom: 0.75em;\n}\n.prose-base :where(.prose-base > ul > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 1.25em;\n}\n.prose-base :where(.prose-base > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-bottom: 1.25em;\n}\n.prose-base :where(.prose-base > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 1.25em;\n}\n.prose-base :where(.prose-base > ol > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-bottom: 1.25em;\n}\n.prose-base :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0.25em;\n margin-bottom: 0.25em;\n}\n.prose-base :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 1.25em;\n margin-bottom: 1.25em;\n}\n.prose-base :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 1.25em;\n}\n.prose-base :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0.5em;\n padding-inline-start: 1.625em;\n}\n.prose-base :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 2em;\n margin-bottom: 2em;\n}\n.prose-base :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0;\n}\n.prose-base :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0;\n}\n.prose-base :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0;\n}\n.prose-base :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0;\n}\n.prose-base :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n font-size: 0.875em;\n line-height: 1.7142857;\n}\n.prose-base :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n padding-inline-end: 0.5714286em;\n padding-bottom: 0.5714286em;\n padding-inline-start: 0.5714286em;\n}\n.prose-base :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n padding-inline-start: 0;\n}\n.prose-base :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n padding-inline-end: 0;\n}\n.prose-base :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n padding-top: 0.5714286em;\n padding-inline-end: 0.5714286em;\n padding-bottom: 0.5714286em;\n padding-inline-start: 0.5714286em;\n}\n.prose-base :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n padding-inline-start: 0;\n}\n.prose-base :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n padding-inline-end: 0;\n}\n.prose-base :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 2em;\n margin-bottom: 2em;\n}\n.prose-base :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0;\n margin-bottom: 0;\n}\n.prose-base :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n font-size: 0.875em;\n line-height: 1.4285714;\n margin-top: 0.8571429em;\n}\n.prose-base :where(.prose-base > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0;\n}\n.prose-base :where(.prose-base > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-bottom: 0;\n}\n.prose-base {\n max-width: none;\n}\n.prose-base :where(h5):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0.45em;\n margin-bottom: 0.3em;\n line-height: 1.4;\n}\n.prose-base :where(h6):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0.4em;\n margin-bottom: 0.25em;\n line-height: 1.45;\n}\n.prose-base :where(a):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n color: var(--tw-prose-links);\n text-decoration: underline;\n font-weight: 500;\n}\n.prose-base :where(a):not(:where([class~="not-prose"],[class~="not-prose"] *)):hover {\n color: var(--tw-prose-links-hover, var(--tw-prose-links));\n text-decoration: none;\n}\n.prose-lg {\n font-size: 1.125rem;\n line-height: 1.6;\n}\n.prose-lg :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0.5em;\n margin-bottom: 0.5em;\n line-height: 1.5;\n}\n.prose-lg :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n font-size: 1.2222222em;\n line-height: 1.4545455;\n margin-top: 1.0909091em;\n margin-bottom: 1.0909091em;\n}\n.prose-lg :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0.5em;\n margin-bottom: 0.5em;\n padding-inline-start: 1em;\n padding-left: 1em;\n border-left-width: 0.25rem;\n font-style: italic;\n color: inherit;\n}\n.prose-lg :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n font-size: 2.6666667em;\n margin-top: 0.75em;\n margin-bottom: 0.5em;\n line-height: 1.2;\n}\n.prose-lg :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n font-size: 1.6666667em;\n margin-top: 0.65em;\n margin-bottom: 0.45em;\n line-height: 1.25;\n}\n.prose-lg :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n font-size: 1.3333333em;\n margin-top: 0.6em;\n margin-bottom: 0.4em;\n line-height: 1.3;\n}\n.prose-lg :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0.5em;\n margin-bottom: 0.35em;\n line-height: 1.35;\n}\n.prose-lg :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 1.7777778em;\n margin-bottom: 1.7777778em;\n}\n.prose-lg :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 1.7777778em;\n margin-bottom: 1.7777778em;\n}\n.prose-lg :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0;\n margin-bottom: 0;\n}\n.prose-lg :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 1.7777778em;\n margin-bottom: 1.7777778em;\n}\n.prose-lg :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n font-size: 0.8888889em;\n border-radius: 0.3125rem;\n padding-top: 0.2222222em;\n padding-inline-end: 0.4444444em;\n padding-bottom: 0.2222222em;\n padding-inline-start: 0.4444444em;\n}\n.prose-lg :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n font-size: 0.8888889em;\n}\n.prose-lg :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n font-size: 0.8666667em;\n}\n.prose-lg :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n font-size: 0.875em;\n}\n.prose-lg :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n font-size: 0.8888889em;\n line-height: 1.45;\n margin-top: 0.5em;\n margin-bottom: 0.5em;\n border-radius: 0.375rem;\n padding-top: 1em;\n padding-inline-end: 1.5em;\n padding-bottom: 1em;\n padding-inline-start: 1.5em;\n box-sizing: border-box;\n max-width: 100%;\n overflow-x: auto;\n white-space: pre-wrap;\n overflow-wrap: break-word;\n}\n.prose-lg :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0.5em;\n margin-bottom: 0.5em;\n padding-inline-start: 1.5555556em;\n padding-left: 1.25em;\n}\n.prose-lg :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0.5em;\n margin-bottom: 0.5em;\n padding-inline-start: 1.5555556em;\n padding-left: 1.25em;\n}\n.prose-lg :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0.25em;\n margin-bottom: 0.25em;\n}\n.prose-lg :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n padding-inline-start: 0.4444444em;\n}\n.prose-lg :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n padding-inline-start: 0.4444444em;\n}\n.prose-lg :where(.prose-lg > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0.8888889em;\n margin-bottom: 0.8888889em;\n}\n.prose-lg :where(.prose-lg > ul > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 1.3333333em;\n}\n.prose-lg :where(.prose-lg > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-bottom: 1.3333333em;\n}\n.prose-lg :where(.prose-lg > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 1.3333333em;\n}\n.prose-lg :where(.prose-lg > ol > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-bottom: 1.3333333em;\n}\n.prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0.25em;\n margin-bottom: 0.25em;\n}\n.prose-lg :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 1.3333333em;\n margin-bottom: 1.3333333em;\n}\n.prose-lg :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 1.3333333em;\n}\n.prose-lg :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0.6666667em;\n padding-inline-start: 1.5555556em;\n}\n.prose-lg :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 2em;\n margin-bottom: 2em;\n}\n.prose-lg :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0;\n}\n.prose-lg :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0;\n}\n.prose-lg :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0;\n}\n.prose-lg :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0;\n}\n.prose-lg :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n font-size: 0.8888889em;\n line-height: 1.5;\n}\n.prose-lg :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n padding-inline-end: 0.75em;\n padding-bottom: 0.75em;\n padding-inline-start: 0.75em;\n}\n.prose-lg :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n padding-inline-start: 0;\n}\n.prose-lg :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n padding-inline-end: 0;\n}\n.prose-lg :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n padding-top: 0.75em;\n padding-inline-end: 0.75em;\n padding-bottom: 0.75em;\n padding-inline-start: 0.75em;\n}\n.prose-lg :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n padding-inline-start: 0;\n}\n.prose-lg :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n padding-inline-end: 0;\n}\n.prose-lg :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 1.7777778em;\n margin-bottom: 1.7777778em;\n}\n.prose-lg :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0;\n margin-bottom: 0;\n}\n.prose-lg :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n font-size: 0.8888889em;\n line-height: 1.5;\n margin-top: 1em;\n}\n.prose-lg :where(.prose-lg > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0;\n}\n.prose-lg :where(.prose-lg > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-bottom: 0;\n}\n.prose-lg {\n max-width: none;\n}\n.prose-lg :where(h5):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0.45em;\n margin-bottom: 0.3em;\n line-height: 1.4;\n}\n.prose-lg :where(h6):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0.4em;\n margin-bottom: 0.25em;\n line-height: 1.45;\n}\n.prose-lg :where(a):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n color: var(--tw-prose-links);\n text-decoration: underline;\n font-weight: 500;\n}\n.prose-lg :where(a):not(:where([class~="not-prose"],[class~="not-prose"] *)):hover {\n color: var(--tw-prose-links-hover, var(--tw-prose-links));\n text-decoration: none;\n}\n.prose-xl {\n font-size: 1.25rem;\n line-height: 1.6;\n}\n.prose-xl :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0.5em;\n margin-bottom: 0.5em;\n line-height: 1.5;\n}\n.prose-xl :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n font-size: 1.2em;\n line-height: 1.5;\n margin-top: 1em;\n margin-bottom: 1em;\n}\n.prose-xl :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0.5em;\n margin-bottom: 0.5em;\n padding-inline-start: 1.0666667em;\n padding-left: 1em;\n border-left-width: 0.25rem;\n font-style: italic;\n color: inherit;\n}\n.prose-xl :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n font-size: 2.8em;\n margin-top: 0.75em;\n margin-bottom: 0.5em;\n line-height: 1.2;\n}\n.prose-xl :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n font-size: 1.8em;\n margin-top: 0.65em;\n margin-bottom: 0.45em;\n line-height: 1.25;\n}\n.prose-xl :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n font-size: 1.5em;\n margin-top: 0.6em;\n margin-bottom: 0.4em;\n line-height: 1.3;\n}\n.prose-xl :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0.5em;\n margin-bottom: 0.35em;\n line-height: 1.35;\n}\n.prose-xl :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 2em;\n margin-bottom: 2em;\n}\n.prose-xl :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 2em;\n margin-bottom: 2em;\n}\n.prose-xl :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0;\n margin-bottom: 0;\n}\n.prose-xl :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 2em;\n margin-bottom: 2em;\n}\n.prose-xl :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n font-size: 0.9em;\n border-radius: 0.3125rem;\n padding-top: 0.25em;\n padding-inline-end: 0.4em;\n padding-bottom: 0.25em;\n padding-inline-start: 0.4em;\n}\n.prose-xl :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n font-size: 0.9em;\n}\n.prose-xl :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n font-size: 0.8611111em;\n}\n.prose-xl :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n font-size: 0.9em;\n}\n.prose-xl :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n font-size: 0.9em;\n line-height: 1.45;\n margin-top: 0.5em;\n margin-bottom: 0.5em;\n border-radius: 0.5rem;\n padding-top: 1.1111111em;\n padding-inline-end: 1.3333333em;\n padding-bottom: 1.1111111em;\n padding-inline-start: 1.3333333em;\n box-sizing: border-box;\n max-width: 100%;\n overflow-x: auto;\n white-space: pre-wrap;\n overflow-wrap: break-word;\n}\n.prose-xl :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0.5em;\n margin-bottom: 0.5em;\n padding-inline-start: 1.6em;\n padding-left: 1.25em;\n}\n.prose-xl :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0.5em;\n margin-bottom: 0.5em;\n padding-inline-start: 1.6em;\n padding-left: 1.25em;\n}\n.prose-xl :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0.25em;\n margin-bottom: 0.25em;\n}\n.prose-xl :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n padding-inline-start: 0.4em;\n}\n.prose-xl :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n padding-inline-start: 0.4em;\n}\n.prose-xl :where(.prose-xl > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0.8em;\n margin-bottom: 0.8em;\n}\n.prose-xl :where(.prose-xl > ul > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 1.2em;\n}\n.prose-xl :where(.prose-xl > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-bottom: 1.2em;\n}\n.prose-xl :where(.prose-xl > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 1.2em;\n}\n.prose-xl :where(.prose-xl > ol > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-bottom: 1.2em;\n}\n.prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0.25em;\n margin-bottom: 0.25em;\n}\n.prose-xl :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 1.2em;\n margin-bottom: 1.2em;\n}\n.prose-xl :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 1.2em;\n}\n.prose-xl :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0.6em;\n padding-inline-start: 1.6em;\n}\n.prose-xl :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 2em;\n margin-bottom: 2em;\n}\n.prose-xl :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0;\n}\n.prose-xl :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0;\n}\n.prose-xl :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0;\n}\n.prose-xl :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0;\n}\n.prose-xl :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n font-size: 0.9em;\n line-height: 1.5555556;\n}\n.prose-xl :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n padding-inline-end: 0.6666667em;\n padding-bottom: 0.8888889em;\n padding-inline-start: 0.6666667em;\n}\n.prose-xl :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n padding-inline-start: 0;\n}\n.prose-xl :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n padding-inline-end: 0;\n}\n.prose-xl :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n padding-top: 0.8888889em;\n padding-inline-end: 0.6666667em;\n padding-bottom: 0.8888889em;\n padding-inline-start: 0.6666667em;\n}\n.prose-xl :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n padding-inline-start: 0;\n}\n.prose-xl :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n padding-inline-end: 0;\n}\n.prose-xl :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 2em;\n margin-bottom: 2em;\n}\n.prose-xl :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0;\n margin-bottom: 0;\n}\n.prose-xl :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n font-size: 0.9em;\n line-height: 1.5555556;\n margin-top: 1em;\n}\n.prose-xl :where(.prose-xl > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0;\n}\n.prose-xl :where(.prose-xl > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-bottom: 0;\n}\n.prose-xl {\n max-width: none;\n}\n.prose-xl :where(h5):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0.45em;\n margin-bottom: 0.3em;\n line-height: 1.4;\n}\n.prose-xl :where(h6):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0.4em;\n margin-bottom: 0.25em;\n line-height: 1.45;\n}\n.prose-xl :where(a):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n color: var(--tw-prose-links);\n text-decoration: underline;\n font-weight: 500;\n}\n.prose-xl :where(a):not(:where([class~="not-prose"],[class~="not-prose"] *)):hover {\n color: var(--tw-prose-links-hover, var(--tw-prose-links));\n text-decoration: none;\n}\n.prose-2xl {\n font-size: 1.5rem;\n line-height: 1.6666667;\n}\n.prose-2xl :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 1.3333333em;\n margin-bottom: 1.3333333em;\n}\n.prose-2xl :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n font-size: 1.25em;\n line-height: 1.4666667;\n margin-top: 1.0666667em;\n margin-bottom: 1.0666667em;\n}\n.prose-2xl :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 1.7777778em;\n margin-bottom: 1.7777778em;\n padding-inline-start: 1.1111111em;\n}\n.prose-2xl :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n font-size: 2.6666667em;\n margin-top: 0;\n margin-bottom: 0.875em;\n line-height: 1;\n}\n.prose-2xl :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n font-size: 2em;\n margin-top: 1.5em;\n margin-bottom: 0.8333333em;\n line-height: 1.0833333;\n}\n.prose-2xl :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n font-size: 1.5em;\n margin-top: 1.5555556em;\n margin-bottom: 0.6666667em;\n line-height: 1.2222222;\n}\n.prose-2xl :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 1.6666667em;\n margin-bottom: 0.6666667em;\n line-height: 1.5;\n}\n.prose-2xl :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 2em;\n margin-bottom: 2em;\n}\n.prose-2xl :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 2em;\n margin-bottom: 2em;\n}\n.prose-2xl :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0;\n margin-bottom: 0;\n}\n.prose-2xl :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 2em;\n margin-bottom: 2em;\n}\n.prose-2xl :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n font-size: 0.8333333em;\n border-radius: 0.375rem;\n padding-top: 0.25em;\n padding-inline-end: 0.3333333em;\n padding-bottom: 0.25em;\n padding-inline-start: 0.3333333em;\n}\n.prose-2xl :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n font-size: 0.8333333em;\n}\n.prose-2xl :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n font-size: 0.875em;\n}\n.prose-2xl :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n font-size: 0.8888889em;\n}\n.prose-2xl :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n font-size: 0.8333333em;\n line-height: 1.8;\n margin-top: 2em;\n margin-bottom: 2em;\n border-radius: 0.5rem;\n padding-top: 1.2em;\n padding-inline-end: 1.6em;\n padding-bottom: 1.2em;\n padding-inline-start: 1.6em;\n}\n.prose-2xl :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 1.3333333em;\n margin-bottom: 1.3333333em;\n padding-inline-start: 1.5833333em;\n}\n.prose-2xl :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 1.3333333em;\n margin-bottom: 1.3333333em;\n padding-inline-start: 1.5833333em;\n}\n.prose-2xl :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0.5em;\n margin-bottom: 0.5em;\n}\n.prose-2xl :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n padding-inline-start: 0.4166667em;\n}\n.prose-2xl :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n padding-inline-start: 0.4166667em;\n}\n.prose-2xl :where(.prose-2xl > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0.8333333em;\n margin-bottom: 0.8333333em;\n}\n.prose-2xl :where(.prose-2xl > ul > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 1.3333333em;\n}\n.prose-2xl :where(.prose-2xl > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-bottom: 1.3333333em;\n}\n.prose-2xl :where(.prose-2xl > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 1.3333333em;\n}\n.prose-2xl :where(.prose-2xl > ol > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-bottom: 1.3333333em;\n}\n.prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0.6666667em;\n margin-bottom: 0.6666667em;\n}\n.prose-2xl :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 1.3333333em;\n margin-bottom: 1.3333333em;\n}\n.prose-2xl :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 1.3333333em;\n}\n.prose-2xl :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0.5em;\n padding-inline-start: 1.5833333em;\n}\n.prose-2xl :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 3em;\n margin-bottom: 3em;\n}\n.prose-2xl :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0;\n}\n.prose-2xl :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0;\n}\n.prose-2xl :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0;\n}\n.prose-2xl :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0;\n}\n.prose-2xl :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n font-size: 0.8333333em;\n line-height: 1.4;\n}\n.prose-2xl :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n padding-inline-end: 0.6em;\n padding-bottom: 0.8em;\n padding-inline-start: 0.6em;\n}\n.prose-2xl :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n padding-inline-start: 0;\n}\n.prose-2xl :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n padding-inline-end: 0;\n}\n.prose-2xl :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n padding-top: 0.8em;\n padding-inline-end: 0.6em;\n padding-bottom: 0.8em;\n padding-inline-start: 0.6em;\n}\n.prose-2xl :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n padding-inline-start: 0;\n}\n.prose-2xl :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n padding-inline-end: 0;\n}\n.prose-2xl :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 2em;\n margin-bottom: 2em;\n}\n.prose-2xl :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0;\n margin-bottom: 0;\n}\n.prose-2xl :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n font-size: 0.8333333em;\n line-height: 1.6;\n margin-top: 1em;\n}\n.prose-2xl :where(.prose-2xl > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-top: 0;\n}\n.prose-2xl :where(.prose-2xl > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {\n margin-bottom: 0;\n}\n.prose-slate {\n --tw-prose-body: #334155;\n --tw-prose-headings: #0f172a;\n --tw-prose-lead: #475569;\n --tw-prose-links: #0f172a;\n --tw-prose-bold: #0f172a;\n --tw-prose-counters: #64748b;\n --tw-prose-bullets: #cbd5e1;\n --tw-prose-hr: #e2e8f0;\n --tw-prose-quotes: #0f172a;\n --tw-prose-quote-borders: #e2e8f0;\n --tw-prose-captions: #64748b;\n --tw-prose-kbd: #0f172a;\n --tw-prose-kbd-shadows: rgb(15 23 42 / 10%);\n --tw-prose-code: #0f172a;\n --tw-prose-pre-code: #e2e8f0;\n --tw-prose-pre-bg: #1e293b;\n --tw-prose-th-borders: #cbd5e1;\n --tw-prose-td-borders: #e2e8f0;\n --tw-prose-invert-body: #cbd5e1;\n --tw-prose-invert-headings: #fff;\n --tw-prose-invert-lead: #94a3b8;\n --tw-prose-invert-links: #fff;\n --tw-prose-invert-bold: #fff;\n --tw-prose-invert-counters: #94a3b8;\n --tw-prose-invert-bullets: #475569;\n --tw-prose-invert-hr: #334155;\n --tw-prose-invert-quotes: #f1f5f9;\n --tw-prose-invert-quote-borders: #334155;\n --tw-prose-invert-captions: #94a3b8;\n --tw-prose-invert-kbd: #fff;\n --tw-prose-invert-kbd-shadows: rgb(255 255 255 / 10%);\n --tw-prose-invert-code: #fff;\n --tw-prose-invert-pre-code: #cbd5e1;\n --tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);\n --tw-prose-invert-th-borders: #475569;\n --tw-prose-invert-td-borders: #334155;\n}\n.prose-gray {\n --tw-prose-body: #374151;\n --tw-prose-headings: #111827;\n --tw-prose-lead: #4b5563;\n --tw-prose-links: #111827;\n --tw-prose-bold: #111827;\n --tw-prose-counters: #6b7280;\n --tw-prose-bullets: #d1d5db;\n --tw-prose-hr: #e5e7eb;\n --tw-prose-quotes: #111827;\n --tw-prose-quote-borders: #e5e7eb;\n --tw-prose-captions: #6b7280;\n --tw-prose-kbd: #111827;\n --tw-prose-kbd-shadows: rgb(17 24 39 / 10%);\n --tw-prose-code: #111827;\n --tw-prose-pre-code: #e5e7eb;\n --tw-prose-pre-bg: #1f2937;\n --tw-prose-th-borders: #d1d5db;\n --tw-prose-td-borders: #e5e7eb;\n --tw-prose-invert-body: #d1d5db;\n --tw-prose-invert-headings: #fff;\n --tw-prose-invert-lead: #9ca3af;\n --tw-prose-invert-links: #fff;\n --tw-prose-invert-bold: #fff;\n --tw-prose-invert-counters: #9ca3af;\n --tw-prose-invert-bullets: #4b5563;\n --tw-prose-invert-hr: #374151;\n --tw-prose-invert-quotes: #f3f4f6;\n --tw-prose-invert-quote-borders: #374151;\n --tw-prose-invert-captions: #9ca3af;\n --tw-prose-invert-kbd: #fff;\n --tw-prose-invert-kbd-shadows: rgb(255 255 255 / 10%);\n --tw-prose-invert-code: #fff;\n --tw-prose-invert-pre-code: #d1d5db;\n --tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);\n --tw-prose-invert-th-borders: #4b5563;\n --tw-prose-invert-td-borders: #374151;\n}\n.prose-zinc {\n --tw-prose-body: #3f3f46;\n --tw-prose-headings: #18181b;\n --tw-prose-lead: #52525b;\n --tw-prose-links: #18181b;\n --tw-prose-bold: #18181b;\n --tw-prose-counters: #71717a;\n --tw-prose-bullets: #d4d4d8;\n --tw-prose-hr: #e4e4e7;\n --tw-prose-quotes: #18181b;\n --tw-prose-quote-borders: #e4e4e7;\n --tw-prose-captions: #71717a;\n --tw-prose-kbd: #18181b;\n --tw-prose-kbd-shadows: rgb(24 24 27 / 10%);\n --tw-prose-code: #18181b;\n --tw-prose-pre-code: #e4e4e7;\n --tw-prose-pre-bg: #27272a;\n --tw-prose-th-borders: #d4d4d8;\n --tw-prose-td-borders: #e4e4e7;\n --tw-prose-invert-body: #d4d4d8;\n --tw-prose-invert-headings: #fff;\n --tw-prose-invert-lead: #a1a1aa;\n --tw-prose-invert-links: #fff;\n --tw-prose-invert-bold: #fff;\n --tw-prose-invert-counters: #a1a1aa;\n --tw-prose-invert-bullets: #52525b;\n --tw-prose-invert-hr: #3f3f46;\n --tw-prose-invert-quotes: #f4f4f5;\n --tw-prose-invert-quote-borders: #3f3f46;\n --tw-prose-invert-captions: #a1a1aa;\n --tw-prose-invert-kbd: #fff;\n --tw-prose-invert-kbd-shadows: rgb(255 255 255 / 10%);\n --tw-prose-invert-code: #fff;\n --tw-prose-invert-pre-code: #d4d4d8;\n --tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);\n --tw-prose-invert-th-borders: #52525b;\n --tw-prose-invert-td-borders: #3f3f46;\n}\n.prose-neutral {\n --tw-prose-body: #404040;\n --tw-prose-headings: #171717;\n --tw-prose-lead: #525252;\n --tw-prose-links: #171717;\n --tw-prose-bold: #171717;\n --tw-prose-counters: #737373;\n --tw-prose-bullets: #d4d4d4;\n --tw-prose-hr: #e5e5e5;\n --tw-prose-quotes: #171717;\n --tw-prose-quote-borders: #e5e5e5;\n --tw-prose-captions: #737373;\n --tw-prose-kbd: #171717;\n --tw-prose-kbd-shadows: rgb(23 23 23 / 10%);\n --tw-prose-code: #171717;\n --tw-prose-pre-code: #e5e5e5;\n --tw-prose-pre-bg: #262626;\n --tw-prose-th-borders: #d4d4d4;\n --tw-prose-td-borders: #e5e5e5;\n --tw-prose-invert-body: #d4d4d4;\n --tw-prose-invert-headings: #fff;\n --tw-prose-invert-lead: #a3a3a3;\n --tw-prose-invert-links: #fff;\n --tw-prose-invert-bold: #fff;\n --tw-prose-invert-counters: #a3a3a3;\n --tw-prose-invert-bullets: #525252;\n --tw-prose-invert-hr: #404040;\n --tw-prose-invert-quotes: #f5f5f5;\n --tw-prose-invert-quote-borders: #404040;\n --tw-prose-invert-captions: #a3a3a3;\n --tw-prose-invert-kbd: #fff;\n --tw-prose-invert-kbd-shadows: rgb(255 255 255 / 10%);\n --tw-prose-invert-code: #fff;\n --tw-prose-invert-pre-code: #d4d4d4;\n --tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);\n --tw-prose-invert-th-borders: #525252;\n --tw-prose-invert-td-borders: #404040;\n}\n.prose-stone {\n --tw-prose-body: #44403c;\n --tw-prose-headings: #1c1917;\n --tw-prose-lead: #57534e;\n --tw-prose-links: #1c1917;\n --tw-prose-bold: #1c1917;\n --tw-prose-counters: #78716c;\n --tw-prose-bullets: #d6d3d1;\n --tw-prose-hr: #e7e5e4;\n --tw-prose-quotes: #1c1917;\n --tw-prose-quote-borders: #e7e5e4;\n --tw-prose-captions: #78716c;\n --tw-prose-kbd: #1c1917;\n --tw-prose-kbd-shadows: rgb(28 25 23 / 10%);\n --tw-prose-code: #1c1917;\n --tw-prose-pre-code: #e7e5e4;\n --tw-prose-pre-bg: #292524;\n --tw-prose-th-borders: #d6d3d1;\n --tw-prose-td-borders: #e7e5e4;\n --tw-prose-invert-body: #d6d3d1;\n --tw-prose-invert-headings: #fff;\n --tw-prose-invert-lead: #a8a29e;\n --tw-prose-invert-links: #fff;\n --tw-prose-invert-bold: #fff;\n --tw-prose-invert-counters: #a8a29e;\n --tw-prose-invert-bullets: #57534e;\n --tw-prose-invert-hr: #44403c;\n --tw-prose-invert-quotes: #f5f5f4;\n --tw-prose-invert-quote-borders: #44403c;\n --tw-prose-invert-captions: #a8a29e;\n --tw-prose-invert-kbd: #fff;\n --tw-prose-invert-kbd-shadows: rgb(255 255 255 / 10%);\n --tw-prose-invert-code: #fff;\n --tw-prose-invert-pre-code: #d6d3d1;\n --tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);\n --tw-prose-invert-th-borders: #57534e;\n --tw-prose-invert-td-borders: #44403c;\n}\n.prose-red {\n --tw-prose-links: #dc2626;\n --tw-prose-invert-links: #ef4444;\n}\n.prose-orange {\n --tw-prose-links: #ea580c;\n --tw-prose-invert-links: #f97316;\n}\n.prose-amber {\n --tw-prose-links: #d97706;\n --tw-prose-invert-links: #f59e0b;\n}\n.prose-yellow {\n --tw-prose-links: #ca8a04;\n --tw-prose-invert-links: #eab308;\n}\n.prose-lime {\n --tw-prose-links: #65a30d;\n --tw-prose-invert-links: #84cc16;\n}\n.prose-green {\n --tw-prose-links: #16a34a;\n --tw-prose-invert-links: #22c55e;\n}\n.prose-emerald {\n --tw-prose-links: #059669;\n --tw-prose-invert-links: #10b981;\n}\n.prose-teal {\n --tw-prose-links: #0d9488;\n --tw-prose-invert-links: #14b8a6;\n}\n.prose-cyan {\n --tw-prose-links: #0891b2;\n --tw-prose-invert-links: #06b6d4;\n}\n.prose-sky {\n --tw-prose-links: #0284c7;\n --tw-prose-invert-links: #0ea5e9;\n}\n.prose-blue {\n --tw-prose-links: #2563eb;\n --tw-prose-invert-links: #3b82f6;\n}\n.prose-indigo {\n --tw-prose-links: #4f46e5;\n --tw-prose-invert-links: #6366f1;\n}\n.prose-violet {\n --tw-prose-links: #7c3aed;\n --tw-prose-invert-links: #8b5cf6;\n}\n.prose-purple {\n --tw-prose-links: #9333ea;\n --tw-prose-invert-links: #a855f7;\n}\n.prose-fuchsia {\n --tw-prose-links: #c026d3;\n --tw-prose-invert-links: #d946ef;\n}\n.prose-pink {\n --tw-prose-links: #db2777;\n --tw-prose-invert-links: #ec4899;\n}\n.prose-rose {\n --tw-prose-links: #e11d48;\n --tw-prose-invert-links: #f43f5e;\n}\n.prose-invert {\n --tw-prose-body: var(--tw-prose-invert-body);\n --tw-prose-headings: var(--tw-prose-invert-headings);\n --tw-prose-lead: var(--tw-prose-invert-lead);\n --tw-prose-links: var(--tw-prose-invert-links);\n --tw-prose-bold: var(--tw-prose-invert-bold);\n --tw-prose-counters: var(--tw-prose-invert-counters);\n --tw-prose-bullets: var(--tw-prose-invert-bullets);\n --tw-prose-hr: var(--tw-prose-invert-hr);\n --tw-prose-quotes: var(--tw-prose-invert-quotes);\n --tw-prose-quote-borders: var(--tw-prose-invert-quote-borders);\n --tw-prose-captions: var(--tw-prose-invert-captions);\n --tw-prose-kbd: var(--tw-prose-invert-kbd);\n --tw-prose-kbd-shadows: var(--tw-prose-invert-kbd-shadows);\n --tw-prose-code: var(--tw-prose-invert-code);\n --tw-prose-pre-code: var(--tw-prose-invert-pre-code);\n --tw-prose-pre-bg: var(--tw-prose-invert-pre-bg);\n --tw-prose-th-borders: var(--tw-prose-invert-th-borders);\n --tw-prose-td-borders: var(--tw-prose-invert-td-borders);\n}\n.prose-inherit {\n --tw-prose-body: inherit;\n --tw-prose-headings: inherit;\n --tw-prose-lead: inherit;\n --tw-prose-links: inherit;\n --tw-prose-bold: inherit;\n --tw-prose-counters: inherit;\n --tw-prose-bullets: inherit;\n}\n.visible {\n visibility: visible;\n}\n.static {\n position: static;\n}\n.fixed {\n position: fixed;\n}\n.absolute {\n position: absolute;\n}\n.relative {\n position: relative;\n}\n.left-0 {\n left: 0px;\n}\n.right-0 {\n right: 0px;\n}\n.top-\\[13px\\] {\n top: 13px;\n}\n.z-\\[1\\] {\n z-index: 1;\n}\n.m-0 {\n margin: 0px;\n}\n.mx-auto {\n margin-left: auto;\n margin-right: auto;\n}\n.my-2 {\n margin-top: 0.5rem;\n margin-bottom: 0.5rem;\n}\n.my-6 {\n margin-top: 1.5rem;\n margin-bottom: 1.5rem;\n}\n.mb-0 {\n margin-bottom: 0px;\n}\n.mb-1 {\n margin-bottom: 0.25rem;\n}\n.mb-1\\.5 {\n margin-bottom: 0.375rem;\n}\n.mb-2 {\n margin-bottom: 0.5rem;\n}\n.mb-3 {\n margin-bottom: 0.75rem;\n}\n.mb-4 {\n margin-bottom: 1rem;\n}\n.mb-5 {\n margin-bottom: 1.25rem;\n}\n.mb-6 {\n margin-bottom: 1.5rem;\n}\n.mr-2 {\n margin-right: 0.5rem;\n}\n.mt-1 {\n margin-top: 0.25rem;\n}\n.mt-2 {\n margin-top: 0.5rem;\n}\n.mt-3 {\n margin-top: 0.75rem;\n}\n.mt-6 {\n margin-top: 1.5rem;\n}\n.block {\n display: block;\n}\n.inline-block {\n display: inline-block;\n}\n.inline {\n display: inline;\n}\n.flex {\n display: flex;\n}\n.grid {\n display: grid;\n}\n.contents {\n display: contents;\n}\n.hidden {\n display: none;\n}\n.h-1\\.5 {\n height: 0.375rem;\n}\n.h-10 {\n height: 2.5rem;\n}\n.h-12 {\n height: 3rem;\n}\n.h-16 {\n height: 4rem;\n}\n.h-2 {\n height: 0.5rem;\n}\n.h-8 {\n height: 2rem;\n}\n.h-full {\n height: 100%;\n}\n.h-px {\n height: 1px;\n}\n.w-14 {\n width: 3.5rem;\n}\n.w-16 {\n width: 4rem;\n}\n.w-2 {\n width: 0.5rem;\n}\n.w-3 {\n width: 0.75rem;\n}\n.w-4 {\n width: 1rem;\n}\n.w-5 {\n width: 1.25rem;\n}\n.w-6 {\n width: 1.5rem;\n}\n.w-7 {\n width: 1.75rem;\n}\n.w-9 {\n width: 2.25rem;\n}\n.w-full {\n width: 100%;\n}\n.flex-1 {\n flex: 1 1 0%;\n}\n.transform {\n 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));\n}\n@keyframes bounce2 {\n 0% {\n transform: translateY(-6px);\n }\n 100% {\n transform: translateY(10);\n }\n}\n.animate-bounce2 {\n animation: bounce2 1s ease-in-out infinite alternate;\n}\n@keyframes fade-in {\n 0% {\n opacity: 0;\n }\n 100% {\n opacity: 1;\n }\n}\n.animate-fade-in {\n animation: fade-in 0.5s ease-in-out;\n}\n@keyframes pulse {\n 50% {\n opacity: .5;\n }\n}\n.animate-pulse {\n animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;\n}\n.cursor-pointer {\n cursor: pointer;\n}\n.resize {\n resize: both;\n}\n.grid-cols-2 {\n grid-template-columns: repeat(2, minmax(0, 1fr));\n}\n.grid-cols-\\[max-content\\2c auto\\2c max-content\\] {\n grid-template-columns: max-content auto max-content;\n}\n.flex-col {\n flex-direction: column;\n}\n.flex-col-reverse {\n flex-direction: column-reverse;\n}\n.items-start {\n align-items: flex-start;\n}\n.items-center {\n align-items: center;\n}\n.justify-end {\n justify-content: flex-end;\n}\n.justify-center {\n justify-content: center;\n}\n.justify-between {\n justify-content: space-between;\n}\n.gap-2 {\n gap: 0.5rem;\n}\n.gap-3 {\n gap: 0.75rem;\n}\n.space-y-4 > :not([hidden]) ~ :not([hidden]) {\n --tw-space-y-reverse: 0;\n margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));\n margin-bottom: calc(1rem * var(--tw-space-y-reverse));\n}\n.overflow-hidden {\n overflow: hidden;\n}\n.truncate {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n.break-all {\n word-break: break-all;\n}\n.\\!rounded-10 {\n border-radius: 10px !important;\n}\n.\\!rounded-12 {\n border-radius: 12px !important;\n}\n.rounded {\n border-radius: 0.25rem;\n}\n.rounded-4 {\n border-radius: 4px;\n}\n.rounded-full {\n border-radius: 9999px;\n}\n.rounded-lg {\n border-radius: 0.5rem;\n}\n.rounded-xl {\n border-radius: 0.75rem;\n}\n.border {\n border-width: 1px;\n}\n.border-2 {\n border-width: 2px;\n}\n.border-dashed {\n border-style: dashed;\n}\n.border-blue-60 {\n --tw-border-opacity: 1;\n border-color: rgb(55 133 251 / var(--tw-border-opacity, 1));\n}\n.border-neutral-80 {\n --tw-border-opacity: 1;\n border-color: rgb(189 206 219 / var(--tw-border-opacity, 1));\n}\n.border-neutral-90 {\n --tw-border-opacity: 1;\n border-color: rgb(222 231 237 / var(--tw-border-opacity, 1));\n}\n.border-red-55 {\n --tw-border-opacity: 1;\n border-color: rgb(226 54 54 / var(--tw-border-opacity, 1));\n}\n.border-yellow-55 {\n --tw-border-opacity: 1;\n border-color: rgb(255 163 26 / var(--tw-border-opacity, 1));\n}\n.bg-blue-95 {\n --tw-bg-opacity: 1;\n background-color: rgb(230 240 254 / var(--tw-bg-opacity, 1));\n}\n.bg-green-45 {\n --tw-bg-opacity: 1;\n background-color: rgb(49 180 82 / var(--tw-bg-opacity, 1));\n}\n.bg-green-54 {\n --tw-bg-opacity: 1;\n background-color: rgb(71 205 104 / var(--tw-bg-opacity, 1));\n}\n.bg-green-95 {\n --tw-bg-opacity: 1;\n background-color: rgb(235 250 239 / var(--tw-bg-opacity, 1));\n}\n.bg-neutral-80 {\n --tw-bg-opacity: 1;\n background-color: rgb(189 206 219 / var(--tw-bg-opacity, 1));\n}\n.bg-neutral-90 {\n --tw-bg-opacity: 1;\n background-color: rgb(222 231 237 / var(--tw-bg-opacity, 1));\n}\n.bg-neutral-95 {\n --tw-bg-opacity: 1;\n background-color: rgb(238 243 246 / var(--tw-bg-opacity, 1));\n}\n.bg-neutral-98 {\n --tw-bg-opacity: 1;\n background-color: rgb(248 250 251 / var(--tw-bg-opacity, 1));\n}\n.bg-red-55 {\n --tw-bg-opacity: 1;\n background-color: rgb(226 54 54 / var(--tw-bg-opacity, 1));\n}\n.bg-red-65 {\n --tw-bg-opacity: 1;\n background-color: rgb(233 99 99 / var(--tw-bg-opacity, 1));\n}\n.bg-red-95 {\n --tw-bg-opacity: 1;\n background-color: rgb(252 233 233 / var(--tw-bg-opacity, 1));\n}\n.bg-yellow-55 {\n --tw-bg-opacity: 1;\n background-color: rgb(255 163 26 / var(--tw-bg-opacity, 1));\n}\n.bg-yellow-95 {\n --tw-bg-opacity: 1;\n background-color: rgb(255 245 229 / var(--tw-bg-opacity, 1));\n}\n.p-10 {\n padding: 2.5rem;\n}\n.p-3 {\n padding: 0.75rem;\n}\n.p-4 {\n padding: 1rem;\n}\n.p-6 {\n padding: 1.5rem;\n}\n.px-2 {\n padding-left: 0.5rem;\n padding-right: 0.5rem;\n}\n.px-3 {\n padding-left: 0.75rem;\n padding-right: 0.75rem;\n}\n.px-4 {\n padding-left: 1rem;\n padding-right: 1rem;\n}\n.py-0\\.5 {\n padding-top: 0.125rem;\n padding-bottom: 0.125rem;\n}\n.py-10 {\n padding-top: 2.5rem;\n padding-bottom: 2.5rem;\n}\n.py-2\\.5 {\n padding-top: 0.625rem;\n padding-bottom: 0.625rem;\n}\n.py-4 {\n padding-top: 1rem;\n padding-bottom: 1rem;\n}\n.text-left {\n text-align: left;\n}\n.text-center {\n text-align: center;\n}\n.font-mono {\n font-family: "PT Mono", sans-serif;\n}\n.text-2xl {\n font-size: 1.5rem;\n line-height: 2rem;\n}\n.text-lg {\n font-size: 1.125rem;\n line-height: 1.75rem;\n}\n.text-sm {\n font-size: 0.875rem;\n line-height: 1.25rem;\n}\n.text-xl {\n font-size: 1.25rem;\n line-height: 1.75rem;\n}\n.text-xs {\n font-size: 0.75rem;\n line-height: 1rem;\n}\n.font-semibold {\n font-weight: 600;\n}\n.uppercase {\n text-transform: uppercase;\n}\n.leading-none {\n line-height: 1;\n}\n.leading-relaxed {\n line-height: 1.625;\n}\n.tracking-wide {\n letter-spacing: 0.025em;\n}\n.text-green-45 {\n --tw-text-opacity: 1;\n color: rgb(49 180 82 / var(--tw-text-opacity, 1));\n}\n.text-green-54 {\n --tw-text-opacity: 1;\n color: rgb(71 205 104 / var(--tw-text-opacity, 1));\n}\n.text-neutral-10 {\n --tw-text-opacity: 1;\n color: rgb(18 27 33 / var(--tw-text-opacity, 1));\n}\n.text-neutral-20 {\n --tw-text-opacity: 1;\n color: rgb(36 53 66 / var(--tw-text-opacity, 1));\n}\n.text-neutral-40 {\n --tw-text-opacity: 1;\n color: rgb(71 106 133 / var(--tw-text-opacity, 1));\n}\n.text-neutral-50 {\n --tw-text-opacity: 1;\n color: rgb(89 133 166 / var(--tw-text-opacity, 1));\n}\n.text-neutral-60 {\n --tw-text-opacity: 1;\n color: rgb(122 157 184 / var(--tw-text-opacity, 1));\n}\n.text-red-55 {\n --tw-text-opacity: 1;\n color: rgb(226 54 54 / var(--tw-text-opacity, 1));\n}\n.text-red-65 {\n --tw-text-opacity: 1;\n color: rgb(233 99 99 / var(--tw-text-opacity, 1));\n}\n.text-yellow-55 {\n --tw-text-opacity: 1;\n color: rgb(255 163 26 / var(--tw-text-opacity, 1));\n}\n.outline {\n outline-style: solid;\n}\n.blur {\n --tw-blur: blur(8px);\n 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);\n}\n.filter {\n 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);\n}\n.backdrop-filter {\n backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);\n}\n.transition {\n transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;\n transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);\n transition-duration: 150ms;\n}\n.transition-all {\n transition-property: all;\n transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);\n transition-duration: 150ms;\n}\n.transition-colors {\n transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;\n transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);\n transition-duration: 150ms;\n}\n.transition-opacity {\n transition-property: opacity;\n transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);\n transition-duration: 150ms;\n}\n.duration-300 {\n transition-duration: 300ms;\n}\n.ease-in-out {\n transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);\n}\nstrong {\n font-weight: 600;\n}\n.hover\\:border-neutral-60:hover {\n --tw-border-opacity: 1;\n border-color: rgb(122 157 184 / var(--tw-border-opacity, 1));\n}\n.hover\\:text-neutral-20:hover {\n --tw-text-opacity: 1;\n color: rgb(36 53 66 / var(--tw-text-opacity, 1));\n}\n.hover\\:opacity-60:hover {\n opacity: 0.6;\n}\n.dark\\:border-neutral-60:is(.dark *) {\n --tw-border-opacity: 1;\n border-color: rgb(122 157 184 / var(--tw-border-opacity, 1));\n}\n.dark\\:border-neutral-70:is(.dark *) {\n --tw-border-opacity: 1;\n border-color: rgb(156 182 201 / var(--tw-border-opacity, 1));\n}\n.dark\\:border-yellow-55\\/50:is(.dark *) {\n border-color: rgb(255 163 26 / 0.5);\n}\n.dark\\:bg-blue-95\\/10:is(.dark *) {\n background-color: rgb(230 240 254 / 0.1);\n}\n.dark\\:bg-green-95\\/10:is(.dark *) {\n background-color: rgb(235 250 239 / 0.1);\n}\n.dark\\:bg-green-95\\/20:is(.dark *) {\n background-color: rgb(235 250 239 / 0.2);\n}\n.dark\\:bg-neutral-15:is(.dark *) {\n --tw-bg-opacity: 1;\n background-color: rgb(27 40 50 / var(--tw-bg-opacity, 1));\n}\n.dark\\:bg-neutral-70:is(.dark *) {\n --tw-bg-opacity: 1;\n background-color: rgb(156 182 201 / var(--tw-bg-opacity, 1));\n}\n.dark\\:bg-neutral-80:is(.dark *) {\n --tw-bg-opacity: 1;\n background-color: rgb(189 206 219 / var(--tw-bg-opacity, 1));\n}\n.dark\\:bg-yellow-95\\/10:is(.dark *) {\n background-color: rgb(255 245 229 / 0.1);\n}\n.dark\\:text-green-45:is(.dark *) {\n --tw-text-opacity: 1;\n color: rgb(49 180 82 / var(--tw-text-opacity, 1));\n}\n.dark\\:text-neutral-50:is(.dark *) {\n --tw-text-opacity: 1;\n color: rgb(89 133 166 / var(--tw-text-opacity, 1));\n}\n.dark\\:text-neutral-60:is(.dark *) {\n --tw-text-opacity: 1;\n color: rgb(122 157 184 / var(--tw-text-opacity, 1));\n}\n.dark\\:text-neutral-90:is(.dark *) {\n --tw-text-opacity: 1;\n color: rgb(222 231 237 / var(--tw-text-opacity, 1));\n}\n.dark\\:text-white:is(.dark *) {\n --tw-text-opacity: 1;\n color: rgb(255 255 255 / var(--tw-text-opacity, 1));\n}\n.dark\\:text-yellow-55:is(.dark *) {\n --tw-text-opacity: 1;\n color: rgb(255 163 26 / var(--tw-text-opacity, 1));\n}\n.dark\\:hover\\:border-neutral-60:hover:is(.dark *) {\n --tw-border-opacity: 1;\n border-color: rgb(122 157 184 / var(--tw-border-opacity, 1));\n}\n@media (min-width: 640px) {\n .sm\\:w-\\[372px\\] {\n width: 372px;\n }\n}\n';
10
+
11
+ // src/connect-modal/connect-modal.base.ts
12
+ var style = _lit.css`
13
+ ${_lit.unsafeCSS.call(void 0, styles_default)}
14
+ `;
15
+ var ConnectModalBase = class extends _lit.LitElement {
16
+ static {
17
+ this.styles = [style];
18
+ }
19
+ };
20
+
21
+ // src/connect-modal/connect-modal.ts
22
+ var _mixins = require('@lukso/core/mixins');
23
+ var _debug = require('debug'); var _debug2 = _interopRequireDefault(_debug);
24
+
25
+ var _decoratorsjs = require('lit/decorators.js');
26
+
27
+ // src/connect-modal/services/wagmi.ts
28
+ var _utils = require('@lukso/core/utils');
29
+ var UP_EXTENSION_ID = "cloud.universalprofile";
30
+ var globalWagmiSetup = null;
31
+ function fromWagmiConnector(connector, connectFn, chainId) {
32
+ let type = "injected";
33
+ const rdns = connector.id;
34
+ if (connector.id === "walletConnect" || connector.type === "walletConnect") {
35
+ type = "walletconnect";
36
+ } else if (connector.id === "injected" || connector.type === "injected") {
37
+ type = "injected";
38
+ if (connector.id === UP_EXTENSION_ID || connector.id.includes(UP_EXTENSION_ID)) {
39
+ type = "extension";
40
+ }
41
+ }
42
+ return {
43
+ id: connector.uid || connector.id,
44
+ name: connector.name,
45
+ rdns,
46
+ type,
47
+ slug: _utils.slug.call(void 0, connector.name),
48
+ connect: async () => {
49
+ await connectFn({ connector, chainId });
50
+ },
51
+ getProvider: connector.getProvider ? () => connector.getProvider() : void 0
52
+ };
53
+ }
54
+ function fromWagmiConnectors(connectors, connectFn, chainId, embeddedWalletId) {
55
+ const result = [];
56
+ let embeddedWalletConnector;
57
+ let embeddedWallet;
58
+ if (embeddedWalletId) {
59
+ embeddedWalletConnector = connectors.find(
60
+ (connector) => connector.id === embeddedWalletId || connector.id.includes(embeddedWalletId)
61
+ );
62
+ if (embeddedWalletConnector) {
63
+ embeddedWallet = fromWagmiConnector(
64
+ embeddedWalletConnector,
65
+ connectFn,
66
+ chainId
67
+ );
68
+ result.push({
69
+ ...embeddedWallet,
70
+ type: "embedded",
71
+ slug: "passkey-wallet"
72
+ });
73
+ }
74
+ }
75
+ const UP_EXTENSION_ID2 = "cloud.universalprofile";
76
+ const upExtensionConnector = connectors.find(
77
+ (connector) => connector !== embeddedWalletConnector && (connector.id === UP_EXTENSION_ID2 || connector.id.includes(UP_EXTENSION_ID2))
78
+ );
79
+ let upExtension;
80
+ if (upExtensionConnector) {
81
+ upExtension = fromWagmiConnector(upExtensionConnector, connectFn, chainId);
82
+ }
83
+ const walletConnectors = connectors.filter(
84
+ (connector) => connector !== embeddedWalletConnector && connector !== upExtensionConnector
85
+ ).map((connector) => fromWagmiConnector(connector, connectFn, chainId));
86
+ if (upExtension) {
87
+ result.push(upExtension);
88
+ }
89
+ const walletConnect = walletConnectors.find(
90
+ (connector) => connector.type === "walletconnect"
91
+ );
92
+ if (walletConnect) {
93
+ result.push({
94
+ ...walletConnect,
95
+ type: "mobile",
96
+ slug: "up-mobile"
97
+ });
98
+ }
99
+ const others = walletConnectors.filter(
100
+ (connector) => connector !== embeddedWallet && connector !== upExtension && connector !== walletConnect
101
+ );
102
+ result.push(...others);
103
+ return result;
104
+ }
105
+ function setupConnectModal(setup) {
106
+ globalWagmiSetup = setup;
107
+ }
108
+ function getWagmiSetup() {
109
+ return globalWagmiSetup;
110
+ }
111
+ async function getWagmiAccount() {
112
+ if (!globalWagmiSetup) {
113
+ return null;
114
+ }
115
+ try {
116
+ const { getAccount } = await Promise.resolve().then(() => _interopRequireWildcard(require("@wagmi/core")));
117
+ const account = getAccount(globalWagmiSetup.wagmiConfig);
118
+ return account;
119
+ } catch (_error) {
120
+ return null;
121
+ }
122
+ }
123
+ async function watchWagmiAccount(callback) {
124
+ if (!globalWagmiSetup) {
125
+ return null;
126
+ }
127
+ try {
128
+ const { watchAccount } = await Promise.resolve().then(() => _interopRequireWildcard(require("@wagmi/core")));
129
+ const unsubscribe = watchAccount(globalWagmiSetup.wagmiConfig, {
130
+ onChange: (account) => {
131
+ callback(account);
132
+ }
133
+ });
134
+ return unsubscribe;
135
+ } catch (_error) {
136
+ return null;
137
+ }
138
+ }
139
+ async function disconnectWagmi() {
140
+ if (!globalWagmiSetup) {
141
+ return false;
142
+ }
143
+ try {
144
+ const { disconnect } = await Promise.resolve().then(() => _interopRequireWildcard(require("@wagmi/core")));
145
+ await disconnect(globalWagmiSetup.wagmiConfig);
146
+ return true;
147
+ } catch (error) {
148
+ console.warn("Failed to disconnect from wagmi", error);
149
+ return false;
150
+ }
151
+ }
152
+
153
+ // src/connect-modal/connect-modal.ts
154
+ require('@lukso/web-components/dist/components/lukso-modal');
155
+
156
+ // src/connect-modal/components/eoa-connection-view.ts
157
+ var _task = require('@lit/task');
158
+
159
+
160
+
161
+
162
+ var _keyedjs = require('lit/directives/keyed.js');
163
+
164
+ // src/connect-modal/connect-modal.config.ts
165
+ var SUPPORTED_WALLET_IDS_MOBILE = [
166
+ "c57ca95b47569778a828d19178114f4db188b89b763c899ba0be274e97267d96"
167
+ // MetaMask
168
+ ];
169
+ var SUPPORTED_WALLET_IDS_DESKTOP = [
170
+ "c57ca95b47569778a828d19178114f4db188b89b763c899ba0be274e97267d96",
171
+ // MetaMask
172
+ "ecc4036f814562b41a5268adc86270fba1365471402006302e70169465b7ac18",
173
+ // Zerion
174
+ "fd20dc426fb37566d803205b19bbc1d4096b248ac04548e3cfb6b3a38bd033aa"
175
+ // Coinbase
176
+ // '1ae92b26df02f0abca6304df07debccd18262fdf5fe82daa81593582dac9a369', // Rainbow - temporary hide due to issue in Wagmi detection of this wallet
177
+ ];
178
+ var WALLETS_API_URL = "https://explorer-api.walletconnect.com/v3/wallets";
179
+ var REOWN_PROJECT_ID = "68cee9cbecf1293488f207237e89f337";
180
+ var MOBILE_APP_DEEP_LINK_PREFIX = "io.universaleverything.universalprofiles";
181
+
182
+ // src/connect-modal/connect-modal.templates.ts
183
+ var _tools = require('@lukso/web-components/tools');
184
+
185
+
186
+ // src/connect-modal/images/up-cube-glass.png
187
+ var up_cube_glass_default = "data:image/png;base64,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";
188
+
189
+ // src/connect-modal/connect-modal.templates.ts
190
+ var renderCloseButton = () => _lit.html`<lukso-icon name="close-lg"
191
+ class="cursor-pointer transition-opacity hover:opacity-60"></lukso-icon>`;
192
+ var renderBackButton = () => _lit.html`<lukso-icon name="arrow-left-lg" class="cursor-pointer transition-opacity hover:opacity-60"></lukso-icon>`;
193
+ var renderLogo = () => _lit.html`<img src="${up_cube_glass_default}" alt="" class="mb-5 w-14 animate-bounce2" />`;
194
+ var renderTitle = (title) => _lit.html`<h2 class="m-0 mb-4 text-neutral-20 dark:text-white heading-inter-21-semi-bold">
195
+ ${title}
196
+ </h2>`;
197
+ var renderPlaceholder = (style2) => _lit.html`<div class="${_tools.cn.call(void 0, "bg-neutral-90 dark:bg-neutral-80 rounded-4 animate-pulse", style2)}"></div>`;
198
+
199
+ // src/connect-modal/components/eoa-connection-view.ts
200
+ require('@lukso/web-components/dist/components/lukso-button');
201
+ require('@lukso/web-components/dist/components/lukso-icon');
202
+ require('@lukso/web-components/dist/components/lukso-tag');
203
+ var logInfo = _debug2.default.call(void 0, "connect-modal:info");
204
+ var EoaConnectionView = class extends _mixins.withIntlService.call(void 0,
205
+ _mixins.withDeviceService.call(void 0, ConnectModalBase)
206
+ ) {
207
+ constructor() {
208
+ super(...arguments);
209
+ this.connectors = [];
210
+ this.isConnecting = false;
211
+ this.connectingRdns = void 0;
212
+ /**
213
+ * Task to fetch EOA wallets - handles loading/error states automatically
214
+ */
215
+ this.walletsTask = new (0, _task.Task)(this, {
216
+ task: async ([_isMobile], { signal }) => {
217
+ const walletIds = this.supportedWalletIds();
218
+ const url = `${WALLETS_API_URL}?projectId=${REOWN_PROJECT_ID}&ids=${walletIds.join(",")}`;
219
+ const response = await fetch(url, { signal });
220
+ if (!response.ok) {
221
+ throw new Error("Failed to fetch wallets");
222
+ }
223
+ const data = await response.json();
224
+ return Object.entries(data.listings || {}).map(([, wallet]) => {
225
+ const connector = this.eoaConnectors.find(
226
+ (connector2) => connector2.rdns === wallet.rdns
227
+ );
228
+ return {
229
+ ...wallet,
230
+ isInstalled: _optionalChain([connector, 'optionalAccess', _ => _.rdns]) === wallet.rdns,
231
+ connector
232
+ };
233
+ }).sort(
234
+ (a, b) => a.isInstalled === b.isInstalled ? 0 : a.isInstalled ? -1 : 1
235
+ );
236
+ },
237
+ args: () => [_optionalChain([this, 'access', _2 => _2.device, 'optionalAccess', _3 => _3.isMobile])]
238
+ });
239
+ }
240
+ /**
241
+ * Get WalletConnect connector
242
+ */
243
+ get walletConnectConnector() {
244
+ return this.connectors.find((connector) => connector.type === "mobile");
245
+ }
246
+ /**
247
+ * Get EOA connectors
248
+ */
249
+ get eoaConnectors() {
250
+ return this.connectors.filter(
251
+ (connector) => connector.type !== "embedded" && connector.type !== "extension" && connector.type !== "mobile" && connector.rdns !== "io.lukso.up-extension" && connector.slug !== "injected"
252
+ );
253
+ }
254
+ /**
255
+ * Get supported wallet IDs based on device type
256
+ *
257
+ * @returns
258
+ */
259
+ supportedWalletIds() {
260
+ return _optionalChain([this, 'access', _4 => _4.device, 'optionalAccess', _5 => _5.isMobile]) ? SUPPORTED_WALLET_IDS_MOBILE : SUPPORTED_WALLET_IDS_DESKTOP;
261
+ }
262
+ /**
263
+ * Get device type
264
+ */
265
+ deviceType() {
266
+ if (_optionalChain([this, 'access', _6 => _6.device, 'optionalAccess', _7 => _7.isMobile]) || _optionalChain([this, 'access', _8 => _8.device, 'optionalAccess', _9 => _9.isTablet])) {
267
+ if (_optionalChain([this, 'access', _10 => _10.device, 'optionalAccess', _11 => _11.isIOS])) {
268
+ return "ios";
269
+ }
270
+ return "android";
271
+ }
272
+ if (_optionalChain([this, 'access', _12 => _12.device, 'optionalAccess', _13 => _13.isChrome])) {
273
+ return "chrome";
274
+ }
275
+ if (_optionalChain([this, 'access', _14 => _14.device, 'optionalAccess', _15 => _15.isFirefox])) {
276
+ return "firefox";
277
+ }
278
+ if (_optionalChain([this, 'access', _16 => _16.device, 'optionalAccess', _17 => _17.isSafari])) {
279
+ return "safari";
280
+ }
281
+ if (_optionalChain([this, 'access', _18 => _18.device, 'optionalAccess', _19 => _19.isEdge])) {
282
+ return "edge";
283
+ }
284
+ if (_optionalChain([this, 'access', _20 => _20.device, 'optionalAccess', _21 => _21.isOpera])) {
285
+ return "opera";
286
+ }
287
+ return "browser";
288
+ }
289
+ /**
290
+ * Close modal
291
+ */
292
+ handleClose() {
293
+ this.dispatchEvent(
294
+ new CustomEvent("on-close", { bubbles: true, composed: true })
295
+ );
296
+ }
297
+ /**
298
+ * Back to initial screen
299
+ */
300
+ handleBack() {
301
+ this.dispatchEvent(
302
+ new CustomEvent("on-back", { bubbles: true, composed: true })
303
+ );
304
+ }
305
+ /**
306
+ * Handle wallet connect click
307
+ *
308
+ * @param wallet
309
+ */
310
+ handleConnect(wallet, event) {
311
+ event.stopPropagation();
312
+ this.connectingRdns = wallet.rdns;
313
+ if (_optionalChain([this, 'access', _22 => _22.device, 'optionalAccess', _23 => _23.isMobile])) {
314
+ this.connectMobile(wallet);
315
+ return;
316
+ }
317
+ this.connectDesktop(wallet);
318
+ }
319
+ /**
320
+ * Connect to wallet on desktop using selected connector
321
+ *
322
+ * @param wallet
323
+ */
324
+ async connectDesktop(wallet) {
325
+ if (!wallet.isInstalled) {
326
+ window.open(wallet.app[this.deviceType()], "_blank");
327
+ return;
328
+ }
329
+ const connector = wallet.connector;
330
+ if (connector) {
331
+ try {
332
+ logInfo("Connecting via connector:", connector);
333
+ this.isConnecting = true;
334
+ await connector.connect();
335
+ this.dispatchEvent(
336
+ new CustomEvent("on-connect", {
337
+ detail: { connector },
338
+ bubbles: true,
339
+ composed: true
340
+ })
341
+ );
342
+ } catch (error) {
343
+ this.dispatchEvent(
344
+ new CustomEvent("on-error", {
345
+ detail: { error },
346
+ bubbles: true,
347
+ composed: true
348
+ })
349
+ );
350
+ } finally {
351
+ this.isConnecting = false;
352
+ }
353
+ }
354
+ }
355
+ /**
356
+ * Connect to wallet on mobile using WalletConnect
357
+ */
358
+ async connectMobile(wallet) {
359
+ const connector = this.walletConnectConnector;
360
+ if (connector) {
361
+ try {
362
+ logInfo("Connecting via WalletConnect connector:", connector);
363
+ this.isConnecting = true;
364
+ const connectPromise = connector.connect();
365
+ const provider = await _optionalChain([connector, 'access', _24 => _24.getProvider, 'optionalCall', _25 => _25()]);
366
+ if (provider) {
367
+ const handleDisplayUri = (displayUri) => {
368
+ logInfo("WalletConnect URI received:", displayUri);
369
+ const encodedUri = encodeURIComponent(displayUri);
370
+ if (_optionalChain([wallet, 'access', _26 => _26.mobile, 'optionalAccess', _27 => _27.native])) {
371
+ window.location.href = `${wallet.mobile.native}wc?uri=${encodedUri}`;
372
+ } else if (wallet.rdns === "com.coinbase.wallet") {
373
+ window.location.href = `cbwallet://wc?uri=${encodedUri}`;
374
+ } else {
375
+ window.location.href = displayUri;
376
+ }
377
+ provider.off("display_uri", handleDisplayUri);
378
+ };
379
+ provider.on("display_uri", handleDisplayUri);
380
+ }
381
+ await connectPromise;
382
+ this.dispatchEvent(
383
+ new CustomEvent("on-connect", {
384
+ detail: { connector },
385
+ bubbles: true,
386
+ composed: true
387
+ })
388
+ );
389
+ } catch (error) {
390
+ this.dispatchEvent(
391
+ new CustomEvent("on-error", {
392
+ detail: { error },
393
+ bubbles: true,
394
+ composed: true
395
+ })
396
+ );
397
+ } finally {
398
+ this.isConnecting = false;
399
+ }
400
+ }
401
+ }
402
+ /**
403
+ * Render the list of EOA wallets
404
+ */
405
+ renderWalletsList() {
406
+ return this.walletsTask.render({
407
+ // Success state
408
+ complete: (wallets) => _lit.html`${wallets.map((wallet) => {
409
+ const isLoading = this.isConnecting && this.connectingRdns === wallet.rdns;
410
+ const isInstalled = this.eoaConnectors.some(
411
+ (connector) => connector.rdns === wallet.rdns
412
+ );
413
+ const logo = _optionalChain([wallet, 'access', _28 => _28.image_url, 'optionalAccess', _29 => _29.sm]) ? _lit.html`<img src="${wallet.image_url.sm}" alt="${wallet.name} logo" class="h-8 rounded-full mr-2" />` : _lit.nothing;
414
+ return _keyedjs.keyed.call(void 0,
415
+ wallet.slug,
416
+ _lit.html`<lukso-button
417
+ variant="secondary"
418
+ size=${_optionalChain([this, 'access', _30 => _30.device, 'optionalAccess', _31 => _31.isMobile]) ? "medium" : "large"}
419
+ is-full-width
420
+ ?disabled=${this.isConnecting}
421
+ ?is-loading=${isLoading}
422
+ loading-text=${wallet.name}
423
+ @click=${(event) => this.handleConnect(wallet, event)}
424
+ >
425
+ <div
426
+ class="grid w-full grid-cols-[max-content,auto,max-content] items-center gap-3 text-left animate-fade-in"
427
+ >
428
+ ${logo}
429
+ <div class="truncate">${wallet.name}</div>
430
+ <div class="flex items-center">
431
+ ${isInstalled ? _lit.html`<lukso-tag
432
+ size="x-small"
433
+ text-color="green-45"
434
+ background-color="green-85"
435
+ >
436
+ ${this.formatMessage("connect_modal_installed")}
437
+ </lukso-tag>` : _lit.nothing}
438
+ </div>
439
+ </div>
440
+ </lukso-button>`
441
+ );
442
+ })}`,
443
+ // Loading state
444
+ pending: () => _lit.html`${this.supportedWalletIds().map(
445
+ () => renderPlaceholder(
446
+ `w-full ${_optionalChain([this, 'access', _32 => _32.device, 'optionalAccess', _33 => _33.isMobile]) ? "h-10 !rounded-10" : "h-12 !rounded-12"}`
447
+ )
448
+ )}`,
449
+ // Error state
450
+ error: (_error) => {
451
+ return _lit.html`<div class="flex flex-col justify-center items-center py-10">
452
+ <div class="mb-4">${this.formatMessage("connect_modal_failed_to_load")}</div>
453
+ <lukso-button size="medium" variant="secondary" @click=${() => this.walletsTask.run()}>${this.formatMessage("connect_modal_try_again")}</lukso-button>
454
+ </div>`;
455
+ }
456
+ });
457
+ }
458
+ /**
459
+ * Main render method
460
+ */
461
+ render() {
462
+ return _lit.html`
463
+ <div class="flex justify-between">
464
+ <button
465
+ @click=${this.handleBack}
466
+ >
467
+ ${renderBackButton()}
468
+ </button>
469
+
470
+ <button
471
+ @click=${this.handleClose}
472
+ >
473
+ ${renderCloseButton()}
474
+ </button>
475
+ </div>
476
+ <div class="flex flex-col items-center text-center">
477
+ ${renderLogo()}
478
+ ${renderTitle(this.formatMessage("connect_modal_eoa_title"))}
479
+ <div class="mt-2 flex w-full flex-col gap-2">
480
+ ${this.renderWalletsList()}
481
+ </div>
482
+ </div>
483
+ `;
484
+ }
485
+ };
486
+ _chunkZBDE64SDcjs.__decorateClass.call(void 0, [
487
+ _decoratorsjs.property.call(void 0, { type: Array })
488
+ ], EoaConnectionView.prototype, "connectors", 2);
489
+ _chunkZBDE64SDcjs.__decorateClass.call(void 0, [
490
+ _decoratorsjs.state.call(void 0, )
491
+ ], EoaConnectionView.prototype, "isConnecting", 2);
492
+ _chunkZBDE64SDcjs.__decorateClass.call(void 0, [
493
+ _decoratorsjs.state.call(void 0, )
494
+ ], EoaConnectionView.prototype, "connectingRdns", 2);
495
+ customElements.define("eoa-connection-view", EoaConnectionView);
496
+
497
+ // src/connect-modal/components/connection-view.ts
498
+
499
+
500
+
501
+
502
+
503
+
504
+
505
+
506
+
507
+ // src/connect-modal/utils/walletConnectDeepLinkUrl.ts
508
+ var walletConnectDeepLinkUrl = (data, options) => {
509
+ try {
510
+ if (!data || typeof data !== "string") {
511
+ return "";
512
+ }
513
+ const dataUrl = new URL(data);
514
+ if (_optionalChain([options, 'optionalAccess', _34 => _34.withRedirectUrl])) {
515
+ const redirectUrl = new URL(location.href);
516
+ redirectUrl.searchParams.delete("modalTemplate");
517
+ redirectUrl.searchParams.delete("modalSize");
518
+ dataUrl.searchParams.append(
519
+ "redirectUrl",
520
+ `${redirectUrl.origin}${redirectUrl.pathname}${redirectUrl.search}`
521
+ );
522
+ }
523
+ const deepLink = `${MOBILE_APP_DEEP_LINK_PREFIX}://wallet-connect/${dataUrl.pathname}${dataUrl.search}`;
524
+ return deepLink;
525
+ } catch (error) {
526
+ console.warn(error);
527
+ return "";
528
+ }
529
+ };
530
+
531
+ // src/connect-modal/components/connection-view.ts
532
+ var logInfo2 = _debug2.default.call(void 0, "connect-modal:info");
533
+ var ConnectionView = class extends _mixins.withIntlService.call(void 0,
534
+ _mixins.withDeviceService.call(void 0, ConnectModalBase)
535
+ ) {
536
+ constructor() {
537
+ super(...arguments);
538
+ this.isConnecting = false;
539
+ this.connectingRdns = void 0;
540
+ this.connectors = [];
541
+ /**
542
+ * Handle connect via embedded wallet
543
+ */
544
+ this.handleConnectEmbedded = async () => {
545
+ const connector = this.embeddedWalletConnector;
546
+ try {
547
+ logInfo2("Connecting via connector:", connector);
548
+ await _optionalChain([connector, 'optionalAccess', _35 => _35.connect, 'call', _36 => _36()]);
549
+ this.dispatchEvent(
550
+ new CustomEvent("on-connect", {
551
+ detail: { connector },
552
+ bubbles: true,
553
+ composed: true
554
+ })
555
+ );
556
+ } catch (error) {
557
+ this.dispatchEvent(
558
+ new CustomEvent("on-error", {
559
+ detail: { error },
560
+ bubbles: true,
561
+ composed: true
562
+ })
563
+ );
564
+ }
565
+ };
566
+ /**
567
+ * Handle connect via UP Extension
568
+ */
569
+ this.handleConnectExtension = async () => {
570
+ const connector = this.upExtensionConnector;
571
+ if (connector) {
572
+ try {
573
+ logInfo2("Connecting via connector:", connector);
574
+ this.isConnecting = true;
575
+ this.connectingRdns = connector.rdns;
576
+ await connector.connect();
577
+ this.dispatchEvent(
578
+ new CustomEvent("on-connect", {
579
+ detail: { connector },
580
+ bubbles: true,
581
+ composed: true
582
+ })
583
+ );
584
+ } catch (error) {
585
+ this.dispatchEvent(
586
+ new CustomEvent("on-error", {
587
+ detail: { error },
588
+ bubbles: true,
589
+ composed: true
590
+ })
591
+ );
592
+ } finally {
593
+ this.isConnecting = false;
594
+ this.connectingRdns = void 0;
595
+ }
596
+ }
597
+ };
598
+ /**
599
+ * Handle connect via UP Mobile (WalletConnect)
600
+ */
601
+ this.handleConnectMobile = async () => {
602
+ const connector = this.walletConnectConnector;
603
+ if (connector) {
604
+ try {
605
+ logInfo2("Connecting via connector:", connector);
606
+ this.isConnecting = true;
607
+ this.connectingRdns = connector.rdns;
608
+ const connectPromise = connector.connect();
609
+ const provider = await _optionalChain([connector, 'access', _37 => _37.getProvider, 'optionalCall', _38 => _38()]);
610
+ if (provider) {
611
+ const handleDisplayUri = (displayUri) => {
612
+ logInfo2("WalletConnect original URI:", displayUri);
613
+ const deepLink = walletConnectDeepLinkUrl(displayUri);
614
+ logInfo2("Mobile App Deep Link:", deepLink);
615
+ if (this.device.isMobile) {
616
+ window.open(deepLink, "_blank");
617
+ } else {
618
+ this.handleShowQrCode(deepLink);
619
+ }
620
+ provider.off("display_uri", handleDisplayUri);
621
+ };
622
+ provider.on("display_uri", handleDisplayUri);
623
+ }
624
+ await connectPromise;
625
+ this.dispatchEvent(
626
+ new CustomEvent("on-connect", {
627
+ detail: { connector },
628
+ bubbles: true,
629
+ composed: true
630
+ })
631
+ );
632
+ } catch (error) {
633
+ this.dispatchEvent(
634
+ new CustomEvent("on-error", {
635
+ detail: { error },
636
+ bubbles: true,
637
+ composed: true
638
+ })
639
+ );
640
+ this.dispatchEvent(
641
+ new CustomEvent("on-back", { bubbles: true, composed: true })
642
+ );
643
+ } finally {
644
+ this.isConnecting = false;
645
+ this.connectingRdns = void 0;
646
+ }
647
+ }
648
+ };
649
+ }
650
+ /**
651
+ * Get WalletConnect connector
652
+ */
653
+ get walletConnectConnector() {
654
+ return this.connectors.find((connector) => connector.type === "mobile");
655
+ }
656
+ /**
657
+ * Universal Profile browser extension connector
658
+ */
659
+ get upExtensionConnector() {
660
+ return this.connectors.find((connector) => connector.type === "extension");
661
+ }
662
+ /**
663
+ * Passkey / Embedded wallet connector
664
+ */
665
+ get embeddedWalletConnector() {
666
+ return this.connectors.find((connector) => connector.type === "embedded");
667
+ }
668
+ /**
669
+ * Get browser extension store info
670
+ */
671
+ get extensionStore() {
672
+ const info = _utils.browserInfo.call(void 0, this.device);
673
+ return info;
674
+ }
675
+ /**
676
+ * Check if browser supports extension installation
677
+ */
678
+ get browserSupportExtension() {
679
+ return this.extensionStore.storeLink !== "";
680
+ }
681
+ /**
682
+ * Close modal
683
+ */
684
+ handleClose() {
685
+ this.dispatchEvent(
686
+ new CustomEvent("on-close", { bubbles: true, composed: true })
687
+ );
688
+ }
689
+ /**
690
+ * Handle showing EOA connections
691
+ */
692
+ handleShowEoaConnections() {
693
+ this.dispatchEvent(
694
+ new CustomEvent("on-show-eoa-connections-view", {
695
+ bubbles: true,
696
+ composed: true
697
+ })
698
+ );
699
+ }
700
+ /**
701
+ * Handle showing QR code
702
+ */
703
+ handleShowQrCode(data) {
704
+ this.dispatchEvent(
705
+ new CustomEvent("on-show-qr-code", {
706
+ detail: { data },
707
+ bubbles: true,
708
+ composed: true
709
+ })
710
+ );
711
+ }
712
+ /**
713
+ * Render connector button
714
+ *
715
+ * @param iconName
716
+ * @param label
717
+ * @param onClick
718
+ * @param isLoading
719
+ * @param isDisabled
720
+ */
721
+ renderConnectorButton(iconName, label, onClick, isLoading, isDisabled) {
722
+ return _lit.html`
723
+ <lukso-button
724
+ variant="secondary"
725
+ size=${_optionalChain([this, 'access', _39 => _39.device, 'optionalAccess', _40 => _40.isMobile]) ? "medium" : "large"}
726
+ is-full-width
727
+ ?disabled=${isDisabled}
728
+ ?is-loading=${isLoading}
729
+ loading-text=${label}
730
+ @click=${onClick}
731
+ >
732
+ <lukso-icon
733
+ name=${iconName}
734
+ size=${_optionalChain([this, 'access', _41 => _41.device, 'optionalAccess', _42 => _42.isMobile]) ? "small" : "medium"}
735
+ class="mr-2"
736
+ secondary-color="neutral-100"
737
+ ></lukso-icon>
738
+ ${label}
739
+ </lukso-button>
740
+ `;
741
+ }
742
+ renderConnectors() {
743
+ const templates = [];
744
+ if (this.embeddedWalletConnector) {
745
+ templates.push(
746
+ this.renderConnectorButton(
747
+ "key-outline",
748
+ this.formatMessage("connect_modal_connectors_passkey_wallet"),
749
+ this.handleConnectEmbedded,
750
+ false,
751
+ this.isConnecting
752
+ )
753
+ );
754
+ }
755
+ templates.push(
756
+ this.renderConnectorButton(
757
+ this.extensionStore.icon,
758
+ this.formatMessage("connect_modal_connectors_up_browser_extension"),
759
+ this.handleConnectExtension,
760
+ this.isConnecting && this.connectingRdns === _optionalChain([this, 'access', _43 => _43.upExtensionConnector, 'optionalAccess', _44 => _44.rdns]),
761
+ this.isConnecting || this.device.isMobile || !this.browserSupportExtension
762
+ )
763
+ );
764
+ if (this.walletConnectConnector) {
765
+ templates.push(
766
+ this.renderConnectorButton(
767
+ "phone-portrait-outline",
768
+ this.formatMessage("connect_modal_connectors_up_mobile"),
769
+ this.handleConnectMobile,
770
+ this.isConnecting && this.connectingRdns === this.walletConnectConnector.rdns,
771
+ this.isConnecting
772
+ )
773
+ );
774
+ }
775
+ return templates;
776
+ }
777
+ /**
778
+ * Render divider with text
779
+ */
780
+ renderDivider() {
781
+ return _lit.html`
782
+ <div class="relative w-full my-2">
783
+ <div class="paragraph-inter-12-regular relative z-[1] bg-neutral-98 dark:bg-neutral-15 px-4 text-neutral-40 inline-block">
784
+ ${this.formatMessage("connect_modal_or")}
785
+ </div>
786
+ <div class="absolute top-[13px] left-0 right-0 h-px bg-neutral-80 dark:bg-neutral-70" />
787
+ </div>
788
+ <div class="paragraph-inter-16-regular py-4">
789
+ ${this.formatMessage("connect_modal_or_info")}
790
+ </div>
791
+ `;
792
+ }
793
+ render() {
794
+ return _lit.html`
795
+ <div class="flex justify-end">
796
+ <button
797
+ @click=${this.handleClose}
798
+ >
799
+ ${renderCloseButton()}
800
+ </button>
801
+ </div>
802
+ <div class="flex flex-col items-center text-center">
803
+ ${renderLogo()}
804
+ ${renderTitle(this.formatMessage("connect_modal_title"))}
805
+ <p class="mb-6 paragraph-inter-16-regular">
806
+ ${this.formatMessage("connect_modal_description")}
807
+ </p>
808
+ <div class="${_tools.cn.call(void 0, "flex w-full gap-2 mb-4", _optionalChain([this, 'access', _45 => _45.device, 'optionalAccess', _46 => _46.isMobile]) ? "flex-col-reverse" : "flex-col")}">
809
+ ${this.renderConnectors()}
810
+ </div>
811
+ ${this.renderDivider()}
812
+ <lukso-button
813
+ variant="secondary"
814
+ size=${_optionalChain([this, 'access', _47 => _47.device, 'optionalAccess', _48 => _48.isMobile]) ? "medium" : "large"}
815
+ is-full-width
816
+ ?disabled=${this.isConnecting}
817
+ @click=${this.handleShowEoaConnections}
818
+ >
819
+ <lukso-icon
820
+ name="wallet-outline"
821
+ size=${_optionalChain([this, 'access', _49 => _49.device, 'optionalAccess', _50 => _50.isMobile]) ? "small" : "medium"}
822
+ class="mr-2"
823
+ ></lukso-icon>
824
+ ${this.formatMessage("connect_modal_other_connectors")}
825
+ </lukso-button>
826
+ </div>
827
+ `;
828
+ }
829
+ };
830
+ _chunkZBDE64SDcjs.__decorateClass.call(void 0, [
831
+ _decoratorsjs.property.call(void 0, { type: Boolean })
832
+ ], ConnectionView.prototype, "isConnecting", 2);
833
+ _chunkZBDE64SDcjs.__decorateClass.call(void 0, [
834
+ _decoratorsjs.property.call(void 0, { type: String })
835
+ ], ConnectionView.prototype, "connectingRdns", 2);
836
+ _chunkZBDE64SDcjs.__decorateClass.call(void 0, [
837
+ _decoratorsjs.property.call(void 0, { type: Array })
838
+ ], ConnectionView.prototype, "connectors", 2);
839
+ customElements.define("connection-view", ConnectionView);
840
+
841
+ // src/connect-modal/components/qr-code-view.ts
842
+
843
+ require('@lukso/web-components/dist/components/lukso-qr-code');
844
+
845
+
846
+ var QrCodeView = class extends _mixins.withIntlService.call(void 0, ConnectModalBase) {
847
+ constructor() {
848
+ super(...arguments);
849
+ this.data = void 0;
850
+ }
851
+ /**
852
+ * Back to initial screen
853
+ */
854
+ handleBack() {
855
+ this.dispatchEvent(
856
+ new CustomEvent("on-back", { bubbles: true, composed: true })
857
+ );
858
+ }
859
+ /**
860
+ * Close modal
861
+ */
862
+ handleClose() {
863
+ this.dispatchEvent(
864
+ new CustomEvent("on-close", { bubbles: true, composed: true })
865
+ );
866
+ }
867
+ render() {
868
+ return _lit.html`<div class="flex justify-between">
869
+ <button
870
+ @click=${this.handleBack}
871
+ >
872
+ ${renderBackButton()}
873
+ </button>
874
+
875
+ <button
876
+ @click=${this.handleClose}
877
+ >
878
+ ${renderCloseButton()}
879
+ </button>
880
+ </div>
881
+ <div class="flex flex-col items-center text-center">
882
+ <div class="heading-inter-21-semi-bold mb-4">
883
+ ${this.formatMessage("connect_modal_qr_code_title")}
884
+ </div>
885
+ <div class="paragraph-inter-16-regular mb-6">
886
+ ${this.formatMessage("connect_modal_qr_code_description")}
887
+ </div>
888
+ <lukso-qr-code size="340" .value="${this.data}" image="${up_cube_glass_default}"></lukso-qr-code></div>`;
889
+ }
890
+ };
891
+ _chunkZBDE64SDcjs.__decorateClass.call(void 0, [
892
+ _decoratorsjs.property.call(void 0, { type: String })
893
+ ], QrCodeView.prototype, "data", 2);
894
+ customElements.define("qr-code-view", QrCodeView);
895
+
896
+ // src/connect-modal/connect-modal.ts
897
+ var logInfo3 = _debug2.default.call(void 0, "connect-modal:info");
898
+ var ConnectModal = class extends _mixins.withDeviceService.call(void 0, ConnectModalBase) {
899
+ constructor() {
900
+ super(...arguments);
901
+ this.open = false;
902
+ this.theme = "light";
903
+ this.connectors = [];
904
+ this.isDark = false;
905
+ this.modalView = "up_connection";
906
+ this.qrCodeData = void 0;
907
+ this.mediaQueryList = null;
908
+ /**
909
+ * Handle system theme changes
910
+ *
911
+ * @param event
912
+ */
913
+ this.handleMediaQueryChange = (event) => {
914
+ this.isDark = event.matches;
915
+ };
916
+ this.handleShowEoaConnectionsView = (event) => {
917
+ event.stopPropagation();
918
+ this.modalView = "eoa_connection";
919
+ };
920
+ this.handleShowQrCodeView = (event) => {
921
+ event.stopPropagation();
922
+ this.qrCodeData = event.detail.data;
923
+ this.modalView = "qr_code";
924
+ };
925
+ }
926
+ updated(changedProperties) {
927
+ if (changedProperties.has("open") && this.open) {
928
+ this.modalView = "up_connection";
929
+ this.loadConnectors();
930
+ }
931
+ if (changedProperties.has("theme")) {
932
+ this.updateTheme();
933
+ }
934
+ }
935
+ connectedCallback() {
936
+ super.connectedCallback();
937
+ this.updateTheme();
938
+ if (this.theme === "auto") {
939
+ this.mediaQueryList = window.matchMedia("(prefers-color-scheme: dark)");
940
+ this.mediaQueryList.addEventListener(
941
+ "change",
942
+ this.handleMediaQueryChange
943
+ );
944
+ }
945
+ }
946
+ disconnectedCallback() {
947
+ super.disconnectedCallback();
948
+ if (this.mediaQueryList) {
949
+ this.mediaQueryList.removeEventListener(
950
+ "change",
951
+ this.handleMediaQueryChange
952
+ );
953
+ }
954
+ }
955
+ /**
956
+ * Close modal
957
+ */
958
+ handleClose() {
959
+ this.open = false;
960
+ this.dispatchEvent(
961
+ new CustomEvent("on-close", { bubbles: true, composed: true })
962
+ );
963
+ }
964
+ /**
965
+ * Update isDark state based on theme property
966
+ */
967
+ updateTheme() {
968
+ if (this.theme === "auto") {
969
+ this.isDark = window.matchMedia("(prefers-color-scheme: dark)").matches;
970
+ } else {
971
+ this.isDark = this.theme === "dark";
972
+ }
973
+ }
974
+ async loadConnectors() {
975
+ const globalWagmiSetup2 = getWagmiSetup();
976
+ logInfo3("Global wagmi setup:", globalWagmiSetup2);
977
+ if (!globalWagmiSetup2) {
978
+ console.warn(
979
+ "No global wagmi setup found! Call setupConnectModal() first."
980
+ );
981
+ this.connectors = [];
982
+ return;
983
+ }
984
+ try {
985
+ const { wagmiConfig, chainId, embeddedWalletId } = globalWagmiSetup2;
986
+ const wagmiConnectors = _optionalChain([wagmiConfig, 'optionalAccess', _51 => _51.connectors]) || [];
987
+ logInfo3("Initial connectors:", wagmiConnectors);
988
+ const wagmiCore = await Promise.resolve().then(() => _interopRequireWildcard(require("@wagmi/core"))).catch((error) => {
989
+ throw new Error("@wagmi/core is required when using wagmi connectors", {
990
+ cause: error
991
+ });
992
+ });
993
+ this.connectors = fromWagmiConnectors(
994
+ wagmiConnectors,
995
+ async (options) => {
996
+ await wagmiCore.connect(wagmiConfig, {
997
+ connector: options.connector,
998
+ chainId: options.chainId || chainId
999
+ });
1000
+ },
1001
+ chainId,
1002
+ embeddedWalletId
1003
+ );
1004
+ logInfo3("Converted connectors:", this.connectors);
1005
+ } catch (error) {
1006
+ console.warn("Failed to load connectors", error);
1007
+ this.connectors = [];
1008
+ }
1009
+ }
1010
+ /**
1011
+ * Successful connection handler
1012
+ *
1013
+ * @param connector
1014
+ */
1015
+ handleOnConnectSuccess(event) {
1016
+ event.stopPropagation();
1017
+ const connector = event.detail.connector;
1018
+ logInfo3("Connection success:", connector);
1019
+ this.open = false;
1020
+ this.dispatchEvent(
1021
+ new CustomEvent("on-connect", {
1022
+ detail: { connector },
1023
+ bubbles: true,
1024
+ composed: true
1025
+ })
1026
+ );
1027
+ }
1028
+ /**
1029
+ * Error connection handler
1030
+ *
1031
+ * @param error
1032
+ */
1033
+ handleOnConnectError(event) {
1034
+ event.stopPropagation();
1035
+ const error = event.detail.error;
1036
+ logInfo3("Connection error:", error);
1037
+ this.dispatchEvent(
1038
+ new CustomEvent("on-error", {
1039
+ detail: { error },
1040
+ bubbles: true,
1041
+ composed: true
1042
+ })
1043
+ );
1044
+ }
1045
+ handleBackToConnectionView(event) {
1046
+ event.stopPropagation();
1047
+ this.modalView = "up_connection";
1048
+ }
1049
+ // ===== Template Methods =====
1050
+ /**
1051
+ * Render modal content based on current view flag
1052
+ */
1053
+ renderModalContent() {
1054
+ switch (this.modalView) {
1055
+ case "qr_code":
1056
+ return _lit.html`<qr-code-view .data=${this.qrCodeData} @on-back=${this.handleBackToConnectionView}
1057
+ @on-close=${this.handleClose}></qr-code-view>`;
1058
+ case "eoa_connection":
1059
+ return _lit.html`
1060
+ <eoa-connection-view
1061
+ .connectors=${this.connectors}
1062
+ @on-back=${this.handleBackToConnectionView}
1063
+ @on-close=${this.handleClose}
1064
+ @on-connect=${this.handleOnConnectSuccess}
1065
+ @on-error=${this.handleOnConnectError}
1066
+ ></eoa-connection-view>
1067
+ `;
1068
+ default:
1069
+ return _lit.html`
1070
+ <connection-view
1071
+ .connectors=${this.connectors}
1072
+ @on-back=${this.handleBackToConnectionView}
1073
+ @on-close=${this.handleClose}
1074
+ @on-connect=${this.handleOnConnectSuccess}
1075
+ @on-error=${this.handleOnConnectError}
1076
+ @on-show-eoa-connections-view=${this.handleShowEoaConnectionsView}
1077
+ @on-show-qr-code=${this.handleShowQrCodeView}
1078
+ ></connection-view>
1079
+ `;
1080
+ }
1081
+ }
1082
+ render() {
1083
+ return _lit.html`
1084
+ <lukso-modal
1085
+ ?is-open=${this.open}
1086
+ ?has-bottom-padding=${!!(_optionalChain([this, 'access', _52 => _52.device, 'optionalAccess', _53 => _53.isIOS]) && _optionalChain([this, 'access', _54 => _54.device, 'optionalAccess', _55 => _55.isSafari]))}
1087
+ size="auto"
1088
+ @on-backdrop-click=${this.handleClose}
1089
+ >
1090
+ <div class="p-6 ${this.isDark ? "dark" : ""} w-full sm:w-[372px] text-neutral-20">
1091
+ ${this.renderModalContent()}
1092
+ </div>
1093
+ </lukso-modal>
1094
+ `;
1095
+ }
1096
+ };
1097
+ _chunkZBDE64SDcjs.__decorateClass.call(void 0, [
1098
+ _decoratorsjs.property.call(void 0, { type: Boolean, reflect: true })
1099
+ ], ConnectModal.prototype, "open", 2);
1100
+ _chunkZBDE64SDcjs.__decorateClass.call(void 0, [
1101
+ _decoratorsjs.property.call(void 0, { type: String, reflect: true })
1102
+ ], ConnectModal.prototype, "theme", 2);
1103
+ _chunkZBDE64SDcjs.__decorateClass.call(void 0, [
1104
+ _decoratorsjs.state.call(void 0, )
1105
+ ], ConnectModal.prototype, "connectors", 2);
1106
+ _chunkZBDE64SDcjs.__decorateClass.call(void 0, [
1107
+ _decoratorsjs.state.call(void 0, )
1108
+ ], ConnectModal.prototype, "isDark", 2);
1109
+ _chunkZBDE64SDcjs.__decorateClass.call(void 0, [
1110
+ _decoratorsjs.state.call(void 0, )
1111
+ ], ConnectModal.prototype, "modalView", 2);
1112
+ _chunkZBDE64SDcjs.__decorateClass.call(void 0, [
1113
+ _decoratorsjs.state.call(void 0, )
1114
+ ], ConnectModal.prototype, "qrCodeData", 2);
1115
+ customElements.define("connect-modal", ConnectModal);
1116
+
1117
+
1118
+
1119
+
1120
+
1121
+
1122
+
1123
+
1124
+
1125
+
1126
+
1127
+ exports.ConnectModalBase = ConnectModalBase; exports.fromWagmiConnector = fromWagmiConnector; exports.fromWagmiConnectors = fromWagmiConnectors; exports.setupConnectModal = setupConnectModal; exports.getWagmiSetup = getWagmiSetup; exports.getWagmiAccount = getWagmiAccount; exports.watchWagmiAccount = watchWagmiAccount; exports.disconnectWagmi = disconnectWagmi; exports.ConnectModal = ConnectModal;
1128
+ //# sourceMappingURL=chunk-RFA6SEIS.cjs.map