@stridge/kit 0.1.0-alpha.0

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 (763) hide show
  1. package/LICENSE +21 -0
  2. package/dist/KitProvider.d.ts +91 -0
  3. package/dist/KitProvider.js +1 -0
  4. package/dist/_internal/deposit/driver/index.d.ts +5 -0
  5. package/dist/_internal/deposit/driver/index.js +1 -0
  6. package/dist/_internal/deposit/widgets/index.d.ts +11 -0
  7. package/dist/_internal/deposit/widgets/index.js +1 -0
  8. package/dist/_internal/drivers/stridge/index.d.ts +6 -0
  9. package/dist/_internal/drivers/stridge/index.js +1 -0
  10. package/dist/_internal/drivers/stridge-mock/index.d.ts +5 -0
  11. package/dist/_internal/drivers/stridge-mock/index.js +1 -0
  12. package/dist/_internal/index.d.ts +2 -0
  13. package/dist/_internal/index.js +1 -0
  14. package/dist/_internal/withdraw/driver/index.d.ts +6 -0
  15. package/dist/_internal/withdraw/driver/index.js +1 -0
  16. package/dist/_internal/withdraw/widgets/index.d.ts +5 -0
  17. package/dist/_internal/withdraw/widgets/index.js +1 -0
  18. package/dist/banners/index.d.ts +1 -0
  19. package/dist/banners/index.js +1 -0
  20. package/dist/banners/useBannerAck.d.ts +61 -0
  21. package/dist/banners/useBannerAck.js +1 -0
  22. package/dist/deposit/compound/index.d.ts +28 -0
  23. package/dist/deposit/compound/index.js +1 -0
  24. package/dist/deposit/dialog/index.d.ts +2 -0
  25. package/dist/deposit/dialog/index.js +1 -0
  26. package/dist/drivers/stridge/createStridgeDepositDriver.d.ts +29 -0
  27. package/dist/drivers/stridge/createStridgeDepositDriver.js +1 -0
  28. package/dist/drivers/stridge/createStridgeWithdrawDriver.d.ts +113 -0
  29. package/dist/drivers/stridge/createStridgeWithdrawDriver.js +1 -0
  30. package/dist/drivers/stridge/internal/encoding.js +1 -0
  31. package/dist/drivers/stridge/internal/env.js +1 -0
  32. package/dist/drivers/stridge/internal/metadata.js +1 -0
  33. package/dist/drivers/stridge/internal/pollOnce.js +1 -0
  34. package/dist/drivers/stridge/internal/signAndConfirm.js +1 -0
  35. package/dist/drivers/stridge/poll.js +1 -0
  36. package/dist/drivers/stridge/rpc.d.ts +77 -0
  37. package/dist/drivers/stridge/rpc.js +1 -0
  38. package/dist/drivers/stridge/types.d.ts +145 -0
  39. package/dist/drivers/stridge/types.js +1 -0
  40. package/dist/drivers/stridge/wagmiSigner.js +1 -0
  41. package/dist/drivers/stridge-mock/createStridgeMockDriver.d.ts +120 -0
  42. package/dist/drivers/stridge-mock/createStridgeMockDriver.js +1 -0
  43. package/dist/drivers/stridge-mock/createStridgeMockWithdrawDriver.d.ts +118 -0
  44. package/dist/drivers/stridge-mock/createStridgeMockWithdrawDriver.js +1 -0
  45. package/dist/drivers/stridge-mock/fixtures.d.ts +127 -0
  46. package/dist/drivers/stridge-mock/fixtures.js +1 -0
  47. package/dist/drivers/stridge-mock/store.js +1 -0
  48. package/dist/drivers/stridge-mock/triggers.d.ts +41 -0
  49. package/dist/flows/deposit/dialog/DepositBootstrapErrorState.js +1 -0
  50. package/dist/flows/deposit/dialog/DepositBootstrapErrorState.styles.js +1 -0
  51. package/dist/flows/deposit/dialog/DepositDialog.d.ts +112 -0
  52. package/dist/flows/deposit/dialog/DepositDialog.js +1 -0
  53. package/dist/flows/deposit/driver/context.d.ts +37 -0
  54. package/dist/flows/deposit/driver/context.js +1 -0
  55. package/dist/flows/deposit/driver/payloads.d.ts +342 -0
  56. package/dist/flows/deposit/driver/transformers/balanceToBalancesPayload.js +1 -0
  57. package/dist/flows/deposit/driver/transformers/quoteToPayload.js +1 -0
  58. package/dist/flows/deposit/driver/transformers/settlementToPayload.js +1 -0
  59. package/dist/flows/deposit/driver/transformers/startToAddressesPayload.js +1 -0
  60. package/dist/flows/deposit/driver/transformers/startToBrandPayload.js +1 -0
  61. package/dist/flows/deposit/driver/transformers/startToTargetPayload.js +1 -0
  62. package/dist/flows/deposit/driver/transformers/walletAddressToWalletPayload.js +1 -0
  63. package/dist/flows/deposit/driver/types.d.ts +177 -0
  64. package/dist/flows/deposit/orchestrator/controller.d.ts +11 -0
  65. package/dist/flows/deposit/orchestrator/controller.js +1 -0
  66. package/dist/flows/deposit/orchestrator/reducer.js +1 -0
  67. package/dist/flows/deposit/orchestrator/resolveAssetById.js +1 -0
  68. package/dist/flows/deposit/orchestrator/steps.d.ts +23 -0
  69. package/dist/flows/deposit/orchestrator/steps.js +1 -0
  70. package/dist/flows/deposit/orchestrator/types.d.ts +266 -0
  71. package/dist/flows/deposit/orchestrator/useDeposit.d.ts +35 -0
  72. package/dist/flows/deposit/orchestrator/useDeposit.js +1 -0
  73. package/dist/flows/deposit/widgets/amount-entry/AmountEntry.d.ts +35 -0
  74. package/dist/flows/deposit/widgets/amount-entry/AmountEntry.js +1 -0
  75. package/dist/flows/deposit/widgets/amount-entry/index.d.ts +1 -0
  76. package/dist/flows/deposit/widgets/amount-entry/index.js +1 -0
  77. package/dist/flows/deposit/widgets/asset-picker/AssetPicker.d.ts +25 -0
  78. package/dist/flows/deposit/widgets/asset-picker/AssetPicker.js +1 -0
  79. package/dist/flows/deposit/widgets/asset-picker/index.d.ts +1 -0
  80. package/dist/flows/deposit/widgets/asset-picker/index.js +1 -0
  81. package/dist/flows/deposit/widgets/confirm-deposit/ConfirmDeposit.d.ts +31 -0
  82. package/dist/flows/deposit/widgets/confirm-deposit/ConfirmDeposit.js +1 -0
  83. package/dist/flows/deposit/widgets/confirm-deposit/index.d.ts +1 -0
  84. package/dist/flows/deposit/widgets/confirm-deposit/index.js +1 -0
  85. package/dist/flows/deposit/widgets/deposit/Deposit.d.ts +30 -0
  86. package/dist/flows/deposit/widgets/deposit/Deposit.js +1 -0
  87. package/dist/flows/deposit/widgets/deposit/compound/Deposit.d.ts +51 -0
  88. package/dist/flows/deposit/widgets/deposit/compound/Deposit.js +1 -0
  89. package/dist/flows/deposit/widgets/deposit/compound/Deposit.slots.d.ts +11 -0
  90. package/dist/flows/deposit/widgets/deposit/compound/Deposit.slots.js +1 -0
  91. package/dist/flows/deposit/widgets/deposit/compound/Deposit.styles.js +1 -0
  92. package/dist/flows/deposit/widgets/deposit/compound/components/Header.d.ts +15 -0
  93. package/dist/flows/deposit/widgets/deposit/compound/components/Header.js +1 -0
  94. package/dist/flows/deposit/widgets/deposit/compound/components/Method.d.ts +32 -0
  95. package/dist/flows/deposit/widgets/deposit/compound/components/Method.js +1 -0
  96. package/dist/flows/deposit/widgets/deposit/compound/components/Methods.d.ts +23 -0
  97. package/dist/flows/deposit/widgets/deposit/compound/components/Methods.js +1 -0
  98. package/dist/flows/deposit/widgets/deposit/compound/context.js +1 -0
  99. package/dist/flows/deposit/widgets/deposit/compound/index.d.ts +3 -0
  100. package/dist/flows/deposit/widgets/deposit/compound/index.js +1 -0
  101. package/dist/flows/deposit/widgets/deposit/compound/types.d.ts +129 -0
  102. package/dist/flows/deposit/widgets/deposit/index.d.ts +1 -0
  103. package/dist/flows/deposit/widgets/deposit/index.js +1 -0
  104. package/dist/flows/deposit/widgets/deposit-status-banner/DepositStatusBanner.d.ts +20 -0
  105. package/dist/flows/deposit/widgets/deposit-status-banner/DepositStatusBanner.js +1 -0
  106. package/dist/flows/deposit/widgets/deposit-status-banner/compound/DepositStatusBanner.d.ts +102 -0
  107. package/dist/flows/deposit/widgets/deposit-status-banner/compound/DepositStatusBanner.js +1 -0
  108. package/dist/flows/deposit/widgets/deposit-status-banner/compound/DepositStatusBanner.slots.d.ts +20 -0
  109. package/dist/flows/deposit/widgets/deposit-status-banner/compound/DepositStatusBanner.slots.js +1 -0
  110. package/dist/flows/deposit/widgets/deposit-status-banner/compound/DepositStatusBanner.styles.js +1 -0
  111. package/dist/flows/deposit/widgets/deposit-status-banner/compound/components/Body.d.ts +17 -0
  112. package/dist/flows/deposit/widgets/deposit-status-banner/compound/components/Body.js +1 -0
  113. package/dist/flows/deposit/widgets/deposit-status-banner/compound/components/Close.d.ts +13 -0
  114. package/dist/flows/deposit/widgets/deposit-status-banner/compound/components/Close.js +1 -0
  115. package/dist/flows/deposit/widgets/deposit-status-banner/compound/components/Detail.d.ts +14 -0
  116. package/dist/flows/deposit/widgets/deposit-status-banner/compound/components/Detail.js +1 -0
  117. package/dist/flows/deposit/widgets/deposit-status-banner/compound/components/Details.d.ts +20 -0
  118. package/dist/flows/deposit/widgets/deposit-status-banner/compound/components/Details.js +1 -0
  119. package/dist/flows/deposit/widgets/deposit-status-banner/compound/components/Footer.d.ts +17 -0
  120. package/dist/flows/deposit/widgets/deposit-status-banner/compound/components/Footer.js +1 -0
  121. package/dist/flows/deposit/widgets/deposit-status-banner/compound/components/Hero.d.ts +17 -0
  122. package/dist/flows/deposit/widgets/deposit-status-banner/compound/components/Hero.js +1 -0
  123. package/dist/flows/deposit/widgets/deposit-status-banner/compound/components/PrimaryAction.d.ts +26 -0
  124. package/dist/flows/deposit/widgets/deposit-status-banner/compound/components/PrimaryAction.js +1 -0
  125. package/dist/flows/deposit/widgets/deposit-status-banner/compound/components/Rows.d.ts +35 -0
  126. package/dist/flows/deposit/widgets/deposit-status-banner/compound/components/Rows.js +1 -0
  127. package/dist/flows/deposit/widgets/deposit-status-banner/compound/components/Toggle.d.ts +18 -0
  128. package/dist/flows/deposit/widgets/deposit-status-banner/compound/components/Toggle.js +1 -0
  129. package/dist/flows/deposit/widgets/deposit-status-banner/compound/context.js +1 -0
  130. package/dist/flows/deposit/widgets/deposit-status-banner/compound/index.d.ts +3 -0
  131. package/dist/flows/deposit/widgets/deposit-status-banner/compound/index.js +1 -0
  132. package/dist/flows/deposit/widgets/deposit-status-banner/compound/types.d.ts +188 -0
  133. package/dist/flows/deposit/widgets/deposit-status-banner/index.d.ts +1 -0
  134. package/dist/flows/deposit/widgets/deposit-status-banner/index.js +1 -0
  135. package/dist/flows/deposit/widgets/error-state/ErrorState.d.ts +30 -0
  136. package/dist/flows/deposit/widgets/error-state/ErrorState.js +1 -0
  137. package/dist/flows/deposit/widgets/error-state/index.d.ts +1 -0
  138. package/dist/flows/deposit/widgets/error-state/index.js +1 -0
  139. package/dist/flows/deposit/widgets/processing-state/ProcessingState.d.ts +31 -0
  140. package/dist/flows/deposit/widgets/processing-state/ProcessingState.js +1 -0
  141. package/dist/flows/deposit/widgets/processing-state/index.d.ts +1 -0
  142. package/dist/flows/deposit/widgets/processing-state/index.js +1 -0
  143. package/dist/flows/deposit/widgets/success-state/SuccessState.d.ts +30 -0
  144. package/dist/flows/deposit/widgets/success-state/SuccessState.js +1 -0
  145. package/dist/flows/deposit/widgets/success-state/index.d.ts +1 -0
  146. package/dist/flows/deposit/widgets/success-state/index.js +1 -0
  147. package/dist/flows/deposit/widgets/transfer-crypto/TransferCrypto.d.ts +41 -0
  148. package/dist/flows/deposit/widgets/transfer-crypto/TransferCrypto.js +1 -0
  149. package/dist/flows/deposit/widgets/transfer-crypto/compound/TransferCrypto.d.ts +56 -0
  150. package/dist/flows/deposit/widgets/transfer-crypto/compound/TransferCrypto.js +1 -0
  151. package/dist/flows/deposit/widgets/transfer-crypto/compound/TransferCrypto.slots.d.ts +15 -0
  152. package/dist/flows/deposit/widgets/transfer-crypto/compound/TransferCrypto.slots.js +1 -0
  153. package/dist/flows/deposit/widgets/transfer-crypto/compound/TransferCrypto.styles.js +1 -0
  154. package/dist/flows/deposit/widgets/transfer-crypto/compound/components/Address.d.ts +10 -0
  155. package/dist/flows/deposit/widgets/transfer-crypto/compound/components/Address.js +1 -0
  156. package/dist/flows/deposit/widgets/transfer-crypto/compound/components/Disclosure.d.ts +17 -0
  157. package/dist/flows/deposit/widgets/transfer-crypto/compound/components/Disclosure.js +1 -0
  158. package/dist/flows/deposit/widgets/transfer-crypto/compound/components/Header.d.ts +15 -0
  159. package/dist/flows/deposit/widgets/transfer-crypto/compound/components/Header.js +1 -0
  160. package/dist/flows/deposit/widgets/transfer-crypto/compound/components/InfoTooltip.js +1 -0
  161. package/dist/flows/deposit/widgets/transfer-crypto/compound/components/QrCode.d.ts +21 -0
  162. package/dist/flows/deposit/widgets/transfer-crypto/compound/components/QrCode.js +1 -0
  163. package/dist/flows/deposit/widgets/transfer-crypto/compound/components/Selectors.d.ts +11 -0
  164. package/dist/flows/deposit/widgets/transfer-crypto/compound/components/Selectors.js +1 -0
  165. package/dist/flows/deposit/widgets/transfer-crypto/compound/components/Summary.d.ts +11 -0
  166. package/dist/flows/deposit/widgets/transfer-crypto/compound/components/Summary.js +1 -0
  167. package/dist/flows/deposit/widgets/transfer-crypto/compound/context.js +1 -0
  168. package/dist/flows/deposit/widgets/transfer-crypto/compound/index.d.ts +3 -0
  169. package/dist/flows/deposit/widgets/transfer-crypto/compound/index.js +1 -0
  170. package/dist/flows/deposit/widgets/transfer-crypto/compound/types.d.ts +187 -0
  171. package/dist/flows/deposit/widgets/transfer-crypto/index.d.ts +1 -0
  172. package/dist/flows/deposit/widgets/transfer-crypto/index.js +1 -0
  173. package/dist/flows/shared/transformers/classifySettlementStatus.js +1 -0
  174. package/dist/flows/shared/transformers/computeQuoteAttrs.js +1 -0
  175. package/dist/flows/shared/transformers/parseIsoMs.js +1 -0
  176. package/dist/flows/shared/transformers/parseSmallestUnit.js +1 -0
  177. package/dist/flows/shared/transformers/pickRelevantSettlement.js +1 -0
  178. package/dist/flows/withdraw/dialog/WithdrawDialog.d.ts +103 -0
  179. package/dist/flows/withdraw/dialog/WithdrawDialog.js +1 -0
  180. package/dist/flows/withdraw/dialog/WithdrawDialogEventsContext.d.ts +36 -0
  181. package/dist/flows/withdraw/dialog/WithdrawDialogEventsContext.js +1 -0
  182. package/dist/flows/withdraw/driver/context.d.ts +24 -0
  183. package/dist/flows/withdraw/driver/context.js +1 -0
  184. package/dist/flows/withdraw/driver/dto.d.ts +41 -0
  185. package/dist/flows/withdraw/driver/payloads.d.ts +206 -0
  186. package/dist/flows/withdraw/driver/transformers/balanceToWithdrawableBalancesPayload.js +1 -0
  187. package/dist/flows/withdraw/driver/transformers/quoteToWithdrawalPayload.js +1 -0
  188. package/dist/flows/withdraw/driver/transformers/settlementToWithdrawalPayload.js +1 -0
  189. package/dist/flows/withdraw/driver/transformers/supportedAssetsToReceiveOptionsPayload.js +1 -0
  190. package/dist/flows/withdraw/driver/types.d.ts +133 -0
  191. package/dist/flows/withdraw/orchestrator/controller.d.ts +11 -0
  192. package/dist/flows/withdraw/orchestrator/controller.js +1 -0
  193. package/dist/flows/withdraw/orchestrator/index.d.ts +4 -0
  194. package/dist/flows/withdraw/orchestrator/index.js +1 -0
  195. package/dist/flows/withdraw/orchestrator/reducer.js +1 -0
  196. package/dist/flows/withdraw/orchestrator/types.d.ts +156 -0
  197. package/dist/flows/withdraw/orchestrator/useWithdraw.d.ts +23 -0
  198. package/dist/flows/withdraw/orchestrator/useWithdraw.js +1 -0
  199. package/dist/flows/withdraw/widgets/withdraw-error/WithdrawError.d.ts +22 -0
  200. package/dist/flows/withdraw/widgets/withdraw-error/WithdrawError.js +1 -0
  201. package/dist/flows/withdraw/widgets/withdraw-error/index.d.ts +1 -0
  202. package/dist/flows/withdraw/widgets/withdraw-error/index.js +1 -0
  203. package/dist/flows/withdraw/widgets/withdraw-form/WithdrawForm.d.ts +29 -0
  204. package/dist/flows/withdraw/widgets/withdraw-form/WithdrawForm.js +1 -0
  205. package/dist/flows/withdraw/widgets/withdraw-form/compound/WithdrawForm.d.ts +55 -0
  206. package/dist/flows/withdraw/widgets/withdraw-form/compound/WithdrawForm.js +1 -0
  207. package/dist/flows/withdraw/widgets/withdraw-form/compound/WithdrawForm.slots.d.ts +31 -0
  208. package/dist/flows/withdraw/widgets/withdraw-form/compound/WithdrawForm.slots.js +1 -0
  209. package/dist/flows/withdraw/widgets/withdraw-form/compound/WithdrawForm.styles.js +1 -0
  210. package/dist/flows/withdraw/widgets/withdraw-form/compound/components/AmountField.d.ts +12 -0
  211. package/dist/flows/withdraw/widgets/withdraw-form/compound/components/AmountField.js +1 -0
  212. package/dist/flows/withdraw/widgets/withdraw-form/compound/components/Body.d.ts +20 -0
  213. package/dist/flows/withdraw/widgets/withdraw-form/compound/components/Body.js +1 -0
  214. package/dist/flows/withdraw/widgets/withdraw-form/compound/components/BreakdownCard.d.ts +17 -0
  215. package/dist/flows/withdraw/widgets/withdraw-form/compound/components/BreakdownCard.js +1 -0
  216. package/dist/flows/withdraw/widgets/withdraw-form/compound/components/Footer.d.ts +18 -0
  217. package/dist/flows/withdraw/widgets/withdraw-form/compound/components/Footer.js +1 -0
  218. package/dist/flows/withdraw/widgets/withdraw-form/compound/components/Header.d.ts +21 -0
  219. package/dist/flows/withdraw/widgets/withdraw-form/compound/components/Header.js +1 -0
  220. package/dist/flows/withdraw/widgets/withdraw-form/compound/components/InfoTooltip.js +1 -0
  221. package/dist/flows/withdraw/widgets/withdraw-form/compound/components/ReceiveSelectors.d.ts +13 -0
  222. package/dist/flows/withdraw/widgets/withdraw-form/compound/components/ReceiveSelectors.js +1 -0
  223. package/dist/flows/withdraw/widgets/withdraw-form/compound/components/RecipientField.d.ts +19 -0
  224. package/dist/flows/withdraw/widgets/withdraw-form/compound/components/RecipientField.js +1 -0
  225. package/dist/flows/withdraw/widgets/withdraw-form/compound/context.js +1 -0
  226. package/dist/flows/withdraw/widgets/withdraw-form/compound/index.d.ts +3 -0
  227. package/dist/flows/withdraw/widgets/withdraw-form/compound/index.js +1 -0
  228. package/dist/flows/withdraw/widgets/withdraw-form/compound/types.d.ts +149 -0
  229. package/dist/flows/withdraw/widgets/withdraw-form/index.d.ts +1 -0
  230. package/dist/flows/withdraw/widgets/withdraw-form/index.js +1 -0
  231. package/dist/flows/withdraw/widgets/withdraw-form/validation.js +1 -0
  232. package/dist/flows/withdraw/widgets/withdraw-in-progress/WithdrawInProgress.d.ts +19 -0
  233. package/dist/flows/withdraw/widgets/withdraw-in-progress/WithdrawInProgress.js +1 -0
  234. package/dist/flows/withdraw/widgets/withdraw-in-progress/index.d.ts +1 -0
  235. package/dist/flows/withdraw/widgets/withdraw-in-progress/index.js +1 -0
  236. package/dist/flows/withdraw/widgets/withdraw-success/WithdrawSuccess.d.ts +20 -0
  237. package/dist/flows/withdraw/widgets/withdraw-success/WithdrawSuccess.js +1 -0
  238. package/dist/flows/withdraw/widgets/withdraw-success/index.d.ts +1 -0
  239. package/dist/flows/withdraw/widgets/withdraw-success/index.js +1 -0
  240. package/dist/format/index.d.ts +10 -0
  241. package/dist/format/index.js +1 -0
  242. package/dist/i18n/index.d.ts +9 -0
  243. package/dist/i18n/index.js +1 -0
  244. package/dist/i18n/locales/ar.d.ts +6 -0
  245. package/dist/i18n/locales/ar.js +1 -0
  246. package/dist/i18n/locales/es.d.ts +6 -0
  247. package/dist/i18n/locales/es.js +1 -0
  248. package/dist/icons/index.d.ts +27 -0
  249. package/dist/icons/index.js +1 -0
  250. package/dist/index.d.ts +26 -0
  251. package/dist/index.js +1 -0
  252. package/dist/kit/package.js +1 -0
  253. package/dist/scope/KitPortalScope.d.ts +31 -0
  254. package/dist/scope/KitPortalScope.js +1 -0
  255. package/dist/scope/KitScope.d.ts +63 -0
  256. package/dist/scope/KitScope.js +1 -0
  257. package/dist/scope/KitScope.slots.js +1 -0
  258. package/dist/scope/context.d.ts +67 -0
  259. package/dist/scope/context.js +1 -0
  260. package/dist/scope/index.d.ts +3 -0
  261. package/dist/scope/index.js +1 -0
  262. package/dist/shared/chains/index.d.ts +40 -0
  263. package/dist/shared/chains/index.js +1 -0
  264. package/dist/shared/constants/brand-links.js +1 -0
  265. package/dist/shared/dialog/DialogShell.d.ts +63 -0
  266. package/dist/shared/dialog/DialogShell.js +1 -0
  267. package/dist/shared/dialog/Frame.js +1 -0
  268. package/dist/shared/dialog/GatewayKitRoot.js +1 -0
  269. package/dist/shared/dialog/StepTransition.js +1 -0
  270. package/dist/shared/dialog/useDirectionalChevronTransform.js +1 -0
  271. package/dist/shared/driver/types.d.ts +69 -0
  272. package/dist/shared/error-handling/components/GatewayKitBoundary.js +1 -0
  273. package/dist/shared/error-handling/components/GatewayKitErrorCard/GatewayKitErrorCard.js +1 -0
  274. package/dist/shared/error-handling/components/GatewayKitErrorCard/GatewayKitErrorCard.slots.js +1 -0
  275. package/dist/shared/error-handling/components/GatewayKitErrorCard/GatewayKitErrorCard.styles.js +1 -0
  276. package/dist/shared/error-handling/components/GatewayKitErrorCard/components/Action.js +1 -0
  277. package/dist/shared/error-handling/components/GatewayKitErrorCard/components/Actions.js +1 -0
  278. package/dist/shared/error-handling/components/GatewayKitErrorCard/components/CodeSample.js +1 -0
  279. package/dist/shared/error-handling/components/GatewayKitErrorCard/components/Description.js +1 -0
  280. package/dist/shared/error-handling/components/GatewayKitErrorCard/components/DetailRow.js +1 -0
  281. package/dist/shared/error-handling/components/GatewayKitErrorCard/components/Guidance.js +1 -0
  282. package/dist/shared/error-handling/components/GatewayKitErrorCard/components/Section.js +1 -0
  283. package/dist/shared/error-handling/components/GatewayKitErrorCard/components/TechnicalDetails.js +1 -0
  284. package/dist/shared/error-handling/components/GatewayKitErrorCard/components/TechnicalDetailsToggle.js +1 -0
  285. package/dist/shared/error-handling/components/GatewayKitErrorCard/components/Title.js +1 -0
  286. package/dist/shared/error-handling/components/GatewayKitErrorCard/context.js +1 -0
  287. package/dist/shared/error-handling/components/GatewayKitErrorCard/index.js +1 -0
  288. package/dist/shared/error-handling/components/GatewayKitRecoveryError.js +1 -0
  289. package/dist/shared/error-handling/components/GatewayKitSetupError.js +1 -0
  290. package/dist/shared/error-handling/constants/guides.js +1 -0
  291. package/dist/shared/error-handling/constants/snippets.js +6 -0
  292. package/dist/shared/error-handling/index.js +1 -0
  293. package/dist/shared/error-handling/lib/isWagmiProviderMissingError.js +1 -0
  294. package/dist/shared/format/formatDurationCoarse.d.ts +29 -0
  295. package/dist/shared/format/formatDurationCoarse.js +1 -0
  296. package/dist/shared/format/formatDurationCompact.d.ts +28 -0
  297. package/dist/shared/format/formatDurationCompact.js +1 -0
  298. package/dist/shared/format/formatNetworkName.d.ts +27 -0
  299. package/dist/shared/format/formatNetworkName.js +1 -0
  300. package/dist/shared/format/formatPercent.d.ts +23 -0
  301. package/dist/shared/format/formatPercent.js +1 -0
  302. package/dist/shared/format/formatTimestamp.d.ts +22 -0
  303. package/dist/shared/format/formatTimestamp.js +1 -0
  304. package/dist/shared/format/formatTokenAmount.d.ts +46 -0
  305. package/dist/shared/format/formatTokenAmount.js +1 -0
  306. package/dist/shared/format/formatUsd.d.ts +41 -0
  307. package/dist/shared/format/formatUsd.js +1 -0
  308. package/dist/shared/format/shortenAddress.d.ts +27 -0
  309. package/dist/shared/format/shortenAddress.js +1 -0
  310. package/dist/shared/format/types.d.ts +33 -0
  311. package/dist/shared/i18n/KitI18nProvider.d.ts +23 -0
  312. package/dist/shared/i18n/KitI18nProvider.js +1 -0
  313. package/dist/shared/i18n/Trans.d.ts +39 -0
  314. package/dist/shared/i18n/Trans.js +1 -0
  315. package/dist/shared/i18n/createKitI18n.d.ts +41 -0
  316. package/dist/shared/i18n/createKitI18n.js +1 -0
  317. package/dist/shared/i18n/defaultI18n.js +1 -0
  318. package/dist/shared/i18n/getLocaleDirection.d.ts +24 -0
  319. package/dist/shared/i18n/getLocaleDirection.js +1 -0
  320. package/dist/shared/i18n/locales.d.ts +31 -0
  321. package/dist/shared/i18n/locales.js +1 -0
  322. package/dist/shared/i18n/useKitI18n.d.ts +14 -0
  323. package/dist/shared/i18n/useKitI18n.js +1 -0
  324. package/dist/shared/i18n/useLingui.d.ts +35 -0
  325. package/dist/shared/i18n/useLingui.js +1 -0
  326. package/dist/shared/i18n/useT.d.ts +25 -0
  327. package/dist/shared/i18n/useT.js +1 -0
  328. package/dist/shared/icons/AlertIcon.d.ts +12 -0
  329. package/dist/shared/icons/AlertIcon.js +1 -0
  330. package/dist/shared/icons/ArrowDownIcon.d.ts +7 -0
  331. package/dist/shared/icons/ArrowDownIcon.js +1 -0
  332. package/dist/shared/icons/ArrowRightIcon.d.ts +7 -0
  333. package/dist/shared/icons/ArrowRightIcon.js +1 -0
  334. package/dist/shared/icons/ArrowRightLeftIcon.d.ts +7 -0
  335. package/dist/shared/icons/ArrowRightLeftIcon.js +1 -0
  336. package/dist/shared/icons/CheckIcon.d.ts +7 -0
  337. package/dist/shared/icons/CheckIcon.js +1 -0
  338. package/dist/shared/icons/ChevronDownIcon.d.ts +7 -0
  339. package/dist/shared/icons/ChevronDownIcon.js +1 -0
  340. package/dist/shared/icons/ChevronLeftIcon.d.ts +7 -0
  341. package/dist/shared/icons/ChevronLeftIcon.js +1 -0
  342. package/dist/shared/icons/ChevronRightIcon.d.ts +7 -0
  343. package/dist/shared/icons/ChevronRightIcon.js +1 -0
  344. package/dist/shared/icons/ChevronUpIcon.d.ts +7 -0
  345. package/dist/shared/icons/ChevronUpIcon.js +1 -0
  346. package/dist/shared/icons/CircleArrowUpIcon.d.ts +7 -0
  347. package/dist/shared/icons/CircleArrowUpIcon.js +1 -0
  348. package/dist/shared/icons/CircleHelpIcon.d.ts +7 -0
  349. package/dist/shared/icons/CircleHelpIcon.js +1 -0
  350. package/dist/shared/icons/ClockIcon.d.ts +7 -0
  351. package/dist/shared/icons/ClockIcon.js +1 -0
  352. package/dist/shared/icons/CopyIcon.d.ts +7 -0
  353. package/dist/shared/icons/CopyIcon.js +1 -0
  354. package/dist/shared/icons/ExternalLinkIcon.d.ts +7 -0
  355. package/dist/shared/icons/ExternalLinkIcon.js +1 -0
  356. package/dist/shared/icons/InfoIcon.d.ts +7 -0
  357. package/dist/shared/icons/InfoIcon.js +1 -0
  358. package/dist/shared/icons/LoaderIcon.d.ts +7 -0
  359. package/dist/shared/icons/LoaderIcon.js +1 -0
  360. package/dist/shared/icons/MailIcon.d.ts +7 -0
  361. package/dist/shared/icons/MailIcon.js +1 -0
  362. package/dist/shared/icons/PackageIcon.d.ts +7 -0
  363. package/dist/shared/icons/PackageIcon.js +1 -0
  364. package/dist/shared/icons/QrCodeIcon.d.ts +7 -0
  365. package/dist/shared/icons/QrCodeIcon.js +1 -0
  366. package/dist/shared/icons/WalletIcon.d.ts +7 -0
  367. package/dist/shared/icons/WalletIcon.js +1 -0
  368. package/dist/shared/icons/XIcon.d.ts +7 -0
  369. package/dist/shared/icons/XIcon.js +1 -0
  370. package/dist/shared/icons/exchanges/BinanceIcon.d.ts +7 -0
  371. package/dist/shared/icons/exchanges/BinanceIcon.js +1 -0
  372. package/dist/shared/icons/exchanges/CoinbaseIcon.d.ts +7 -0
  373. package/dist/shared/icons/exchanges/CoinbaseIcon.js +1 -0
  374. package/dist/shared/icons/exchanges/KrakenIcon.d.ts +7 -0
  375. package/dist/shared/icons/exchanges/KrakenIcon.js +1 -0
  376. package/dist/shared/icons/exchanges/OkxIcon.d.ts +7 -0
  377. package/dist/shared/icons/exchanges/OkxIcon.js +1 -0
  378. package/dist/shared/icons/exchanges/RobinhoodIcon.d.ts +7 -0
  379. package/dist/shared/icons/exchanges/RobinhoodIcon.js +1 -0
  380. package/dist/shared/icons/exchanges/index.d.ts +5 -0
  381. package/dist/shared/icons/exchanges/index.js +1 -0
  382. package/dist/shared/orchestrator/failureReason.js +1 -0
  383. package/dist/shared/orchestrator/index.js +1 -0
  384. package/dist/shared/orchestrator/toFailure.js +1 -0
  385. package/dist/shared/orchestrator/types.d.ts +20 -0
  386. package/dist/shared/orchestrator/useDialogLifecycle.js +1 -0
  387. package/dist/shared/orchestrator/useDriverSettlementListener.js +1 -0
  388. package/dist/shared/orchestrator/useEffectiveState.js +1 -0
  389. package/dist/shared/orchestrator/useSettlementWatcher.js +1 -0
  390. package/dist/shared/orchestrator/userRejection.js +1 -0
  391. package/dist/shared/primitives/TxHashValue/TxHashValue.d.ts +20 -0
  392. package/dist/shared/primitives/TxHashValue/TxHashValue.js +1 -0
  393. package/dist/shared/primitives/TxHashValue/TxHashValue.slots.js +1 -0
  394. package/dist/shared/primitives/TxHashValue/TxHashValue.styles.js +1 -0
  395. package/dist/shared/primitives/TxHashValue/index.d.ts +2 -0
  396. package/dist/shared/primitives/TxHashValue/index.js +1 -0
  397. package/dist/shared/primitives/TxHashValue/types.d.ts +25 -0
  398. package/dist/shared/primitives/WalletValue/WalletValue.d.ts +40 -0
  399. package/dist/shared/primitives/WalletValue/WalletValue.js +1 -0
  400. package/dist/shared/primitives/WalletValue/index.d.ts +1 -0
  401. package/dist/shared/primitives/WalletValue/index.js +1 -0
  402. package/dist/shared/quote/index.js +1 -0
  403. package/dist/shared/quote/useQuoteCountdown.js +1 -0
  404. package/dist/shared/styles/tokens.stylex.js +1 -0
  405. package/dist/shared/ui/Alert/Alert.d.ts +105 -0
  406. package/dist/shared/ui/Alert/Alert.js +1 -0
  407. package/dist/shared/ui/Alert/Alert.slots.d.ts +10 -0
  408. package/dist/shared/ui/Alert/Alert.slots.js +1 -0
  409. package/dist/shared/ui/Alert/Alert.styles.js +1 -0
  410. package/dist/shared/ui/Alert/index.d.ts +2 -0
  411. package/dist/shared/ui/Alert/index.js +1 -0
  412. package/dist/shared/ui/AmountInput/AmountInput.d.ts +132 -0
  413. package/dist/shared/ui/AmountInput/AmountInput.js +1 -0
  414. package/dist/shared/ui/AmountInput/AmountInput.slots.d.ts +11 -0
  415. package/dist/shared/ui/AmountInput/AmountInput.slots.js +1 -0
  416. package/dist/shared/ui/AmountInput/AmountInput.styles.js +1 -0
  417. package/dist/shared/ui/AmountInput/attachInputNormalization.js +1 -0
  418. package/dist/shared/ui/AmountInput/context.js +1 -0
  419. package/dist/shared/ui/AmountInput/index.d.ts +3 -0
  420. package/dist/shared/ui/AmountInput/index.js +1 -0
  421. package/dist/shared/ui/AmountInput/useAutoShrinkFontSize.js +14 -0
  422. package/dist/shared/ui/AmountInput/utils.d.ts +12 -0
  423. package/dist/shared/ui/AmountInput/utils.js +1 -0
  424. package/dist/shared/ui/Badge/Badge.d.ts +89 -0
  425. package/dist/shared/ui/Badge/Badge.js +1 -0
  426. package/dist/shared/ui/Badge/Badge.slots.d.ts +7 -0
  427. package/dist/shared/ui/Badge/Badge.slots.js +1 -0
  428. package/dist/shared/ui/Badge/Badge.styles.js +1 -0
  429. package/dist/shared/ui/Badge/index.d.ts +2 -0
  430. package/dist/shared/ui/Badge/index.js +1 -0
  431. package/dist/shared/ui/Button/Button.d.ts +82 -0
  432. package/dist/shared/ui/Button/Button.js +1 -0
  433. package/dist/shared/ui/Button/Button.slots.d.ts +7 -0
  434. package/dist/shared/ui/Button/Button.slots.js +1 -0
  435. package/dist/shared/ui/Button/Button.styles.js +1 -0
  436. package/dist/shared/ui/Button/index.d.ts +2 -0
  437. package/dist/shared/ui/Button/index.js +1 -0
  438. package/dist/shared/ui/Card/Card.d.ts +93 -0
  439. package/dist/shared/ui/Card/Card.js +1 -0
  440. package/dist/shared/ui/Card/Card.slots.d.ts +10 -0
  441. package/dist/shared/ui/Card/Card.slots.js +1 -0
  442. package/dist/shared/ui/Card/Card.styles.js +1 -0
  443. package/dist/shared/ui/Card/index.d.ts +2 -0
  444. package/dist/shared/ui/Card/index.js +1 -0
  445. package/dist/shared/ui/Collapsible/Collapsible.d.ts +57 -0
  446. package/dist/shared/ui/Collapsible/Collapsible.js +1 -0
  447. package/dist/shared/ui/Collapsible/Collapsible.slots.d.ts +10 -0
  448. package/dist/shared/ui/Collapsible/Collapsible.slots.js +1 -0
  449. package/dist/shared/ui/Collapsible/Collapsible.styles.js +1 -0
  450. package/dist/shared/ui/Collapsible/index.d.ts +2 -0
  451. package/dist/shared/ui/Collapsible/index.js +1 -0
  452. package/dist/shared/ui/Details/Details.d.ts +76 -0
  453. package/dist/shared/ui/Details/Details.js +1 -0
  454. package/dist/shared/ui/Details/Details.slots.d.ts +9 -0
  455. package/dist/shared/ui/Details/Details.slots.js +1 -0
  456. package/dist/shared/ui/Details/Details.styles.js +1 -0
  457. package/dist/shared/ui/Details/index.d.ts +2 -0
  458. package/dist/shared/ui/Details/index.js +1 -0
  459. package/dist/shared/ui/Dialog/Dialog.d.ts +147 -0
  460. package/dist/shared/ui/Dialog/Dialog.js +1 -0
  461. package/dist/shared/ui/Dialog/Dialog.slots.d.ts +17 -0
  462. package/dist/shared/ui/Dialog/Dialog.slots.js +1 -0
  463. package/dist/shared/ui/Dialog/Dialog.styles.js +1 -0
  464. package/dist/shared/ui/Dialog/index.d.ts +2 -0
  465. package/dist/shared/ui/Dialog/index.js +1 -0
  466. package/dist/shared/ui/ExternalLink/ExternalLink.d.ts +41 -0
  467. package/dist/shared/ui/ExternalLink/ExternalLink.js +1 -0
  468. package/dist/shared/ui/ExternalLink/ExternalLink.slots.d.ts +7 -0
  469. package/dist/shared/ui/ExternalLink/ExternalLink.slots.js +1 -0
  470. package/dist/shared/ui/ExternalLink/ExternalLink.styles.js +1 -0
  471. package/dist/shared/ui/ExternalLink/index.d.ts +2 -0
  472. package/dist/shared/ui/ExternalLink/index.js +1 -0
  473. package/dist/shared/ui/ExternalLink/toSafeHref.js +1 -0
  474. package/dist/shared/ui/Field/Field.d.ts +185 -0
  475. package/dist/shared/ui/Field/Field.js +1 -0
  476. package/dist/shared/ui/Field/Field.slots.d.ts +21 -0
  477. package/dist/shared/ui/Field/Field.slots.js +1 -0
  478. package/dist/shared/ui/Field/Field.styles.js +1 -0
  479. package/dist/shared/ui/Field/index.d.ts +2 -0
  480. package/dist/shared/ui/Field/index.js +1 -0
  481. package/dist/shared/ui/IconButton/IconButton.d.ts +48 -0
  482. package/dist/shared/ui/IconButton/IconButton.js +1 -0
  483. package/dist/shared/ui/IconButton/IconButton.slots.d.ts +7 -0
  484. package/dist/shared/ui/IconButton/IconButton.slots.js +1 -0
  485. package/dist/shared/ui/IconButton/IconButton.styles.js +1 -0
  486. package/dist/shared/ui/IconButton/index.d.ts +2 -0
  487. package/dist/shared/ui/IconButton/index.js +1 -0
  488. package/dist/shared/ui/Image/Image.d.ts +43 -0
  489. package/dist/shared/ui/Image/Image.js +1 -0
  490. package/dist/shared/ui/Image/Image.slots.d.ts +14 -0
  491. package/dist/shared/ui/Image/Image.slots.js +1 -0
  492. package/dist/shared/ui/Image/Image.styles.js +1 -0
  493. package/dist/shared/ui/Image/index.d.ts +3 -0
  494. package/dist/shared/ui/Image/index.js +1 -0
  495. package/dist/shared/ui/Image/types.d.ts +131 -0
  496. package/dist/shared/ui/InputGroup/InputGroup.d.ts +129 -0
  497. package/dist/shared/ui/InputGroup/InputGroup.js +1 -0
  498. package/dist/shared/ui/InputGroup/InputGroup.slots.d.ts +16 -0
  499. package/dist/shared/ui/InputGroup/InputGroup.slots.js +1 -0
  500. package/dist/shared/ui/InputGroup/InputGroup.styles.js +1 -0
  501. package/dist/shared/ui/InputGroup/index.d.ts +2 -0
  502. package/dist/shared/ui/InputGroup/index.js +1 -0
  503. package/dist/shared/ui/LtrAtom/LtrAtom.d.ts +31 -0
  504. package/dist/shared/ui/LtrAtom/LtrAtom.js +1 -0
  505. package/dist/shared/ui/LtrAtom/index.d.ts +1 -0
  506. package/dist/shared/ui/LtrAtom/index.js +1 -0
  507. package/dist/shared/ui/ScrollArea/ScrollArea.d.ts +86 -0
  508. package/dist/shared/ui/ScrollArea/ScrollArea.js +1 -0
  509. package/dist/shared/ui/ScrollArea/ScrollArea.slots.d.ts +12 -0
  510. package/dist/shared/ui/ScrollArea/ScrollArea.slots.js +1 -0
  511. package/dist/shared/ui/ScrollArea/ScrollArea.styles.js +1 -0
  512. package/dist/shared/ui/ScrollArea/index.d.ts +2 -0
  513. package/dist/shared/ui/ScrollArea/index.js +1 -0
  514. package/dist/shared/ui/Select/Select.context.d.ts +10 -0
  515. package/dist/shared/ui/Select/Select.context.js +1 -0
  516. package/dist/shared/ui/Select/Select.d.ts +243 -0
  517. package/dist/shared/ui/Select/Select.js +1 -0
  518. package/dist/shared/ui/Select/Select.slots.d.ts +20 -0
  519. package/dist/shared/ui/Select/Select.slots.js +1 -0
  520. package/dist/shared/ui/Select/Select.styles.js +1 -0
  521. package/dist/shared/ui/Select/index.d.ts +3 -0
  522. package/dist/shared/ui/Select/index.js +1 -0
  523. package/dist/shared/ui/SelectableTile/SelectableTile.d.ts +83 -0
  524. package/dist/shared/ui/SelectableTile/SelectableTile.js +1 -0
  525. package/dist/shared/ui/SelectableTile/SelectableTile.slots.d.ts +7 -0
  526. package/dist/shared/ui/SelectableTile/SelectableTile.slots.js +1 -0
  527. package/dist/shared/ui/SelectableTile/SelectableTile.styles.js +1 -0
  528. package/dist/shared/ui/SelectableTile/SelectableTileGroup.d.ts +82 -0
  529. package/dist/shared/ui/SelectableTile/SelectableTileGroup.js +1 -0
  530. package/dist/shared/ui/SelectableTile/index.d.ts +3 -0
  531. package/dist/shared/ui/SelectableTile/index.js +1 -0
  532. package/dist/shared/ui/Skeleton/Skeleton.d.ts +41 -0
  533. package/dist/shared/ui/Skeleton/Skeleton.js +1 -0
  534. package/dist/shared/ui/Skeleton/Skeleton.slots.d.ts +7 -0
  535. package/dist/shared/ui/Skeleton/Skeleton.slots.js +1 -0
  536. package/dist/shared/ui/Skeleton/Skeleton.styles.js +1 -0
  537. package/dist/shared/ui/Skeleton/index.d.ts +2 -0
  538. package/dist/shared/ui/Skeleton/index.js +1 -0
  539. package/dist/shared/ui/Text/Text.d.ts +87 -0
  540. package/dist/shared/ui/Text/Text.js +1 -0
  541. package/dist/shared/ui/Text/Text.slots.d.ts +7 -0
  542. package/dist/shared/ui/Text/Text.slots.js +1 -0
  543. package/dist/shared/ui/Text/Text.styles.js +1 -0
  544. package/dist/shared/ui/Text/index.d.ts +2 -0
  545. package/dist/shared/ui/Text/index.js +1 -0
  546. package/dist/shared/ui/TokenLogo/TokenLogo.d.ts +41 -0
  547. package/dist/shared/ui/TokenLogo/TokenLogo.js +1 -0
  548. package/dist/shared/ui/TokenLogo/index.d.ts +2 -0
  549. package/dist/shared/ui/TokenLogo/index.js +1 -0
  550. package/dist/shared/ui/TokenLogo/types.d.ts +64 -0
  551. package/dist/shared/ui/Tooltip/Tooltip.d.ts +171 -0
  552. package/dist/shared/ui/Tooltip/Tooltip.js +1 -0
  553. package/dist/shared/ui/Tooltip/Tooltip.slots.d.ts +11 -0
  554. package/dist/shared/ui/Tooltip/Tooltip.slots.js +1 -0
  555. package/dist/shared/ui/Tooltip/Tooltip.styles.js +1 -0
  556. package/dist/shared/ui/Tooltip/index.d.ts +2 -0
  557. package/dist/shared/ui/Tooltip/index.js +1 -0
  558. package/dist/shared/ui/WalletRow/WalletRow.d.ts +55 -0
  559. package/dist/shared/ui/WalletRow/WalletRow.js +1 -0
  560. package/dist/shared/ui/WalletRow/WalletRow.slots.d.ts +7 -0
  561. package/dist/shared/ui/WalletRow/WalletRow.slots.js +1 -0
  562. package/dist/shared/ui/WalletRow/WalletRow.styles.js +1 -0
  563. package/dist/shared/ui/WalletRow/index.d.ts +2 -0
  564. package/dist/shared/ui/WalletRow/index.js +1 -0
  565. package/dist/shared/utils/explorers.js +1 -0
  566. package/dist/shared/utils/joinClassNames.js +1 -0
  567. package/dist/shared/utils/logos/api.d.ts +54 -0
  568. package/dist/shared/utils/logos/api.js +1 -0
  569. package/dist/shared/utils/logos/chains.d.ts +32 -0
  570. package/dist/shared/utils/logos/chains.js +1 -0
  571. package/dist/shared/utils/logos/conventionUrls.js +1 -0
  572. package/dist/shared/utils/logos/index.js +1 -0
  573. package/dist/shared/utils/logos/resolveLogoSrc.js +1 -0
  574. package/dist/shared/utils/logos/types.d.ts +62 -0
  575. package/dist/shared/utils/mergeClassName.js +1 -0
  576. package/dist/shared/utils/mergeStyle.js +1 -0
  577. package/dist/shared/wallet/resolveSupportedChainIds.js +1 -0
  578. package/dist/shared/wallet/resolveSupportedChains.js +1 -0
  579. package/dist/shared/wallet/types.d.ts +103 -0
  580. package/dist/shared/wallet/useWalletState.d.ts +21 -0
  581. package/dist/shared/wallet/useWalletState.js +1 -0
  582. package/dist/shared/widgets/amount-entry/compound/AmountEntry.d.ts +59 -0
  583. package/dist/shared/widgets/amount-entry/compound/AmountEntry.js +1 -0
  584. package/dist/shared/widgets/amount-entry/compound/AmountEntry.slots.d.ts +15 -0
  585. package/dist/shared/widgets/amount-entry/compound/AmountEntry.slots.js +1 -0
  586. package/dist/shared/widgets/amount-entry/compound/AmountEntry.styles.js +1 -0
  587. package/dist/shared/widgets/amount-entry/compound/components/Flow.d.ts +14 -0
  588. package/dist/shared/widgets/amount-entry/compound/components/Flow.js +1 -0
  589. package/dist/shared/widgets/amount-entry/compound/components/Footer.d.ts +22 -0
  590. package/dist/shared/widgets/amount-entry/compound/components/Footer.js +1 -0
  591. package/dist/shared/widgets/amount-entry/compound/components/Header.d.ts +15 -0
  592. package/dist/shared/widgets/amount-entry/compound/components/Header.js +1 -0
  593. package/dist/shared/widgets/amount-entry/compound/components/Hero/Hero.d.ts +22 -0
  594. package/dist/shared/widgets/amount-entry/compound/components/Hero/Hero.js +1 -0
  595. package/dist/shared/widgets/amount-entry/compound/components/Hero/StaticBand.js +1 -0
  596. package/dist/shared/widgets/amount-entry/compound/components/Hero/SwapBackdrop.js +1 -0
  597. package/dist/shared/widgets/amount-entry/compound/components/Hero/index.d.ts +1 -0
  598. package/dist/shared/widgets/amount-entry/compound/components/Hero/index.js +1 -0
  599. package/dist/shared/widgets/amount-entry/compound/components/Hero/transitions.js +1 -0
  600. package/dist/shared/widgets/amount-entry/compound/components/Hero/useSwapState.js +1 -0
  601. package/dist/shared/widgets/amount-entry/compound/components/Hero/utils.js +1 -0
  602. package/dist/shared/widgets/amount-entry/compound/components/Pills.d.ts +22 -0
  603. package/dist/shared/widgets/amount-entry/compound/components/Pills.js +1 -0
  604. package/dist/shared/widgets/amount-entry/compound/context.js +1 -0
  605. package/dist/shared/widgets/amount-entry/compound/index.d.ts +3 -0
  606. package/dist/shared/widgets/amount-entry/compound/index.js +1 -0
  607. package/dist/shared/widgets/amount-entry/compound/types.d.ts +224 -0
  608. package/dist/shared/widgets/asset-descriptor.d.ts +27 -0
  609. package/dist/shared/widgets/asset-descriptor.js +1 -0
  610. package/dist/shared/widgets/asset-picker/compound/AssetPicker.d.ts +51 -0
  611. package/dist/shared/widgets/asset-picker/compound/AssetPicker.js +1 -0
  612. package/dist/shared/widgets/asset-picker/compound/AssetPicker.slots.d.ts +11 -0
  613. package/dist/shared/widgets/asset-picker/compound/AssetPicker.slots.js +1 -0
  614. package/dist/shared/widgets/asset-picker/compound/AssetPicker.styles.js +1 -0
  615. package/dist/shared/widgets/asset-picker/compound/components/Asset.d.ts +30 -0
  616. package/dist/shared/widgets/asset-picker/compound/components/Asset.js +1 -0
  617. package/dist/shared/widgets/asset-picker/compound/components/Footer.d.ts +16 -0
  618. package/dist/shared/widgets/asset-picker/compound/components/Footer.js +1 -0
  619. package/dist/shared/widgets/asset-picker/compound/components/Header.d.ts +19 -0
  620. package/dist/shared/widgets/asset-picker/compound/components/Header.js +1 -0
  621. package/dist/shared/widgets/asset-picker/compound/components/List.d.ts +22 -0
  622. package/dist/shared/widgets/asset-picker/compound/components/List.js +1 -0
  623. package/dist/shared/widgets/asset-picker/compound/context.js +1 -0
  624. package/dist/shared/widgets/asset-picker/compound/index.d.ts +3 -0
  625. package/dist/shared/widgets/asset-picker/compound/index.js +1 -0
  626. package/dist/shared/widgets/asset-picker/compound/types.d.ts +212 -0
  627. package/dist/shared/widgets/confirm-transfer/compound/ConfirmTransfer.d.ts +64 -0
  628. package/dist/shared/widgets/confirm-transfer/compound/ConfirmTransfer.js +1 -0
  629. package/dist/shared/widgets/confirm-transfer/compound/ConfirmTransfer.slots.d.ts +16 -0
  630. package/dist/shared/widgets/confirm-transfer/compound/ConfirmTransfer.slots.js +1 -0
  631. package/dist/shared/widgets/confirm-transfer/compound/ConfirmTransfer.styles.js +1 -0
  632. package/dist/shared/widgets/confirm-transfer/compound/components/Amounts.d.ts +15 -0
  633. package/dist/shared/widgets/confirm-transfer/compound/components/Amounts.js +1 -0
  634. package/dist/shared/widgets/confirm-transfer/compound/components/Breakdown.d.ts +17 -0
  635. package/dist/shared/widgets/confirm-transfer/compound/components/Breakdown.js +1 -0
  636. package/dist/shared/widgets/confirm-transfer/compound/components/Disclaimer.d.ts +15 -0
  637. package/dist/shared/widgets/confirm-transfer/compound/components/Disclaimer.js +1 -0
  638. package/dist/shared/widgets/confirm-transfer/compound/components/Footer.d.ts +26 -0
  639. package/dist/shared/widgets/confirm-transfer/compound/components/Footer.js +1 -0
  640. package/dist/shared/widgets/confirm-transfer/compound/components/Header.d.ts +13 -0
  641. package/dist/shared/widgets/confirm-transfer/compound/components/Header.js +1 -0
  642. package/dist/shared/widgets/confirm-transfer/compound/components/Hero.d.ts +16 -0
  643. package/dist/shared/widgets/confirm-transfer/compound/components/Hero.js +1 -0
  644. package/dist/shared/widgets/confirm-transfer/compound/components/Meta.d.ts +16 -0
  645. package/dist/shared/widgets/confirm-transfer/compound/components/Meta.js +1 -0
  646. package/dist/shared/widgets/confirm-transfer/compound/components/QuoteTimer.js +1 -0
  647. package/dist/shared/widgets/confirm-transfer/compound/components/splitAmount.js +1 -0
  648. package/dist/shared/widgets/confirm-transfer/compound/context.js +1 -0
  649. package/dist/shared/widgets/confirm-transfer/compound/index.d.ts +3 -0
  650. package/dist/shared/widgets/confirm-transfer/compound/index.js +1 -0
  651. package/dist/shared/widgets/confirm-transfer/compound/types.d.ts +338 -0
  652. package/dist/shared/widgets/error-state/compound/ErrorState.d.ts +96 -0
  653. package/dist/shared/widgets/error-state/compound/ErrorState.js +1 -0
  654. package/dist/shared/widgets/error-state/compound/ErrorState.slots.d.ts +18 -0
  655. package/dist/shared/widgets/error-state/compound/ErrorState.slots.js +1 -0
  656. package/dist/shared/widgets/error-state/compound/ErrorState.styles.js +1 -0
  657. package/dist/shared/widgets/error-state/compound/components/Actions.d.ts +17 -0
  658. package/dist/shared/widgets/error-state/compound/components/Actions.js +1 -0
  659. package/dist/shared/widgets/error-state/compound/components/AssetValue.d.ts +20 -0
  660. package/dist/shared/widgets/error-state/compound/components/AssetValue.js +1 -0
  661. package/dist/shared/widgets/error-state/compound/components/Detail.d.ts +14 -0
  662. package/dist/shared/widgets/error-state/compound/components/Detail.js +1 -0
  663. package/dist/shared/widgets/error-state/compound/components/Details.d.ts +12 -0
  664. package/dist/shared/widgets/error-state/compound/components/Details.js +1 -0
  665. package/dist/shared/widgets/error-state/compound/components/DisclosureChevron.d.ts +11 -0
  666. package/dist/shared/widgets/error-state/compound/components/DisclosureChevron.js +1 -0
  667. package/dist/shared/widgets/error-state/compound/components/Header.d.ts +13 -0
  668. package/dist/shared/widgets/error-state/compound/components/Header.js +1 -0
  669. package/dist/shared/widgets/error-state/compound/components/HelpInfo.d.ts +10 -0
  670. package/dist/shared/widgets/error-state/compound/components/HelpInfo.js +1 -0
  671. package/dist/shared/widgets/error-state/compound/components/Hero.d.ts +9 -0
  672. package/dist/shared/widgets/error-state/compound/components/Hero.js +1 -0
  673. package/dist/shared/widgets/error-state/compound/components/MoreDetails.d.ts +18 -0
  674. package/dist/shared/widgets/error-state/compound/components/MoreDetails.js +1 -0
  675. package/dist/shared/widgets/error-state/compound/components/Rows.d.ts +57 -0
  676. package/dist/shared/widgets/error-state/compound/components/Rows.js +1 -0
  677. package/dist/shared/widgets/error-state/compound/components/StatusValue.d.ts +14 -0
  678. package/dist/shared/widgets/error-state/compound/components/StatusValue.js +1 -0
  679. package/dist/shared/widgets/error-state/compound/context.js +1 -0
  680. package/dist/shared/widgets/error-state/compound/index.d.ts +3 -0
  681. package/dist/shared/widgets/error-state/compound/index.js +1 -0
  682. package/dist/shared/widgets/error-state/compound/types.d.ts +291 -0
  683. package/dist/shared/widgets/processing-state/compound/ProcessingState.d.ts +77 -0
  684. package/dist/shared/widgets/processing-state/compound/ProcessingState.js +1 -0
  685. package/dist/shared/widgets/processing-state/compound/ProcessingState.slots.d.ts +15 -0
  686. package/dist/shared/widgets/processing-state/compound/ProcessingState.slots.js +1 -0
  687. package/dist/shared/widgets/processing-state/compound/ProcessingState.styles.js +1 -0
  688. package/dist/shared/widgets/processing-state/compound/components/Actions.d.ts +17 -0
  689. package/dist/shared/widgets/processing-state/compound/components/Actions.js +1 -0
  690. package/dist/shared/widgets/processing-state/compound/components/Detail.d.ts +14 -0
  691. package/dist/shared/widgets/processing-state/compound/components/Detail.js +1 -0
  692. package/dist/shared/widgets/processing-state/compound/components/Details.d.ts +12 -0
  693. package/dist/shared/widgets/processing-state/compound/components/Details.js +1 -0
  694. package/dist/shared/widgets/processing-state/compound/components/Header.d.ts +15 -0
  695. package/dist/shared/widgets/processing-state/compound/components/Header.js +1 -0
  696. package/dist/shared/widgets/processing-state/compound/components/Hero.d.ts +16 -0
  697. package/dist/shared/widgets/processing-state/compound/components/Hero.js +1 -0
  698. package/dist/shared/widgets/processing-state/compound/components/Rows.d.ts +36 -0
  699. package/dist/shared/widgets/processing-state/compound/components/Rows.js +1 -0
  700. package/dist/shared/widgets/processing-state/compound/components/StatusPill.d.ts +13 -0
  701. package/dist/shared/widgets/processing-state/compound/components/StatusPill.js +1 -0
  702. package/dist/shared/widgets/processing-state/compound/context.js +1 -0
  703. package/dist/shared/widgets/processing-state/compound/index.d.ts +3 -0
  704. package/dist/shared/widgets/processing-state/compound/index.js +1 -0
  705. package/dist/shared/widgets/processing-state/compound/types.d.ts +216 -0
  706. package/dist/shared/widgets/success-state/compound/SuccessState.d.ts +105 -0
  707. package/dist/shared/widgets/success-state/compound/SuccessState.js +1 -0
  708. package/dist/shared/widgets/success-state/compound/SuccessState.slots.d.ts +21 -0
  709. package/dist/shared/widgets/success-state/compound/SuccessState.slots.js +1 -0
  710. package/dist/shared/widgets/success-state/compound/SuccessState.styles.js +1 -0
  711. package/dist/shared/widgets/success-state/compound/components/Actions.d.ts +18 -0
  712. package/dist/shared/widgets/success-state/compound/components/Actions.js +1 -0
  713. package/dist/shared/widgets/success-state/compound/components/AssetValue.d.ts +18 -0
  714. package/dist/shared/widgets/success-state/compound/components/AssetValue.js +1 -0
  715. package/dist/shared/widgets/success-state/compound/components/Detail.d.ts +18 -0
  716. package/dist/shared/widgets/success-state/compound/components/Detail.js +1 -0
  717. package/dist/shared/widgets/success-state/compound/components/Details.d.ts +16 -0
  718. package/dist/shared/widgets/success-state/compound/components/Details.js +1 -0
  719. package/dist/shared/widgets/success-state/compound/components/Header.d.ts +13 -0
  720. package/dist/shared/widgets/success-state/compound/components/Header.js +1 -0
  721. package/dist/shared/widgets/success-state/compound/components/Headline.d.ts +16 -0
  722. package/dist/shared/widgets/success-state/compound/components/Headline.js +1 -0
  723. package/dist/shared/widgets/success-state/compound/components/Hero.d.ts +10 -0
  724. package/dist/shared/widgets/success-state/compound/components/Hero.js +1 -0
  725. package/dist/shared/widgets/success-state/compound/components/MoreDetails.d.ts +19 -0
  726. package/dist/shared/widgets/success-state/compound/components/MoreDetails.js +1 -0
  727. package/dist/shared/widgets/success-state/compound/components/RouteValue.d.ts +15 -0
  728. package/dist/shared/widgets/success-state/compound/components/RouteValue.js +1 -0
  729. package/dist/shared/widgets/success-state/compound/components/Rows.d.ts +69 -0
  730. package/dist/shared/widgets/success-state/compound/components/Rows.js +1 -0
  731. package/dist/shared/widgets/success-state/compound/components/StatusPill.d.ts +13 -0
  732. package/dist/shared/widgets/success-state/compound/components/StatusPill.js +1 -0
  733. package/dist/shared/widgets/success-state/compound/context.js +1 -0
  734. package/dist/shared/widgets/success-state/compound/index.d.ts +3 -0
  735. package/dist/shared/widgets/success-state/compound/index.js +1 -0
  736. package/dist/shared/widgets/success-state/compound/types.d.ts +307 -0
  737. package/dist/storage/adapters.d.ts +29 -0
  738. package/dist/storage/adapters.js +1 -0
  739. package/dist/storage/context.d.ts +62 -0
  740. package/dist/storage/context.js +1 -0
  741. package/dist/storage/createKitStorage.d.ts +45 -0
  742. package/dist/storage/createKitStorage.js +1 -0
  743. package/dist/storage/index.d.ts +4 -0
  744. package/dist/storage/index.js +1 -0
  745. package/dist/storage/types.d.ts +26 -0
  746. package/dist/stridge/StridgeContext.d.ts +29 -0
  747. package/dist/stridge/StridgeContext.js +1 -0
  748. package/dist/stridge/StridgeProvider.d.ts +158 -0
  749. package/dist/stridge/StridgeProvider.js +1 -0
  750. package/dist/stridge/stubs.js +1 -0
  751. package/dist/styles/index.css +3494 -0
  752. package/dist/types.d.ts +15 -0
  753. package/dist/types.js +1 -0
  754. package/dist/ui/index.d.ts +48 -0
  755. package/dist/ui/index.js +1 -0
  756. package/dist/utils/src/use-copy-to-clipboard.js +1 -0
  757. package/dist/wallet/index.d.ts +3 -0
  758. package/dist/wallet/index.js +1 -0
  759. package/dist/withdraw/compound/index.d.ts +22 -0
  760. package/dist/withdraw/compound/index.js +1 -0
  761. package/dist/withdraw/dialog/index.d.ts +2 -0
  762. package/dist/withdraw/dialog/index.js +1 -0
  763. package/package.json +156 -0
@@ -0,0 +1,3494 @@
1
+ :root, [data-stridge-scope] {
2
+ --stridge-kit-font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
3
+ --stridge-kit-font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
4
+ }
5
+
6
+ :root {
7
+ --stridge-kit-text-2xs: .625rem;
8
+ --stridge-kit-text-xs: .75rem;
9
+ --stridge-kit-text-sm: .875rem;
10
+ --stridge-kit-text-base: 1rem;
11
+ --stridge-kit-text-lg: 1.125rem;
12
+ --stridge-kit-text-xl: 1.25rem;
13
+ --stridge-kit-text-2xl: 1.5rem;
14
+ --stridge-kit-text-3xl: 1.875rem;
15
+ --stridge-kit-text-4xl: 2.25rem;
16
+ --stridge-kit-text-caption: .6875rem;
17
+ --stridge-kit-text-meta: .8125rem;
18
+ --stridge-kit-text-callout: .9375rem;
19
+ --stridge-kit-leading-none: 1;
20
+ --stridge-kit-leading-tight: 1.25;
21
+ --stridge-kit-leading-normal: 1.5;
22
+ --stridge-kit-leading-relaxed: 1.625;
23
+ --stridge-kit-font-weight-normal: 400;
24
+ --stridge-kit-font-weight-medium: 500;
25
+ --stridge-kit-font-weight-semibold: 600;
26
+ --stridge-kit-font-weight-bold: 700;
27
+ --stridge-kit-tracking-tighter: -.025em;
28
+ --stridge-kit-tracking-tight: -.01em;
29
+ --stridge-kit-tracking-normal: 0;
30
+ --stridge-kit-tracking-wide: .02em;
31
+ --stridge-kit-tracking-widest: .1em;
32
+ --stridge-kit-space-0: 0;
33
+ --stridge-kit-space-1: .25rem;
34
+ --stridge-kit-space-2: .5rem;
35
+ --stridge-kit-space-3: .75rem;
36
+ --stridge-kit-space-4: 1rem;
37
+ --stridge-kit-space-5: 1.25rem;
38
+ --stridge-kit-space-6: 1.5rem;
39
+ --stridge-kit-space-8: 2rem;
40
+ --stridge-kit-space-10: 2.5rem;
41
+ --stridge-kit-space-12: 3rem;
42
+ --stridge-kit-space-16: 4rem;
43
+ --stridge-kit-radius: .75rem;
44
+ --stridge-kit-radius-xs: calc(var(--stridge-kit-radius) - 6px);
45
+ --stridge-kit-radius-sm: calc(var(--stridge-kit-radius) - 4px);
46
+ --stridge-kit-radius-md: calc(var(--stridge-kit-radius) - 2px);
47
+ --stridge-kit-radius-lg: var(--stridge-kit-radius);
48
+ --stridge-kit-radius-xl: calc(var(--stridge-kit-radius) + 4px);
49
+ --stridge-kit-radius-2xl: calc(var(--stridge-kit-radius) + 8px);
50
+ --stridge-kit-radius-full: 9999px;
51
+ --stridge-kit-duration-fast: .15s;
52
+ --stridge-kit-duration-normal: .2s;
53
+ --stridge-kit-duration-slow: .3s;
54
+ --stridge-kit-ease-in: cubic-bezier(.4, 0, 1, 1);
55
+ --stridge-kit-ease-out: cubic-bezier(0, 0, .2, 1);
56
+ --stridge-kit-ease-in-out: cubic-bezier(.4, 0, .2, 1);
57
+ --stridge-kit-ease-enter: cubic-bezier(.16, 1, .3, 1);
58
+ --stridge-kit-ease-exit: cubic-bezier(.4, 0, 1, 1);
59
+ --stridge-kit-z-base: 0;
60
+ --stridge-kit-z-dropdown: 1000;
61
+ --stridge-kit-z-sticky: 1020;
62
+ --stridge-kit-z-fixed: 1030;
63
+ --stridge-kit-z-modal-backdrop: 1040;
64
+ --stridge-kit-z-modal: 1050;
65
+ --stridge-kit-z-popover: 1060;
66
+ --stridge-kit-z-tooltip: 1070;
67
+ --stridge-kit-overlay: oklch(0% 0 0 / .4);
68
+ --stridge-kit-dialog-width: 480px;
69
+ }
70
+
71
+ :root, [data-stridge-scope] {
72
+ --stridge-kit-ring: var(--stridge-kit-primary);
73
+ --stridge-kit-tile-active: var(--stridge-kit-primary);
74
+ --stridge-kit-shadow-ring-focus: 0 0 0 3px color-mix(in oklab, var(--stridge-kit-ring) 50%, transparent);
75
+ --stridge-kit-shadow-ring-focus-destructive: 0 0 0 3px color-mix(in oklab, var(--stridge-kit-destructive) 50%, transparent);
76
+ --stridge-kit-tile-radius-card: 12px;
77
+ --stridge-kit-tile-radius-pill: 10px;
78
+ --stridge-kit-details-radius: 14px;
79
+ --stridge-kit-card-radius: 12px;
80
+ --stridge-kit-card-radius-frame: 16px;
81
+ --stridge-kit-button-radius: 10px;
82
+ }
83
+
84
+ [data-stridge-radius="sharp"] {
85
+ --stridge-kit-tile-radius-card: 0px;
86
+ --stridge-kit-tile-radius-pill: 0px;
87
+ --stridge-kit-details-radius: 0px;
88
+ --stridge-kit-card-radius: 0px;
89
+ --stridge-kit-card-radius-frame: 0px;
90
+ --stridge-kit-button-radius: 0px;
91
+ --stridge-kit-radius: 0px;
92
+ --stridge-kit-radius-xs: 0px;
93
+ --stridge-kit-radius-sm: 0px;
94
+ --stridge-kit-radius-md: 0px;
95
+ --stridge-kit-radius-lg: 0px;
96
+ --stridge-kit-radius-xl: 0px;
97
+ --stridge-kit-radius-2xl: 0px;
98
+ }
99
+
100
+ [data-stridge-radius="subtle"] {
101
+ --stridge-kit-tile-radius-card: 6px;
102
+ --stridge-kit-tile-radius-pill: 6px;
103
+ --stridge-kit-details-radius: 8px;
104
+ --stridge-kit-card-radius: 6px;
105
+ --stridge-kit-card-radius-frame: 8px;
106
+ --stridge-kit-button-radius: 6px;
107
+ --stridge-kit-radius: .375rem;
108
+ --stridge-kit-radius-xs: 2px;
109
+ --stridge-kit-radius-sm: 4px;
110
+ --stridge-kit-radius-md: 6px;
111
+ --stridge-kit-radius-lg: 8px;
112
+ --stridge-kit-radius-xl: 10px;
113
+ --stridge-kit-radius-2xl: 12px;
114
+ }
115
+
116
+ [data-stridge-radius="rounded"] {
117
+ --stridge-kit-tile-radius-card: 12px;
118
+ --stridge-kit-tile-radius-pill: 10px;
119
+ --stridge-kit-details-radius: 14px;
120
+ --stridge-kit-card-radius: 12px;
121
+ --stridge-kit-card-radius-frame: 16px;
122
+ --stridge-kit-button-radius: 10px;
123
+ --stridge-kit-radius: .75rem;
124
+ --stridge-kit-radius-xs: 6px;
125
+ --stridge-kit-radius-sm: 8px;
126
+ --stridge-kit-radius-md: 10px;
127
+ --stridge-kit-radius-lg: 12px;
128
+ --stridge-kit-radius-xl: 16px;
129
+ --stridge-kit-radius-2xl: 20px;
130
+ }
131
+
132
+ [data-stridge-radius="pill"] {
133
+ --stridge-kit-tile-radius-card: 18px;
134
+ --stridge-kit-tile-radius-pill: 9999px;
135
+ --stridge-kit-details-radius: 18px;
136
+ --stridge-kit-card-radius: 18px;
137
+ --stridge-kit-card-radius-frame: 22px;
138
+ --stridge-kit-button-radius: 9999px;
139
+ --stridge-kit-radius: .875rem;
140
+ --stridge-kit-radius-xs: 8px;
141
+ --stridge-kit-radius-sm: 10px;
142
+ --stridge-kit-radius-md: 12px;
143
+ --stridge-kit-radius-lg: 14px;
144
+ --stridge-kit-radius-xl: 18px;
145
+ --stridge-kit-radius-2xl: 22px;
146
+ }
147
+
148
+ :where([dir="rtl"]) :where([data-stridge-flip-on-rtl]) {
149
+ transform: scaleX(-1);
150
+ }
151
+
152
+ :root, [data-stridge-theme="dark"] {
153
+ --stridge-kit-background: oklch(16.57% .01 268.69);
154
+ --stridge-kit-foreground: oklch(95.57% 0 286.35);
155
+ --stridge-kit-card: oklch(19.58% 0 271.09);
156
+ --stridge-kit-card-foreground: oklch(95.57% 0 286.35);
157
+ --stridge-kit-popover: oklch(21.6% .01 270.3);
158
+ --stridge-kit-popover-foreground: oklch(95.57% 0 286.35);
159
+ --stridge-kit-primary: oklch(64.51% .19 274.49);
160
+ --stridge-kit-primary-foreground: oklch(100.11% .01 289.34);
161
+ --stridge-kit-secondary: oklch(23.29% 0 270.82);
162
+ --stridge-kit-secondary-foreground: oklch(95.57% 0 286.35);
163
+ --stridge-kit-muted: oklch(23.29% 0 270.82);
164
+ --stridge-kit-muted-foreground: oklch(71.37% .02 261.32);
165
+ --stridge-kit-muted-foreground-faint: oklch(52.95% .01 286.13);
166
+ --stridge-kit-surface-hover: oklch(27.01% 0 271.23);
167
+ --stridge-kit-accent: oklch(30.65% .06 279.11);
168
+ --stridge-kit-accent-foreground: oklch(95.57% 0 286.35);
169
+ --stridge-kit-destructive: oklch(65.56% .2 23.26);
170
+ --stridge-kit-destructive-foreground: oklch(100.84% .1 25.27);
171
+ --stridge-kit-destructive-soft: oklch(22.22% .04 17.89);
172
+ --stridge-kit-destructive-soft-foreground: oklch(72.04% .17 19.6);
173
+ --stridge-kit-destructive-border: oklch(58.69% .2 22.75);
174
+ --stridge-kit-destructive-ring: oklch(25.35% .06 19.5);
175
+ --stridge-kit-success: oklch(63.7% .17 146.75);
176
+ --stridge-kit-success-foreground: oklch(99% .09 145.23);
177
+ --stridge-kit-success-ring: oklch(46.99% .1 153.81);
178
+ --stridge-kit-warning: oklch(71.95% .19 41.4);
179
+ --stridge-kit-warning-foreground: oklch(100.55% .1 44.42);
180
+ --stridge-kit-info: oklch(71.02% .14 206.64);
181
+ --stridge-kit-info-foreground: oklch(99.51% .07 206.76);
182
+ --stridge-kit-border: oklch(27.02% 0 270.93);
183
+ --stridge-kit-input: oklch(27.02% 0 270.93);
184
+ --stridge-kit-icon-stroke: oklch(73.41% .01 286.12);
185
+ --stridge-kit-tile-surface: oklch(24.14% .01 285.67);
186
+ --stridge-kit-tile-surface-selected: oklch(24.14% .01 285.67);
187
+ --stridge-kit-tile-border: oklch(29.55% .01 285.72);
188
+ --stridge-kit-tile-foreground: var(--stridge-kit-foreground);
189
+ --stridge-kit-details-surface: oklch(22% .01 285.58);
190
+ --stridge-kit-details-border: oklch(29.55% .01 285.72);
191
+ --stridge-kit-details-label: oklch(71.37% .02 261.32);
192
+ --stridge-kit-details-value: oklch(95.57% 0 286.35);
193
+ --stridge-kit-card-surface: oklch(22% .01 285.58);
194
+ --stridge-kit-card-surface-subdued: oklch(19.8% .01 285.46);
195
+ --stridge-kit-card-surface-frame: oklch(20.15% .01 285.86);
196
+ --stridge-kit-card-border: oklch(29.55% .01 285.72);
197
+ --stridge-kit-card-border-frame: oklch(27.07% .01 285.77);
198
+ --stridge-kit-card-shadow: 0 30px 80px oklch(0% 0 0 / .6), 0 2px 6px oklch(0% 0 0 / .4);
199
+ --stridge-kit-skeleton-base: oklch(29.55% .01 285.72);
200
+ --stridge-kit-skeleton-highlight: oklch(35.16% .01 285.67);
201
+ --stridge-kit-shadow-xs: 0 1px 1px 0 oklch(0% 0 0 / .125);
202
+ --stridge-kit-shadow-sm: 0 4px 4px -1px oklch(0% 0 0 / .04), 0 1px 1px 0 oklch(0% 0 0 / .08);
203
+ --stridge-kit-shadow-md: 0 3px 8px oklch(0% 0 0 / .125), 0 2px 5px oklch(0% 0 0 / .125), 0 1px 1px oklch(0% 0 0 / .125);
204
+ --stridge-kit-shadow-lg: 0 4px 40px oklch(0% 0 0 / .1), 0 3px 20px oklch(0% 0 0 / .125), 0 3px 12px oklch(0% 0 0 / .125),
205
+ 0 2px 8px oklch(0% 0 0 / .125), 0 1px 1px oklch(0% 0 0 / .125);
206
+ --stridge-kit-shadow-xl: 0 4px 40px oklch(0% 0 0 / .14), 0 3px 20px oklch(0% 0 0 / .16), 0 3px 12px oklch(0% 0 0 / .16),
207
+ 0 2px 8px oklch(0% 0 0 / .16), 0 1px 1px oklch(0% 0 0 / .16);
208
+ }
209
+
210
+ [data-stridge-theme="light"] {
211
+ --stridge-kit-background: oklch(99% 0 0);
212
+ --stridge-kit-foreground: oklch(15.5% .01 286);
213
+ --stridge-kit-card: oklch(99% 0 286);
214
+ --stridge-kit-card-foreground: oklch(15.5% .01 286);
215
+ --stridge-kit-popover: oklch(100% 0 0);
216
+ --stridge-kit-popover-foreground: oklch(15.5% .01 286);
217
+ --stridge-kit-primary: oklch(54% .22 274.49);
218
+ --stridge-kit-primary-foreground: oklch(100% 0 0);
219
+ --stridge-kit-secondary: oklch(90% .005 286);
220
+ --stridge-kit-secondary-foreground: oklch(15.5% .01 286);
221
+ --stridge-kit-muted: oklch(90% .005 286);
222
+ --stridge-kit-muted-foreground: oklch(45% .01 286);
223
+ --stridge-kit-muted-foreground-faint: oklch(58% .01 286);
224
+ --stridge-kit-surface-hover: oklch(94% .005 286);
225
+ --stridge-kit-accent: oklch(94% .01 280);
226
+ --stridge-kit-accent-foreground: oklch(15.5% .01 286);
227
+ --stridge-kit-destructive: oklch(55% .21 25);
228
+ --stridge-kit-destructive-foreground: oklch(100% 0 0);
229
+ --stridge-kit-destructive-soft: oklch(96% .04 17);
230
+ --stridge-kit-destructive-soft-foreground: oklch(45% .21 25);
231
+ --stridge-kit-destructive-border: oklch(55% .21 25);
232
+ --stridge-kit-destructive-ring: oklch(82% .07 19.5);
233
+ --stridge-kit-success: oklch(48% .13 156);
234
+ --stridge-kit-success-foreground: oklch(100% 0 0);
235
+ --stridge-kit-success-ring: oklch(82% .08 153.81);
236
+ --stridge-kit-warning: oklch(60% .17 41);
237
+ --stridge-kit-warning-foreground: oklch(100% 0 0);
238
+ --stridge-kit-info: oklch(55% .14 207);
239
+ --stridge-kit-info-foreground: oklch(100% 0 0);
240
+ --stridge-kit-border: oklch(91% 0 286);
241
+ --stridge-kit-input: oklch(91% 0 286);
242
+ --stridge-kit-icon-stroke: oklch(40% .01 286);
243
+ --stridge-kit-tile-surface: oklch(98% .005 286);
244
+ --stridge-kit-tile-surface-selected: oklch(96.5% .01 280);
245
+ --stridge-kit-tile-border: oklch(89% 0 286);
246
+ --stridge-kit-tile-foreground: var(--stridge-kit-foreground);
247
+ --stridge-kit-details-surface: oklch(98.5% 0 286);
248
+ --stridge-kit-details-border: oklch(91% 0 286);
249
+ --stridge-kit-details-label: oklch(45% .01 286);
250
+ --stridge-kit-details-value: oklch(15.5% .01 286);
251
+ --stridge-kit-card-surface: oklch(99% 0 286);
252
+ --stridge-kit-card-surface-subdued: oklch(96.5% 0 286);
253
+ --stridge-kit-card-surface-frame: oklch(100% 0 0);
254
+ --stridge-kit-card-border: oklch(91% 0 286);
255
+ --stridge-kit-card-border-frame: oklch(91% 0 286);
256
+ --stridge-kit-card-shadow: 0 30px 80px oklch(0% 0 0 / .16), 0 2px 6px oklch(0% 0 0 / .08);
257
+ --stridge-kit-skeleton-base: oklch(91% 0 286);
258
+ --stridge-kit-skeleton-highlight: oklch(95% 0 286);
259
+ --stridge-kit-shadow-xs: 0 1px 2px 0 oklch(0% 0 0 / .04);
260
+ --stridge-kit-shadow-sm: 0 1px 1px 0 oklch(0% 0 0 / .04), 0 1px 3px 0 oklch(0% 0 0 / .05);
261
+ --stridge-kit-shadow-md: 0 6px 12px -3px oklch(0% 0 0 / .06), 0 2px 4px -1px oklch(0% 0 0 / .04);
262
+ --stridge-kit-shadow-lg: 0 12px 28px -6px oklch(0% 0 0 / .08), 0 4px 8px -2px oklch(0% 0 0 / .04);
263
+ --stridge-kit-shadow-xl: 0 24px 56px -12px oklch(0% 0 0 / .1), 0 8px 16px -4px oklch(0% 0 0 / .06);
264
+ }
265
+
266
+ @stylex;
267
+
268
+ @layer priority1;
269
+
270
+ @layer priority2 {
271
+ .xln7xf2 {
272
+ font: inherit;
273
+ }
274
+
275
+ .x1v1xp8j {
276
+ inset: -2px;
277
+ }
278
+
279
+ .x10a8y8t {
280
+ inset: 0;
281
+ }
282
+
283
+ .x1ghz6dp {
284
+ margin: 0;
285
+ }
286
+
287
+ .x1bpp3o7 {
288
+ margin: auto;
289
+ }
290
+
291
+ .x1717udv {
292
+ padding: 0;
293
+ }
294
+
295
+ .x163h9xw {
296
+ padding: var(--stridge-kit-space-4);
297
+ }
298
+
299
+ .x1ljrego {
300
+ padding: var(--stridge-kit-space-1);
301
+ }
302
+
303
+ .xewtfw4 {
304
+ padding: var(--stridge-kit-space-3);
305
+ }
306
+
307
+ .xvaa05t {
308
+ padding: var(--stridge-kit-space-2);
309
+ }
310
+ }
311
+
312
+ @layer priority3 {
313
+ .x6rlbl3 {
314
+ border-color: color-mix(in oklab,var(--stridge-kit-warning) 20%,transparent);
315
+ }
316
+
317
+ .x1kw7hx1 {
318
+ border-color: color-mix(in oklab,var(--stridge-kit-warning) 50%,transparent);
319
+ }
320
+
321
+ .x1u8w7k4 {
322
+ border-color: color-mix(in oklab,var(--stridge-kit-success) 20%,transparent);
323
+ }
324
+
325
+ .xb4kgwu {
326
+ border-color: color-mix(in oklab,var(--stridge-kit-success) 50%,transparent);
327
+ }
328
+
329
+ .xqx95iw {
330
+ border-color: color-mix(in oklab,var(--stridge-kit-info) 20%,transparent);
331
+ }
332
+
333
+ .x1awroyi {
334
+ border-color: color-mix(in oklab,var(--stridge-kit-info) 50%,transparent);
335
+ }
336
+
337
+ .xx0pcxh {
338
+ border-color: color-mix(in oklab,var(--stridge-kit-primary) 20%,transparent);
339
+ }
340
+
341
+ .x2dcuha {
342
+ border-color: color-mix(in oklab,var(--stridge-kit-primary) 50%,transparent);
343
+ }
344
+
345
+ .x1fxxxea {
346
+ border-color: color-mix(in oklab,var(--stridge-kit-destructive-border) 36%,transparent);
347
+ }
348
+
349
+ .x1smv8d1 {
350
+ border-color: color-mix(in oklab,var(--stridge-kit-destructive-border) 50%,transparent);
351
+ }
352
+
353
+ .x84ybii {
354
+ border-color: color-mix(in oklab,var(--stridge-kit-destructive-border) 72%,transparent);
355
+ }
356
+
357
+ .x9r1u3d {
358
+ border-color: #0000;
359
+ }
360
+
361
+ .xfbvt8z {
362
+ border-color: var(--stridge-kit-card-surface-frame);
363
+ }
364
+
365
+ .x10ssn8f {
366
+ border-color: var(--stridge-kit-tile-active);
367
+ }
368
+
369
+ .x1bue7yx {
370
+ border-color: var(--stridge-kit-card-border);
371
+ }
372
+
373
+ .xbeer74 {
374
+ border-color: var(--stridge-kit-details-border);
375
+ }
376
+
377
+ .x1aqcfi1 {
378
+ border-color: var(--stridge-kit-card-border-frame);
379
+ }
380
+
381
+ .xa3awxp {
382
+ border-color: var(--stridge-kit-tile-border);
383
+ }
384
+
385
+ .x12c9lpl {
386
+ border-color: var(--stridge-kit-border);
387
+ }
388
+
389
+ .x6i6fhv {
390
+ border-radius: .375rem;
391
+ }
392
+
393
+ .xmx9ex2 {
394
+ border-radius: .625rem;
395
+ }
396
+
397
+ .x2u8bby {
398
+ border-radius: 0;
399
+ }
400
+
401
+ .x10hpsqq {
402
+ border-radius: 9999px;
403
+ }
404
+
405
+ .x1pjcqnp {
406
+ border-radius: inherit;
407
+ }
408
+
409
+ .xhua5ru {
410
+ border-radius: min(var(--stridge-kit-button-radius),9px);
411
+ }
412
+
413
+ .xrsz3of {
414
+ border-radius: var(--stridge-kit-radius-full);
415
+ }
416
+
417
+ .x2zroun {
418
+ border-radius: var(--stridge-kit-radius-xs);
419
+ }
420
+
421
+ .x1npxkrn {
422
+ border-radius: var(--stridge-kit-radius-full);
423
+ }
424
+
425
+ .x12ur2as {
426
+ border-radius: var(--stridge-kit-radius-md);
427
+ }
428
+
429
+ .x5bw3pk {
430
+ border-radius: var(--stridge-kit-card-radius);
431
+ }
432
+
433
+ .x143j3yi {
434
+ border-radius: var(--stridge-kit-radius-sm);
435
+ }
436
+
437
+ .x1c2egtx {
438
+ border-radius: var(--stridge-kit-card-radius-frame);
439
+ }
440
+
441
+ .x1s7mj9v {
442
+ border-radius: var(--stridge-kit-button-radius);
443
+ }
444
+
445
+ .x13pkpm2 {
446
+ border-radius: var(--stridge-kit-radius-lg);
447
+ }
448
+
449
+ .xxbqt08 {
450
+ border-radius: var(--stridge-kit-details-radius);
451
+ }
452
+
453
+ .xi9trdq {
454
+ border-radius: var(--stridge-kit-tile-radius-card);
455
+ }
456
+
457
+ .x1g6ocf5 {
458
+ border-radius: var(--stridge-kit-tile-radius-pill);
459
+ }
460
+
461
+ .xng3xce {
462
+ border-style: none;
463
+ }
464
+
465
+ .x1y0btm7 {
466
+ border-style: solid;
467
+ }
468
+
469
+ .xc342km {
470
+ border-width: 0;
471
+ }
472
+
473
+ .xmkeg23 {
474
+ border-width: 1px;
475
+ }
476
+
477
+ .xdh2fpr {
478
+ border-width: 2px;
479
+ }
480
+
481
+ .x845mor {
482
+ flex: 1;
483
+ }
484
+
485
+ .x12lumcd {
486
+ flex: auto;
487
+ }
488
+
489
+ .x98rzlu {
490
+ flex: 1;
491
+ }
492
+
493
+ .x1nj97wv {
494
+ gap: .025em;
495
+ }
496
+
497
+ .xvh977a {
498
+ gap: .25rem;
499
+ }
500
+
501
+ .xpj7pl4 {
502
+ gap: .375rem;
503
+ }
504
+
505
+ .xxhr3t {
506
+ gap: 0;
507
+ }
508
+
509
+ .x883omv {
510
+ gap: 10px;
511
+ }
512
+
513
+ .x1v2ro7d {
514
+ gap: 12px;
515
+ }
516
+
517
+ .x1af02g3 {
518
+ gap: 14px;
519
+ }
520
+
521
+ .xou54vl {
522
+ gap: 16px;
523
+ }
524
+
525
+ .x12mrbbr {
526
+ gap: 1px;
527
+ }
528
+
529
+ .x1c1vhfx {
530
+ gap: 20px;
531
+ }
532
+
533
+ .xmt3bw4 {
534
+ gap: 22px;
535
+ }
536
+
537
+ .x195vfkc {
538
+ gap: 2px;
539
+ }
540
+
541
+ .x1ed6fcf {
542
+ gap: 3px;
543
+ }
544
+
545
+ .x1jnr06f {
546
+ gap: 4px;
547
+ }
548
+
549
+ .x17d4w8g {
550
+ gap: 6px;
551
+ }
552
+
553
+ .x1j9xkj6 {
554
+ gap: 7px;
555
+ }
556
+
557
+ .x167g77z {
558
+ gap: 8px;
559
+ }
560
+
561
+ .xmmi0ta {
562
+ gap: 9px;
563
+ }
564
+
565
+ .xjb6dxy {
566
+ gap: var(--stridge-kit-space-6);
567
+ }
568
+
569
+ .xsfdumc {
570
+ gap: var(--stridge-kit-space-4);
571
+ }
572
+
573
+ .x1r05nms {
574
+ gap: var(--stridge-kit-space-1);
575
+ }
576
+
577
+ .x2blr79 {
578
+ gap: var(--stridge-kit-space-3);
579
+ }
580
+
581
+ .x1a6yh9e {
582
+ gap: var(--stridge-kit-space-2);
583
+ }
584
+
585
+ .x10bka1u {
586
+ margin-inline: 22px;
587
+ }
588
+
589
+ .x1mqxmvn {
590
+ margin-inline: calc(var(--stridge-kit-space-1) * -1);
591
+ }
592
+
593
+ .x1a2a7pz {
594
+ outline: none;
595
+ }
596
+
597
+ .xysyzu8 {
598
+ overflow: auto;
599
+ }
600
+
601
+ .x7giv3 {
602
+ overflow: clip;
603
+ }
604
+
605
+ .xb3r6kr {
606
+ overflow: hidden;
607
+ }
608
+
609
+ .x1rea2x4 {
610
+ overflow: visible;
611
+ }
612
+
613
+ .xish69e {
614
+ overscroll-behavior: contain;
615
+ }
616
+
617
+ .xp59q4u {
618
+ padding-block: 10px;
619
+ }
620
+
621
+ .xrii95j {
622
+ padding-block: 11px;
623
+ }
624
+
625
+ .x10dr8xq {
626
+ padding-block: 12px;
627
+ }
628
+
629
+ .xxlmvz2 {
630
+ padding-block: 14px;
631
+ }
632
+
633
+ .x1b9wmvo {
634
+ padding-block: 15px;
635
+ }
636
+
637
+ .x12ulsxz {
638
+ padding-block: 4px;
639
+ }
640
+
641
+ .x1t0vds8 {
642
+ padding-block: 6px;
643
+ }
644
+
645
+ .xknfcqp {
646
+ padding-block: 7px;
647
+ }
648
+
649
+ .x1vvogim {
650
+ padding-block: 8px;
651
+ }
652
+
653
+ .xvpgqt4 {
654
+ padding-inline: .625rem;
655
+ }
656
+
657
+ .x13s4r1c {
658
+ padding-inline: .875rem;
659
+ }
660
+
661
+ .xnjsko4 {
662
+ padding-inline: 0;
663
+ }
664
+
665
+ .x1awh872 {
666
+ padding-inline: 10px;
667
+ }
668
+
669
+ .xaope02 {
670
+ padding-inline: 12px;
671
+ }
672
+
673
+ .xqin4a2 {
674
+ padding-inline: 14px;
675
+ }
676
+
677
+ .x1hr3lfm {
678
+ padding-inline: 16px;
679
+ }
680
+
681
+ .x65v0h {
682
+ padding-inline: 22px;
683
+ }
684
+
685
+ .xfn1xvj {
686
+ padding-inline: 4px;
687
+ }
688
+
689
+ .x1xijbu4 {
690
+ padding-inline: 6px;
691
+ }
692
+
693
+ .x7mqn57 {
694
+ padding-inline: var(--stridge-kit-space-1);
695
+ }
696
+
697
+ .x1fk34n2 {
698
+ padding-inline: var(--stridge-kit-space-3);
699
+ }
700
+
701
+ .xxztuhb {
702
+ padding-inline: var(--stridge-kit-space-2);
703
+ }
704
+
705
+ .x1hl2dhg {
706
+ text-decoration: none;
707
+ }
708
+
709
+ .x1muc15j:focus-visible {
710
+ border-color: var(--stridge-kit-tile-active);
711
+ }
712
+
713
+ .x1mt3fz5:focus-visible {
714
+ border-color: var(--stridge-kit-ring);
715
+ }
716
+
717
+ .x63abuj:focus-visible {
718
+ border-radius: var(--stridge-kit-radius-sm);
719
+ }
720
+
721
+ .x67ar3w:focus-visible {
722
+ outline: 2px solid var(--stridge-kit-foreground);
723
+ }
724
+
725
+ .xnyhjf:has( > input:focus-visible, > textarea:focus-visible) {
726
+ border-color: var(--stridge-kit-ring);
727
+ }
728
+
729
+ .x1m8uku1:has( > input[aria-invalid="true"]:focus-visible, > textarea[aria-invalid="true"]:focus-visible), .xn0a4ft:has( > input[aria-invalid="true"], > textarea[aria-invalid="true"]) {
730
+ border-color: var(--stridge-kit-destructive-border);
731
+ }
732
+
733
+ .x7b72fw:hover {
734
+ border-color: color-mix(in oklab,var(--stridge-kit-card-border) 60%,var(--stridge-kit-foreground) 40%);
735
+ }
736
+
737
+ @container transferCrypto (width >= 28rem) {
738
+ .x1vfxggr.x1vfxggr {
739
+ border-radius: var(--stridge-kit-card-radius-frame);
740
+ }
741
+
742
+ .xqv1bf0.xqv1bf0 {
743
+ border-width: 1px;
744
+ }
745
+
746
+ .x19decax.x19decax {
747
+ gap: 10px;
748
+ }
749
+
750
+ .x1935yeb.x1935yeb {
751
+ gap: 12px;
752
+ }
753
+
754
+ .x9czr6x.x9czr6x {
755
+ gap: 14px;
756
+ }
757
+ }
758
+
759
+ @container field-group (width >= 32rem) {
760
+ .x114hih5.x114hih5 {
761
+ gap: var(--stridge-kit-space-4);
762
+ }
763
+ }
764
+
765
+ @container transferCrypto (width >= 28rem) {
766
+ .xwv64x0.xwv64x0 {
767
+ padding-block: 14px;
768
+ }
769
+
770
+ .xpib278.xpib278 {
771
+ padding-block: 16px;
772
+ }
773
+
774
+ .xzc4l6o.xzc4l6o {
775
+ padding-block: 8px;
776
+ }
777
+
778
+ .xigttff.xigttff {
779
+ padding-inline: 16px;
780
+ }
781
+
782
+ .xy8emu7.xy8emu7 {
783
+ padding-inline: 18px;
784
+ }
785
+ }
786
+ }
787
+
788
+ @layer priority4 {
789
+ .x1i10hfl {
790
+ -webkit-tap-highlight-color: transparent;
791
+ }
792
+
793
+ .x1pha0wt {
794
+ align-items: baseline;
795
+ }
796
+
797
+ .x6s0dn4 {
798
+ align-items: center;
799
+ }
800
+
801
+ .x1cy8zhl {
802
+ align-items: flex-start;
803
+ }
804
+
805
+ .x1qjc9v5 {
806
+ align-items: stretch;
807
+ }
808
+
809
+ .xamitd3 {
810
+ align-self: center;
811
+ }
812
+
813
+ .xkh2ocl {
814
+ align-self: stretch;
815
+ }
816
+
817
+ .x1k0bccz {
818
+ animation-delay: .1s;
819
+ }
820
+
821
+ .x192tdn3 {
822
+ animation-delay: .25s;
823
+ }
824
+
825
+ .x1t83zlg {
826
+ animation-delay: .2s;
827
+ }
828
+
829
+ .x1x1c4bx {
830
+ animation-delay: .3s;
831
+ }
832
+
833
+ .x1xwhvez {
834
+ animation-delay: .4s;
835
+ }
836
+
837
+ .xfjzax6 {
838
+ animation-delay: .5s;
839
+ }
840
+
841
+ .x1uzojwf {
842
+ animation-delay: 0s;
843
+ }
844
+
845
+ .x4afe7t {
846
+ animation-duration: .3s;
847
+ }
848
+
849
+ .xmprevt {
850
+ animation-duration: .42s;
851
+ }
852
+
853
+ .xl8t4ro {
854
+ animation-duration: .55s;
855
+ }
856
+
857
+ .xof6966 {
858
+ animation-duration: .7s;
859
+ }
860
+
861
+ .xegkacw {
862
+ animation-duration: .9s;
863
+ }
864
+
865
+ .x1m9vv7p {
866
+ animation-duration: 1.2s;
867
+ }
868
+
869
+ .x1sbju2s {
870
+ animation-duration: 1.4s;
871
+ }
872
+
873
+ .x1xixsfh {
874
+ animation-duration: 1.8s;
875
+ }
876
+
877
+ .x1u6ievf {
878
+ animation-fill-mode: both;
879
+ }
880
+
881
+ .x10e4vud {
882
+ animation-fill-mode: forwards;
883
+ }
884
+
885
+ .x1v7wizp {
886
+ animation-iteration-count: 1;
887
+ }
888
+
889
+ .xa4qsjk {
890
+ animation-iteration-count: infinite;
891
+ }
892
+
893
+ .xdozz8d {
894
+ animation-name: x17l86xk-B;
895
+ }
896
+
897
+ .xv305lp {
898
+ animation-name: x1l9pw95-B;
899
+ }
900
+
901
+ .x1aerksh {
902
+ animation-name: x1wc8ddo-B;
903
+ }
904
+
905
+ .x15qid8x {
906
+ animation-name: x1yv4ed5-B;
907
+ }
908
+
909
+ .x194e4vk {
910
+ animation-name: x3q3iw1-B;
911
+ }
912
+
913
+ .x1ng0oyw {
914
+ animation-name: xb4s9mv-B;
915
+ }
916
+
917
+ .xdi478p {
918
+ animation-name: xdk6pkw-B;
919
+ }
920
+
921
+ .x1ka1v4i {
922
+ animation-name: xqng64z-B;
923
+ }
924
+
925
+ .x14k796y {
926
+ animation-name: xu9wdhb-B;
927
+ }
928
+
929
+ .x4hg4is {
930
+ animation-timing-function: ease-in-out;
931
+ }
932
+
933
+ .xa3vuyk {
934
+ animation-timing-function: ease-out;
935
+ }
936
+
937
+ .x1esw782 {
938
+ animation-timing-function: linear;
939
+ }
940
+
941
+ .xrkt6z0 {
942
+ animation-timing-function: var(--stridge-kit-ease-enter);
943
+ }
944
+
945
+ .x1s7li7e {
946
+ animation-timing-function: var(--stridge-kit-ease-in-out);
947
+ }
948
+
949
+ .xjyslct {
950
+ appearance: none;
951
+ }
952
+
953
+ .xtilpmw {
954
+ appearance: textfield;
955
+ }
956
+
957
+ .xx83zyx {
958
+ background-clip: padding-box;
959
+ }
960
+
961
+ .xpm24si {
962
+ background-color: color-mix(in oklab,var(--stridge-kit-warning) 20%,transparent);
963
+ }
964
+
965
+ .x19hrvbb {
966
+ background-color: color-mix(in oklab,var(--stridge-kit-warning) 6%,transparent);
967
+ }
968
+
969
+ .x1kgqhw8 {
970
+ background-color: color-mix(in oklab,var(--stridge-kit-tile-surface) 60%,var(--stridge-kit-muted) 40%);
971
+ }
972
+
973
+ .x1yy7n3w {
974
+ background-color: color-mix(in oklab,var(--stridge-kit-success) 20%,transparent);
975
+ }
976
+
977
+ .x15q4ulg {
978
+ background-color: color-mix(in oklab,var(--stridge-kit-success) 6%,transparent);
979
+ }
980
+
981
+ .xfg9wsz {
982
+ background-color: color-mix(in oklab,var(--stridge-kit-muted) 60%,transparent);
983
+ }
984
+
985
+ .xivzh3d {
986
+ background-color: color-mix(in oklab,var(--stridge-kit-info) 20%,transparent);
987
+ }
988
+
989
+ .x15josac {
990
+ background-color: color-mix(in oklab,var(--stridge-kit-info) 6%,transparent);
991
+ }
992
+
993
+ .x1mkdsbu {
994
+ background-color: color-mix(in oklab,var(--stridge-kit-primary) 6%,transparent);
995
+ }
996
+
997
+ .x1o9k46r {
998
+ background-color: color-mix(in oklab,var(--stridge-kit-destructive-soft) 72%,transparent);
999
+ }
1000
+
1001
+ .xij6k22 {
1002
+ background-color: color-mix(in oklab,var(--stridge-kit-background) 72%,transparent);
1003
+ }
1004
+
1005
+ .xjbqb8w {
1006
+ background-color: #0000;
1007
+ }
1008
+
1009
+ .x3cgcfv {
1010
+ background-color: var(--stridge-kit-card-surface-frame);
1011
+ }
1012
+
1013
+ .x14ogoj5 {
1014
+ background-color: var(--stridge-kit-details-surface);
1015
+ }
1016
+
1017
+ .x1ofs3es {
1018
+ background-color: var(--stridge-kit-input);
1019
+ }
1020
+
1021
+ .xsdq91f {
1022
+ background-color: var(--stridge-kit-tile-surface);
1023
+ }
1024
+
1025
+ .x1lbpfnh {
1026
+ background-color: var(--stridge-kit-foreground);
1027
+ }
1028
+
1029
+ .xelfwhf {
1030
+ background-color: var(--stridge-kit-success);
1031
+ }
1032
+
1033
+ .x1qkydf4 {
1034
+ background-color: var(--stridge-kit-muted);
1035
+ }
1036
+
1037
+ .xp5aqsh {
1038
+ background-color: var(--stridge-kit-card-border-frame);
1039
+ }
1040
+
1041
+ .x1b6mqgj {
1042
+ background-color: var(--stridge-kit-tile-surface-selected);
1043
+ }
1044
+
1045
+ .x12obg9s {
1046
+ background-color: var(--stridge-kit-card-surface);
1047
+ }
1048
+
1049
+ .x136i1dt {
1050
+ background-color: var(--stridge-kit-border);
1051
+ }
1052
+
1053
+ .x1gdua1s {
1054
+ background-color: var(--stridge-kit-popover);
1055
+ }
1056
+
1057
+ .xldstci {
1058
+ background-color: var(--stridge-kit-secondary);
1059
+ }
1060
+
1061
+ .xdmxa9o {
1062
+ background-color: var(--stridge-kit-primary);
1063
+ }
1064
+
1065
+ .xriqneg {
1066
+ background-color: var(--stridge-kit-muted-foreground);
1067
+ }
1068
+
1069
+ .x1qvyn6m {
1070
+ background-color: var(--stridge-kit-destructive);
1071
+ }
1072
+
1073
+ .x3l8li6 {
1074
+ background-color: var(--stridge-kit-skeleton-base);
1075
+ }
1076
+
1077
+ .xfhhmty {
1078
+ background-color: var(--stridge-kit-destructive-soft);
1079
+ }
1080
+
1081
+ .xyxldge {
1082
+ background-color: var(--stridge-kit-overlay);
1083
+ }
1084
+
1085
+ .x19u6ldj {
1086
+ background-color: var(--stridge-kit-background);
1087
+ }
1088
+
1089
+ .x407w7c {
1090
+ background-color: var(--stridge-kit-card-surface-subdued);
1091
+ }
1092
+
1093
+ .x1bmns5n {
1094
+ background-image: linear-gradient(0deg,transparent,var(--stridge-kit-card),transparent);
1095
+ }
1096
+
1097
+ .x1sxldtw {
1098
+ background-image: linear-gradient(90deg,var(--stridge-kit-skeleton-base) 0%,var(--stridge-kit-skeleton-highlight) 50%,var(--stridge-kit-skeleton-base) 100%);
1099
+ }
1100
+
1101
+ .xiy17q3 {
1102
+ background-repeat: no-repeat;
1103
+ }
1104
+
1105
+ .xakli9p {
1106
+ background-size: 200% 100%;
1107
+ }
1108
+
1109
+ .x1ui04y5 {
1110
+ border-end-end-radius: 2px;
1111
+ }
1112
+
1113
+ .x8xpvqr {
1114
+ border-end-end-radius: var(--stridge-kit-radius-md);
1115
+ }
1116
+
1117
+ .x1n8kxja {
1118
+ border-end-start-radius: var(--stridge-kit-radius-md);
1119
+ }
1120
+
1121
+ .x1e4oeot {
1122
+ border-start-end-radius: 2px;
1123
+ }
1124
+
1125
+ .x1982ebo {
1126
+ border-start-end-radius: var(--stridge-kit-radius-md);
1127
+ }
1128
+
1129
+ .x1d6sz28 {
1130
+ border-start-start-radius: var(--stridge-kit-radius-md);
1131
+ }
1132
+
1133
+ .x1gsh91t {
1134
+ box-shadow: 0 0 0 1.5px var(--stridge-kit-tile-surface);
1135
+ }
1136
+
1137
+ .xprdceg {
1138
+ box-shadow: 0 0 0 2px color-mix(in oklab,var(--stridge-kit-tile-active) 40%,transparent);
1139
+ }
1140
+
1141
+ .x1r82gqv {
1142
+ box-shadow: inset 0 0 0 1px var(--stridge-kit-tile-active);
1143
+ }
1144
+
1145
+ .x1gnnqk1 {
1146
+ box-shadow: none;
1147
+ }
1148
+
1149
+ .x1g7ug4b {
1150
+ box-shadow: var(--stridge-kit-shadow-lg);
1151
+ }
1152
+
1153
+ .xa2vu2y {
1154
+ box-shadow: var(--stridge-kit-card-shadow);
1155
+ }
1156
+
1157
+ .x1lo0mqj {
1158
+ box-shadow: var(--stridge-kit-shadow-md);
1159
+ }
1160
+
1161
+ .xzh026d {
1162
+ box-shadow: var(--stridge-kit-shadow-xs);
1163
+ }
1164
+
1165
+ .x9f619 {
1166
+ box-sizing: border-box;
1167
+ }
1168
+
1169
+ .xv247kb {
1170
+ caret-color: auto;
1171
+ }
1172
+
1173
+ .x1lwfdfr {
1174
+ caret-color: var(--stridge-amt-caret-color, var(--stridge-kit-foreground, auto));
1175
+ }
1176
+
1177
+ .x1s2wxje {
1178
+ caret-color: var(--stridge-kit-foreground);
1179
+ }
1180
+
1181
+ .xtb34l4 {
1182
+ color: color-mix(in oklab,var(--stridge-kit-destructive-soft-foreground) 75%,var(--stridge-kit-foreground));
1183
+ }
1184
+
1185
+ .x15rks2t {
1186
+ color: currentColor;
1187
+ }
1188
+
1189
+ .x1heor9g {
1190
+ color: inherit;
1191
+ }
1192
+
1193
+ .x19co3pv {
1194
+ color: #0000;
1195
+ }
1196
+
1197
+ .x9h8u6b {
1198
+ color: var(--stridge-amt-decimals-color, currentColor);
1199
+ }
1200
+
1201
+ .x1gvmkps {
1202
+ color: var(--stridge-kit-muted-foreground);
1203
+ }
1204
+
1205
+ .xflhhh6 {
1206
+ color: var(--stridge-kit-primary-foreground);
1207
+ }
1208
+
1209
+ .x1823it2 {
1210
+ color: var(--stridge-kit-tile-active);
1211
+ }
1212
+
1213
+ .x1kho0d4 {
1214
+ color: var(--stridge-kit-primary-foreground);
1215
+ }
1216
+
1217
+ .x1a3v400 {
1218
+ color: var(--stridge-kit-warning);
1219
+ }
1220
+
1221
+ .xdksllq {
1222
+ color: var(--stridge-kit-icon-stroke);
1223
+ }
1224
+
1225
+ .xzn0pkc {
1226
+ color: var(--stridge-kit-foreground);
1227
+ }
1228
+
1229
+ .xwiqrka {
1230
+ color: var(--stridge-kit-success);
1231
+ }
1232
+
1233
+ .x1i40r7x {
1234
+ color: var(--stridge-kit-details-value);
1235
+ }
1236
+
1237
+ .x18o46el {
1238
+ color: var(--stridge-kit-destructive-foreground);
1239
+ }
1240
+
1241
+ .x19vemxs {
1242
+ color: var(--stridge-kit-destructive-soft-foreground);
1243
+ }
1244
+
1245
+ .x1e8cn3g {
1246
+ color: var(--stridge-kit-success-foreground);
1247
+ }
1248
+
1249
+ .x1b9tnpo {
1250
+ color: var(--stridge-kit-info);
1251
+ }
1252
+
1253
+ .x1vits3x {
1254
+ color: var(--stridge-kit-card-foreground);
1255
+ }
1256
+
1257
+ .x1xr5t3o {
1258
+ color: var(--stridge-kit-secondary-foreground);
1259
+ }
1260
+
1261
+ .x1me39qh {
1262
+ color: var(--stridge-kit-primary);
1263
+ }
1264
+
1265
+ .xi96bwj {
1266
+ color: var(--stridge-kit-muted-foreground);
1267
+ }
1268
+
1269
+ .xreodjm {
1270
+ color: var(--stridge-kit-destructive);
1271
+ }
1272
+
1273
+ .x137ha3m {
1274
+ color: var(--stridge-kit-muted-foreground-faint);
1275
+ }
1276
+
1277
+ .xqk8w4k {
1278
+ color: var(--stridge-kit-popover-foreground);
1279
+ }
1280
+
1281
+ .x18cw6k6 {
1282
+ color: var(--stridge-kit-details-label);
1283
+ }
1284
+
1285
+ .x1kqivnd {
1286
+ color: var(--stridge-kit-tile-foreground);
1287
+ }
1288
+
1289
+ .xabhnm {
1290
+ color: var(--stridge-kit-accent-foreground);
1291
+ }
1292
+
1293
+ .xv5fsj6 {
1294
+ color: var(--stridge-kit-background);
1295
+ }
1296
+
1297
+ .x1e3ku4n {
1298
+ container-name: field-group;
1299
+ }
1300
+
1301
+ .x1tehvyw {
1302
+ container-name: transferCrypto;
1303
+ }
1304
+
1305
+ .x1fsbacl {
1306
+ container-name: withdrawForm;
1307
+ }
1308
+
1309
+ .x12h1iku {
1310
+ container-type: inline-size;
1311
+ }
1312
+
1313
+ .xt0e3qv {
1314
+ cursor: default;
1315
+ }
1316
+
1317
+ .x1146j2 {
1318
+ cursor: help;
1319
+ }
1320
+
1321
+ .x1h6gzvc {
1322
+ cursor: not-allowed;
1323
+ }
1324
+
1325
+ .x1ypdohk {
1326
+ cursor: pointer;
1327
+ }
1328
+
1329
+ .x1ed109x {
1330
+ cursor: text;
1331
+ }
1332
+
1333
+ .x1lliihq {
1334
+ display: block;
1335
+ }
1336
+
1337
+ .x78zum5 {
1338
+ display: flex;
1339
+ }
1340
+
1341
+ .xrvj5dj {
1342
+ display: grid;
1343
+ }
1344
+
1345
+ .x1rg5ohu {
1346
+ display: inline-block;
1347
+ }
1348
+
1349
+ .x3nfvp2 {
1350
+ display: inline-flex;
1351
+ }
1352
+
1353
+ .xt0psk2 {
1354
+ display: inline;
1355
+ }
1356
+
1357
+ .x5f5z56 {
1358
+ field-sizing: content;
1359
+ }
1360
+
1361
+ .xbh8q5q {
1362
+ fill: none;
1363
+ }
1364
+
1365
+ .xy6m8k3 {
1366
+ fill: #0000;
1367
+ }
1368
+
1369
+ .xnc8ywt {
1370
+ fill: var(--stridge-kit-foreground);
1371
+ }
1372
+
1373
+ .xn1vxmx {
1374
+ fill: var(--stridge-kit-border);
1375
+ }
1376
+
1377
+ .x1wlrupo {
1378
+ fill: var(--stridge-kit-popover);
1379
+ }
1380
+
1381
+ .x1qgin71 {
1382
+ filter: blur(4px);
1383
+ }
1384
+
1385
+ .x1r8uery {
1386
+ flex-basis: 0;
1387
+ }
1388
+
1389
+ .xdt5ytf {
1390
+ flex-direction: column;
1391
+ }
1392
+
1393
+ .x1q0g3np {
1394
+ flex-direction: row;
1395
+ }
1396
+
1397
+ .x1iyjqo2 {
1398
+ flex-grow: 1;
1399
+ }
1400
+
1401
+ .x2lah0s {
1402
+ flex-shrink: 0;
1403
+ }
1404
+
1405
+ .xs83m0k {
1406
+ flex-shrink: 1;
1407
+ }
1408
+
1409
+ .x1a02dak {
1410
+ flex-wrap: wrap;
1411
+ }
1412
+
1413
+ .xjb2p0i {
1414
+ font-family: inherit;
1415
+ }
1416
+
1417
+ .xhpaxki, .xlaww2m {
1418
+ font-family: var(--stridge-kit-font-sans);
1419
+ }
1420
+
1421
+ .x47j52l {
1422
+ font-family: var(--stridge-kit-font-mono);
1423
+ }
1424
+
1425
+ .xkpwil5 {
1426
+ font-size: .875rem;
1427
+ }
1428
+
1429
+ .xsfzzmd {
1430
+ font-size: .8em;
1431
+ }
1432
+
1433
+ .x1j6dyjg {
1434
+ font-size: 11px;
1435
+ }
1436
+
1437
+ .xfifm61 {
1438
+ font-size: 12px;
1439
+ }
1440
+
1441
+ .x4z9k3i {
1442
+ font-size: 13px;
1443
+ }
1444
+
1445
+ .xif65rj {
1446
+ font-size: 14px;
1447
+ }
1448
+
1449
+ .x1jvydc1 {
1450
+ font-size: 15px;
1451
+ }
1452
+
1453
+ .x1j61zf2 {
1454
+ font-size: 16px;
1455
+ }
1456
+
1457
+ .xrv4cvt {
1458
+ font-size: 1em;
1459
+ }
1460
+
1461
+ .x1fhusgw {
1462
+ font-size: 56px;
1463
+ }
1464
+
1465
+ .x1xceadr {
1466
+ font-size: 80px;
1467
+ }
1468
+
1469
+ .x1qlqyl8 {
1470
+ font-size: inherit;
1471
+ }
1472
+
1473
+ .x1nagcoj {
1474
+ font-size: var(--stridge-kit-text-4xl);
1475
+ }
1476
+
1477
+ .x1qvzm30 {
1478
+ font-size: var(--stridge-kit-text-caption);
1479
+ }
1480
+
1481
+ .x1fqmwpq {
1482
+ font-size: var(--stridge-kit-text-meta);
1483
+ }
1484
+
1485
+ .x1r7tr6q {
1486
+ font-size: var(--stridge-kit-text-xl);
1487
+ }
1488
+
1489
+ .x18h8u2c {
1490
+ font-size: var(--stridge-kit-text-callout);
1491
+ }
1492
+
1493
+ .xmnoevb {
1494
+ font-size: var(--stridge-kit-text-base);
1495
+ }
1496
+
1497
+ .x1ll9jre {
1498
+ font-size: var(--stridge-kit-text-2xl);
1499
+ }
1500
+
1501
+ .x14qa7mu {
1502
+ font-size: var(--stridge-kit-text-sm);
1503
+ }
1504
+
1505
+ .x126f79r {
1506
+ font-size: var(--stridge-kit-text-lg);
1507
+ }
1508
+
1509
+ .x1r4ghiz {
1510
+ font-size: var(--stridge-kit-text-2xs);
1511
+ }
1512
+
1513
+ .x19x2dhx {
1514
+ font-size: var(--stridge-kit-text-3xl);
1515
+ }
1516
+
1517
+ .x1oae1zf {
1518
+ font-size: var(--stridge-kit-text-xs);
1519
+ }
1520
+
1521
+ .x1k4tb9n {
1522
+ font-style: italic;
1523
+ }
1524
+
1525
+ .x1wgrp8u {
1526
+ font-variant-numeric: inherit;
1527
+ }
1528
+
1529
+ .xss6m8b {
1530
+ font-variant-numeric: tabular-nums;
1531
+ }
1532
+
1533
+ .xk50ysn {
1534
+ font-weight: 500;
1535
+ }
1536
+
1537
+ .x1s688f {
1538
+ font-weight: 600;
1539
+ }
1540
+
1541
+ .x1xlr1w8 {
1542
+ font-weight: 700;
1543
+ }
1544
+
1545
+ .x1pd3egz {
1546
+ font-weight: inherit;
1547
+ }
1548
+
1549
+ .x1uq483d {
1550
+ font-weight: var(--stridge-kit-font-weight-bold);
1551
+ }
1552
+
1553
+ .x1qvi77d {
1554
+ font-weight: var(--stridge-kit-font-weight-semibold);
1555
+ }
1556
+
1557
+ .xxjjie5 {
1558
+ font-weight: var(--stridge-kit-font-weight-normal);
1559
+ }
1560
+
1561
+ .xi0sa8g {
1562
+ font-weight: var(--stridge-kit-font-weight-medium);
1563
+ }
1564
+
1565
+ .x1d0qlrl {
1566
+ inset-inline-end: -2px;
1567
+ }
1568
+
1569
+ .x1o0tod {
1570
+ inset-inline-start: 0;
1571
+ }
1572
+
1573
+ .xc8icb0 {
1574
+ isolation: isolate;
1575
+ }
1576
+
1577
+ .xl56j7k {
1578
+ justify-content: center;
1579
+ }
1580
+
1581
+ .x1nhvcw1 {
1582
+ justify-content: flex-start;
1583
+ }
1584
+
1585
+ .x1qughib {
1586
+ justify-content: space-between;
1587
+ }
1588
+
1589
+ .x1ixy4ik {
1590
+ letter-spacing: -.005em;
1591
+ }
1592
+
1593
+ .xjat59b {
1594
+ letter-spacing: -.01em;
1595
+ }
1596
+
1597
+ .x1b4dsll {
1598
+ letter-spacing: -.03em;
1599
+ }
1600
+
1601
+ .xo2cfqc {
1602
+ letter-spacing: -.04em;
1603
+ }
1604
+
1605
+ .x1yf5rgg {
1606
+ letter-spacing: .01em;
1607
+ }
1608
+
1609
+ .x16q24ku {
1610
+ letter-spacing: .02em;
1611
+ }
1612
+
1613
+ .x4gjf66 {
1614
+ letter-spacing: inherit;
1615
+ }
1616
+
1617
+ .xtawdc6 {
1618
+ letter-spacing: var(--stridge-kit-tracking-tighter);
1619
+ }
1620
+
1621
+ .x17krmmv {
1622
+ letter-spacing: var(--stridge-kit-tracking-tight);
1623
+ }
1624
+
1625
+ .x1f44it8 {
1626
+ letter-spacing: var(--stridge-kit-tracking-normal);
1627
+ }
1628
+
1629
+ .xen6mf {
1630
+ letter-spacing: var(--stridge-kit-tracking-wide);
1631
+ }
1632
+
1633
+ .x15wrrv1 {
1634
+ letter-spacing: var(--stridge-kit-tracking-widest);
1635
+ }
1636
+
1637
+ .x132q4wb {
1638
+ line-height: 1.25;
1639
+ }
1640
+
1641
+ .xo5v014 {
1642
+ line-height: 1;
1643
+ }
1644
+
1645
+ .x1xxsxie {
1646
+ line-height: 14px;
1647
+ }
1648
+
1649
+ .x1d3mw78 {
1650
+ line-height: 16px;
1651
+ }
1652
+
1653
+ .xd4r4e8 {
1654
+ line-height: 18px;
1655
+ }
1656
+
1657
+ .x19v9tvf {
1658
+ line-height: 22px;
1659
+ }
1660
+
1661
+ .x15bjb6t {
1662
+ line-height: inherit;
1663
+ }
1664
+
1665
+ .xfh9y1j {
1666
+ line-height: var(--stridge-kit-leading-none);
1667
+ }
1668
+
1669
+ .x14vj8e1 {
1670
+ line-height: var(--stridge-kit-leading-normal);
1671
+ }
1672
+
1673
+ .x1ppnlvb {
1674
+ line-height: var(--stridge-kit-leading-relaxed);
1675
+ }
1676
+
1677
+ .x2fnr2h {
1678
+ line-height: var(--stridge-kit-leading-tight);
1679
+ }
1680
+
1681
+ .x1cy9i3i {
1682
+ list-style-position: inside;
1683
+ }
1684
+
1685
+ .xtaz4m5 {
1686
+ list-style-type: disc;
1687
+ }
1688
+
1689
+ .x14iifvp {
1690
+ margin-inline-end: 18px;
1691
+ }
1692
+
1693
+ .xnqxrjt {
1694
+ margin-inline-end: 22px;
1695
+ }
1696
+
1697
+ .xf6vk7d {
1698
+ margin-inline-end: 5px;
1699
+ }
1700
+
1701
+ .xnkmj2t {
1702
+ margin-inline-start: 18px;
1703
+ }
1704
+
1705
+ .xnzr9dm {
1706
+ margin-inline-start: 22px;
1707
+ }
1708
+
1709
+ .xvc5jky {
1710
+ margin-inline-start: auto;
1711
+ }
1712
+
1713
+ .x1ssodb4 {
1714
+ margin-inline-start: var(--stridge-kit-space-1);
1715
+ }
1716
+
1717
+ .x19kjcj4 {
1718
+ object-fit: contain;
1719
+ }
1720
+
1721
+ .xti2d7y {
1722
+ opacity: .4;
1723
+ }
1724
+
1725
+ .xyd83as {
1726
+ opacity: .45;
1727
+ }
1728
+
1729
+ .xbyyjgo {
1730
+ opacity: .5;
1731
+ }
1732
+
1733
+ .xwq05k6 {
1734
+ opacity: .55;
1735
+ }
1736
+
1737
+ .x197sbye {
1738
+ opacity: .6;
1739
+ }
1740
+
1741
+ .x27vdmw {
1742
+ opacity: .95;
1743
+ }
1744
+
1745
+ .xg01cxk {
1746
+ opacity: 0;
1747
+ }
1748
+
1749
+ .x1clqncf {
1750
+ order: -1;
1751
+ }
1752
+
1753
+ .x9ek82g {
1754
+ order: 1;
1755
+ }
1756
+
1757
+ .x1t137rt {
1758
+ outline-style: none;
1759
+ }
1760
+
1761
+ .xj0a0fe {
1762
+ overflow-wrap: anywhere;
1763
+ }
1764
+
1765
+ .xpdmqnj {
1766
+ padding-inline-end: 12px;
1767
+ }
1768
+
1769
+ .x1pic42t {
1770
+ padding-inline-end: 14px;
1771
+ }
1772
+
1773
+ .x1x5flf6 {
1774
+ padding-inline-end: 18px;
1775
+ }
1776
+
1777
+ .x1o5r3ls {
1778
+ padding-inline-end: 22px;
1779
+ }
1780
+
1781
+ .xf159sx {
1782
+ padding-inline-end: 8px;
1783
+ }
1784
+
1785
+ .xrw5ot4 {
1786
+ padding-inline-end: 9px;
1787
+ }
1788
+
1789
+ .xi8f3d1 {
1790
+ padding-inline-end: var(--stridge-kit-space-3);
1791
+ }
1792
+
1793
+ .xy51phz {
1794
+ padding-inline-end: var(--stridge-kit-space-8);
1795
+ }
1796
+
1797
+ .xzfcf9p {
1798
+ padding-inline-end: var(--stridge-kit-space-2);
1799
+ }
1800
+
1801
+ .x1g0dm76 {
1802
+ padding-inline-start: 12px;
1803
+ }
1804
+
1805
+ .x1onr9mi {
1806
+ padding-inline-start: 14px;
1807
+ }
1808
+
1809
+ .xf7dkkf {
1810
+ padding-inline-start: 16px;
1811
+ }
1812
+
1813
+ .xwn43p0 {
1814
+ padding-inline-start: 18px;
1815
+ }
1816
+
1817
+ .xz7312c {
1818
+ padding-inline-start: 22px;
1819
+ }
1820
+
1821
+ .x7coems {
1822
+ padding-inline-start: 9px;
1823
+ }
1824
+
1825
+ .x1qntkwk {
1826
+ padding-inline-start: var(--stridge-kit-space-3);
1827
+ }
1828
+
1829
+ .xpsy26f {
1830
+ padding-inline-start: var(--stridge-kit-space-2);
1831
+ }
1832
+
1833
+ .x47corl {
1834
+ pointer-events: none;
1835
+ }
1836
+
1837
+ .x10l6tqk {
1838
+ position: absolute;
1839
+ }
1840
+
1841
+ .xixxii4 {
1842
+ position: fixed;
1843
+ }
1844
+
1845
+ .x1n2onr6 {
1846
+ position: relative;
1847
+ }
1848
+
1849
+ .x1uhb9sk {
1850
+ position: static;
1851
+ }
1852
+
1853
+ .xtt52l0 {
1854
+ resize: none;
1855
+ }
1856
+
1857
+ .x19f38uw {
1858
+ stroke-dasharray: 26;
1859
+ }
1860
+
1861
+ .x1f9z5db {
1862
+ stroke-dashoffset: 26px;
1863
+ }
1864
+
1865
+ .x1owpc8m {
1866
+ stroke-linecap: round;
1867
+ }
1868
+
1869
+ .x1k315e8 {
1870
+ stroke-width: 1.4px;
1871
+ }
1872
+
1873
+ .xhr4kjn {
1874
+ stroke-width: 1.5px;
1875
+ }
1876
+
1877
+ .xhxwl1 {
1878
+ stroke-width: 1.6px;
1879
+ }
1880
+
1881
+ .xupzf07 {
1882
+ stroke-width: 2.2px;
1883
+ }
1884
+
1885
+ .xvlca1e {
1886
+ stroke-width: 2px;
1887
+ }
1888
+
1889
+ .xrjhcif {
1890
+ stroke: var(--stridge-kit-card-border);
1891
+ }
1892
+
1893
+ .x1uhruij {
1894
+ stroke: var(--stridge-kit-muted-foreground);
1895
+ }
1896
+
1897
+ .x2b8uid {
1898
+ text-align: center;
1899
+ }
1900
+
1901
+ .xp4054r {
1902
+ text-align: end;
1903
+ }
1904
+
1905
+ .x16tdsg8 {
1906
+ text-align: inherit;
1907
+ }
1908
+
1909
+ .x1yc453h {
1910
+ text-align: start;
1911
+ }
1912
+
1913
+ .x5lhwog {
1914
+ text-decoration-line: line-through;
1915
+ }
1916
+
1917
+ .xkrqix3 {
1918
+ text-decoration-line: none;
1919
+ }
1920
+
1921
+ .xujl8zx {
1922
+ text-decoration-line: underline;
1923
+ }
1924
+
1925
+ .xyi4chj {
1926
+ text-decoration-thickness: 1px;
1927
+ }
1928
+
1929
+ .xlyipyv {
1930
+ text-overflow: ellipsis;
1931
+ }
1932
+
1933
+ .xn80e1m {
1934
+ text-transform: capitalize;
1935
+ }
1936
+
1937
+ .x1kyqaxf {
1938
+ text-transform: lowercase;
1939
+ }
1940
+
1941
+ .x6mezaz {
1942
+ text-transform: none;
1943
+ }
1944
+
1945
+ .xtvhhri {
1946
+ text-transform: uppercase;
1947
+ }
1948
+
1949
+ .xrys4gj {
1950
+ text-underline-offset: 2px;
1951
+ }
1952
+
1953
+ .xda060z {
1954
+ text-underline-offset: 3px;
1955
+ }
1956
+
1957
+ .x1fzhlzt {
1958
+ text-wrap: pretty;
1959
+ }
1960
+
1961
+ .x5ve5x3 {
1962
+ touch-action: none;
1963
+ }
1964
+
1965
+ .x1g0ag68 {
1966
+ transform-origin: center;
1967
+ }
1968
+
1969
+ .xctpfpq {
1970
+ transform-origin: var(--transform-origin);
1971
+ }
1972
+
1973
+ .x17t9sex {
1974
+ transform: rotate(-90deg) scaleY(-1);
1975
+ }
1976
+
1977
+ .x1iffjtl {
1978
+ transform: rotate(90deg);
1979
+ }
1980
+
1981
+ .x3oybdh {
1982
+ transform: scale(1);
1983
+ }
1984
+
1985
+ .xx6bhzk {
1986
+ transition-duration: .15s;
1987
+ }
1988
+
1989
+ .x9dyr19 {
1990
+ transition-duration: .18s;
1991
+ }
1992
+
1993
+ .x16gg8jk {
1994
+ transition-duration: .2s, .15s;
1995
+ }
1996
+
1997
+ .x13dflua {
1998
+ transition-duration: .2s;
1999
+ }
2000
+
2001
+ .x1vhb3u9 {
2002
+ transition-duration: var(--stridge-kit-duration-fast);
2003
+ }
2004
+
2005
+ .x11vqxbs {
2006
+ transition-property: background-color, border-color, box-shadow;
2007
+ }
2008
+
2009
+ .xcnuv27 {
2010
+ transition-property: background-color, border-color, color, box-shadow, opacity;
2011
+ }
2012
+
2013
+ .xju6q8h {
2014
+ transition-property: background-color, border-color, color, box-shadow, transform;
2015
+ }
2016
+
2017
+ .x1eaenvl {
2018
+ transition-property: background-color, border-color, color;
2019
+ }
2020
+
2021
+ .xs2xxs2 {
2022
+ transition-property: background-color, color;
2023
+ }
2024
+
2025
+ .x1e8aii2 {
2026
+ transition-property: background-color, opacity;
2027
+ }
2028
+
2029
+ .xk3iem4 {
2030
+ transition-property: border-color, box-shadow, opacity;
2031
+ }
2032
+
2033
+ .x12zzom9 {
2034
+ transition-property: border-color, box-shadow;
2035
+ }
2036
+
2037
+ .xkdsq27 {
2038
+ transition-property: box-shadow;
2039
+ }
2040
+
2041
+ .x1vma9ed {
2042
+ transition-property: font-size, width;
2043
+ }
2044
+
2045
+ .xua3uq3 {
2046
+ transition-property: height;
2047
+ }
2048
+
2049
+ .x19991ni {
2050
+ transition-property: opacity;
2051
+ }
2052
+
2053
+ .x11xpdln {
2054
+ transition-property: transform;
2055
+ }
2056
+
2057
+ .x1f7qsgr {
2058
+ transition-timing-function: cubic-bezier(.25, 1, .5, 1), cubic-bezier(.3, 0, .06, 1);
2059
+ }
2060
+
2061
+ .x4ognrn {
2062
+ transition-timing-function: cubic-bezier(0, 0, .2, 1);
2063
+ }
2064
+
2065
+ .x9lcvmn {
2066
+ transition-timing-function: ease-out;
2067
+ }
2068
+
2069
+ .x1xv5090 {
2070
+ transition-timing-function: var(--stridge-kit-ease-out);
2071
+ }
2072
+
2073
+ .x87ps6o {
2074
+ -webkit-user-select: none;
2075
+ user-select: none;
2076
+ }
2077
+
2078
+ .x11njtxf {
2079
+ vertical-align: baseline;
2080
+ }
2081
+
2082
+ .xxymvpz {
2083
+ vertical-align: middle;
2084
+ }
2085
+
2086
+ .x1ndrt89 {
2087
+ vertical-align: var(--stridge-kit-external-link-align, middle);
2088
+ }
2089
+
2090
+ .xlshs6z {
2091
+ visibility: hidden;
2092
+ }
2093
+
2094
+ .xnpuxes {
2095
+ visibility: visible;
2096
+ }
2097
+
2098
+ .xuxw1ft {
2099
+ white-space: nowrap;
2100
+ }
2101
+
2102
+ .x126k92a {
2103
+ white-space: pre-wrap;
2104
+ }
2105
+
2106
+ .x1sdyfia {
2107
+ white-space: pre;
2108
+ }
2109
+
2110
+ .x5uqrmk {
2111
+ will-change: height;
2112
+ }
2113
+
2114
+ .x6my1t9 {
2115
+ will-change: opacity,transform;
2116
+ }
2117
+
2118
+ .x1q1rmc8 {
2119
+ will-change: transform,opacity;
2120
+ }
2121
+
2122
+ .x1yn0g08 {
2123
+ word-break: break-all;
2124
+ }
2125
+
2126
+ .x13faqbe {
2127
+ word-break: break-word;
2128
+ }
2129
+
2130
+ .x8knxv4 {
2131
+ z-index: -1;
2132
+ }
2133
+
2134
+ .x1vjfegm {
2135
+ z-index: 1;
2136
+ }
2137
+
2138
+ .x11uqc5h {
2139
+ z-index: 100;
2140
+ }
2141
+
2142
+ .xg4qres {
2143
+ z-index: 1040;
2144
+ }
2145
+
2146
+ .x51lqrf {
2147
+ z-index: 1050;
2148
+ }
2149
+
2150
+ .xlow4cx {
2151
+ z-index: 1070;
2152
+ }
2153
+
2154
+ .xhtitgo {
2155
+ z-index: 2;
2156
+ }
2157
+
2158
+ .x1u8a7rm {
2159
+ z-index: 5;
2160
+ }
2161
+
2162
+ .xfa8aoj {
2163
+ z-index: 51;
2164
+ }
2165
+
2166
+ .x1fina04 {
2167
+ z-index: 90;
2168
+ }
2169
+
2170
+ .x1x47hvv {
2171
+ z-index: var(--stridge-kit-z-popover);
2172
+ }
2173
+
2174
+ .x3celgi:active:not(:disabled) {
2175
+ background-color: color-mix(in oklab,var(--stridge-kit-surface-hover) 70%,var(--stridge-kit-foreground));
2176
+ }
2177
+
2178
+ .x11p7ntb:active:not(:disabled) {
2179
+ background-color: color-mix(in oklab,var(--stridge-kit-secondary) 76%,var(--stridge-kit-foreground));
2180
+ }
2181
+
2182
+ .x1el1875:hover:not(:disabled) {
2183
+ background-color: color-mix(in oklab,var(--stridge-kit-secondary) 89%,var(--stridge-kit-foreground));
2184
+ }
2185
+
2186
+ .x1e9pno2:active:not(:disabled) {
2187
+ background-color: color-mix(in oklab,var(--stridge-kit-primary) 78%,var(--stridge-kit-foreground));
2188
+ }
2189
+
2190
+ .x19dz5jx:hover:not(:disabled) {
2191
+ background-color: color-mix(in oklab,var(--stridge-kit-primary) 90%,var(--stridge-kit-foreground));
2192
+ }
2193
+
2194
+ .x14rb9jf:focus-visible {
2195
+ background-color: #0000;
2196
+ }
2197
+
2198
+ .x1muuk1:hover:not(:disabled) {
2199
+ background-color: var(--stridge-kit-surface-hover);
2200
+ }
2201
+
2202
+ .xqn9ezn:focus-visible {
2203
+ box-shadow: 0 0 0 1px var(--stridge-kit-ring),var(--stridge-kit-shadow-ring-focus);
2204
+ }
2205
+
2206
+ .x1s9xil4:focus-visible {
2207
+ box-shadow: 0 0 0 2px color-mix(in oklab,var(--stridge-kit-tile-active) 40%,transparent);
2208
+ }
2209
+
2210
+ .xhatipn:focus-visible {
2211
+ box-shadow: 0 0 0 2px var(--stridge-kit-primary);
2212
+ }
2213
+
2214
+ .xf4a2cz:focus-visible {
2215
+ box-shadow: inset 0 0 0 2px var(--stridge-kit-primary);
2216
+ }
2217
+
2218
+ .x159teg:focus-visible {
2219
+ box-shadow: var(--stridge-kit-shadow-ring-focus);
2220
+ }
2221
+
2222
+ .x111phvh:active:not(:disabled), .x70x1a4:hover:not(:disabled) {
2223
+ color: var(--stridge-kit-foreground);
2224
+ }
2225
+
2226
+ .xk1skjw:focus-visible {
2227
+ color: var(--stridge-kit-muted-foreground);
2228
+ }
2229
+
2230
+ .x11ayl2i:focus-visible {
2231
+ outline-color: var(--stridge-kit-ring);
2232
+ }
2233
+
2234
+ .x1bqaal:focus-visible {
2235
+ outline-offset: -2px;
2236
+ }
2237
+
2238
+ .x7s97pk:focus-visible {
2239
+ outline-offset: 2px;
2240
+ }
2241
+
2242
+ .x9v5kkp:focus-visible {
2243
+ outline-style: solid;
2244
+ }
2245
+
2246
+ .x784prv:focus-visible {
2247
+ outline-width: 2px;
2248
+ }
2249
+
2250
+ .x1yi73pz:has( > input:focus-visible, > textarea:focus-visible) {
2251
+ box-shadow: var(--stridge-kit-shadow-ring-focus);
2252
+ }
2253
+
2254
+ .xw3o6j3:has( > input[aria-invalid="true"]:focus-visible, > textarea[aria-invalid="true"]:focus-visible) {
2255
+ box-shadow: var(--stridge-kit-shadow-ring-focus-destructive);
2256
+ }
2257
+
2258
+ .x13hg1u5:has( > input:disabled, > textarea:disabled) {
2259
+ cursor: not-allowed;
2260
+ }
2261
+
2262
+ .x18kp75k:has( > [data-align="block-end"]), .x194fthc:has( > [data-align="block-start"]) {
2263
+ flex-direction: column;
2264
+ }
2265
+
2266
+ .x1jyfq15:has( > input:disabled, > textarea:disabled) {
2267
+ opacity: .6;
2268
+ }
2269
+
2270
+ .x1h3il70:has( > [data-align="inline-end"]) > input, :has( > [data-align="inline-end"]) > textarea {
2271
+ padding-inline-end: var(--stridge-kit-space-2);
2272
+ }
2273
+
2274
+ .xt6ss43:has( > [data-align="inline-start"]) > input, :has( > [data-align="inline-start"]) > textarea {
2275
+ padding-inline-start: var(--stridge-kit-space-2);
2276
+ }
2277
+
2278
+ .x1s07b3s:disabled {
2279
+ cursor: not-allowed;
2280
+ }
2281
+
2282
+ .xijokvz:disabled {
2283
+ opacity: .5;
2284
+ }
2285
+
2286
+ .xaqnwrm:disabled {
2287
+ pointer-events: none;
2288
+ }
2289
+
2290
+ .x1i3dt4k:hover {
2291
+ background-color: color-mix(in oklab,var(--stridge-kit-input) 97%,var(--stridge-kit-foreground) 3%);
2292
+ }
2293
+
2294
+ .x158g6bj:hover {
2295
+ background-color: color-mix(in oklab,var(--stridge-kit-tile-surface) 86%,var(--stridge-kit-foreground) 14%);
2296
+ }
2297
+
2298
+ .xjl87wc:hover {
2299
+ background-color: color-mix(in oklab,var(--stridge-kit-tile-surface) 97%,var(--stridge-kit-foreground) 3%);
2300
+ }
2301
+
2302
+ .x1k72nz7:hover {
2303
+ background-color: color-mix(in oklab,var(--stridge-kit-tile-surface) 97%,var(--stridge-kit-tile-foreground) 3%);
2304
+ }
2305
+
2306
+ .x8av6v9:hover {
2307
+ background-color: color-mix(in oklab,var(--stridge-kit-destructive) 80%,var(--stridge-kit-foreground));
2308
+ }
2309
+
2310
+ .x1ehxjrm:hover {
2311
+ background-color: color-mix(in oklab,var(--stridge-kit-destructive-soft) 86%,var(--stridge-kit-foreground));
2312
+ }
2313
+
2314
+ .x1n5bzlp:hover {
2315
+ background-color: #0000;
2316
+ }
2317
+
2318
+ .x1tkvd9a:hover {
2319
+ background-color: var(--stridge-kit-secondary);
2320
+ }
2321
+
2322
+ .xpscirx:hover {
2323
+ color: var(--stridge-kit-foreground);
2324
+ }
2325
+
2326
+ .xib2ewr:hover {
2327
+ color: var(--stridge-kit-muted-foreground);
2328
+ }
2329
+
2330
+ .x1mzqehw:hover {
2331
+ opacity: .6;
2332
+ }
2333
+
2334
+ .xyc4ar7:focus {
2335
+ background-color: #0000;
2336
+ }
2337
+
2338
+ .x91zbg9:focus {
2339
+ background-color: var(--stridge-kit-tile-surface);
2340
+ }
2341
+
2342
+ .x12wwdwo:focus {
2343
+ background-color: var(--stridge-kit-surface-hover);
2344
+ }
2345
+
2346
+ .x1thzfav:focus {
2347
+ color: var(--stridge-kit-muted-foreground);
2348
+ }
2349
+
2350
+ .x1gfp9c8:focus {
2351
+ color: var(--stridge-kit-popover-foreground);
2352
+ }
2353
+
2354
+ .xldr1qn:active {
2355
+ background-color: color-mix(in oklab,var(--stridge-kit-tile-surface) 76%,var(--stridge-kit-foreground) 24%);
2356
+ }
2357
+
2358
+ .x18xkpei:active {
2359
+ background-color: color-mix(in oklab,var(--stridge-kit-tile-surface) 94%,var(--stridge-kit-tile-foreground) 6%);
2360
+ }
2361
+
2362
+ .xyftt0y:active {
2363
+ background-color: #0000;
2364
+ }
2365
+
2366
+ .x1u0pxdh:active {
2367
+ color: var(--stridge-kit-muted-foreground);
2368
+ }
2369
+
2370
+ @media (prefers-reduced-motion: reduce) {
2371
+ .x14q22ui.x14q22ui {
2372
+ animation-delay: 0s;
2373
+ }
2374
+
2375
+ .x1s1fvk8.x1s1fvk8 {
2376
+ animation-duration: .01ms;
2377
+ }
2378
+
2379
+ .x1u6grsq.x1u6grsq {
2380
+ animation-duration: 0s;
2381
+ }
2382
+
2383
+ .x1aquc0h.x1aquc0h {
2384
+ animation-name: none;
2385
+ }
2386
+
2387
+ .x12w9bfk.x12w9bfk {
2388
+ transition-duration: 0s;
2389
+ }
2390
+ }
2391
+
2392
+ @container field-group (width >= 32rem) {
2393
+ .xbfyvo5.xbfyvo5 {
2394
+ align-items: center;
2395
+ }
2396
+ }
2397
+
2398
+ @container transferCrypto (width >= 28rem) {
2399
+ .x1005t9t.x1005t9t {
2400
+ background-color: #0000;
2401
+ }
2402
+ }
2403
+
2404
+ @container field-group (width >= 32rem) {
2405
+ .x1ssvtaf.x1ssvtaf {
2406
+ flex-direction: row;
2407
+ }
2408
+ }
2409
+
2410
+ @container transferCrypto (width >= 28rem) {
2411
+ .x1kfralx.x1kfralx {
2412
+ margin-inline-end: 22px;
2413
+ }
2414
+
2415
+ .xwwmoof.xwwmoof {
2416
+ margin-inline-start: 22px;
2417
+ }
2418
+
2419
+ .x1511ct0.x1511ct0 {
2420
+ padding-inline-end: 22px;
2421
+ }
2422
+
2423
+ .x12owy3a.x12owy3a {
2424
+ padding-inline-start: 22px;
2425
+ }
2426
+ }
2427
+ }
2428
+
2429
+ @layer priority5 {
2430
+ .x2kdqbz {
2431
+ border-bottom-color: var(--stridge-kit-details-border);
2432
+ }
2433
+
2434
+ .x188r5k3 {
2435
+ border-bottom-color: var(--stridge-kit-card-border-frame);
2436
+ }
2437
+
2438
+ .x1q0q8m5 {
2439
+ border-bottom-style: solid;
2440
+ }
2441
+
2442
+ .x1qhh985 {
2443
+ border-bottom-width: 0;
2444
+ }
2445
+
2446
+ .xso031l {
2447
+ border-bottom-width: 1px;
2448
+ }
2449
+
2450
+ .x1ooxri5 {
2451
+ border-top-color: var(--stridge-kit-card-border);
2452
+ }
2453
+
2454
+ .x1wc9ssx {
2455
+ border-top-color: var(--stridge-kit-card-border-frame);
2456
+ }
2457
+
2458
+ .x13fuv20 {
2459
+ border-top-style: solid;
2460
+ }
2461
+
2462
+ .x972fbf {
2463
+ border-top-width: 0;
2464
+ }
2465
+
2466
+ .x178xt8z {
2467
+ border-top-width: 1px;
2468
+ }
2469
+
2470
+ .x1t1qrwb {
2471
+ bottom: -2px;
2472
+ }
2473
+
2474
+ .x1ey2m1c {
2475
+ bottom: 0;
2476
+ }
2477
+
2478
+ .xmbx2d0 {
2479
+ bottom: 14px;
2480
+ }
2481
+
2482
+ .x191j7n5 {
2483
+ bottom: 16px;
2484
+ }
2485
+
2486
+ .xdd4er5 {
2487
+ bottom: auto;
2488
+ }
2489
+
2490
+ .x5yr21d {
2491
+ height: 100%;
2492
+ }
2493
+
2494
+ .x170jfvy {
2495
+ height: 10px;
2496
+ }
2497
+
2498
+ .x6w4g8m {
2499
+ height: 11px;
2500
+ }
2501
+
2502
+ .x1kpxq89 {
2503
+ height: 12px;
2504
+ }
2505
+
2506
+ .x18gnavp {
2507
+ height: 13px;
2508
+ }
2509
+
2510
+ .x1v9usgg {
2511
+ height: 14px;
2512
+ }
2513
+
2514
+ .xlup9mm {
2515
+ height: 16px;
2516
+ }
2517
+
2518
+ .xmix8c7 {
2519
+ height: 18px;
2520
+ }
2521
+
2522
+ .xb2rc7v {
2523
+ height: 192px;
2524
+ }
2525
+
2526
+ .xlzyvqe {
2527
+ height: 1em;
2528
+ }
2529
+
2530
+ .xjm9jq1 {
2531
+ height: 1px;
2532
+ }
2533
+
2534
+ .x1m3v4wt {
2535
+ height: 200px;
2536
+ }
2537
+
2538
+ .xxk0z11 {
2539
+ height: 24px;
2540
+ }
2541
+
2542
+ .x1fgtraw {
2543
+ height: 28px;
2544
+ }
2545
+
2546
+ .x10w6t97 {
2547
+ height: 32px;
2548
+ }
2549
+
2550
+ .xc9qbxq {
2551
+ height: 36px;
2552
+ }
2553
+
2554
+ .xwvwv9b {
2555
+ height: 46px;
2556
+ }
2557
+
2558
+ .x1peatla {
2559
+ height: 64px;
2560
+ }
2561
+
2562
+ .xegnrdp {
2563
+ height: 9px;
2564
+ }
2565
+
2566
+ .xt7dq6l {
2567
+ height: auto;
2568
+ }
2569
+
2570
+ .xg7h5cd {
2571
+ height: fit-content;
2572
+ }
2573
+
2574
+ .xuan8c8 {
2575
+ height: var(--collapsible-panel-height);
2576
+ }
2577
+
2578
+ .x1nrll8i {
2579
+ left: 50%;
2580
+ }
2581
+
2582
+ .x1t8mvi6 {
2583
+ left: auto;
2584
+ }
2585
+
2586
+ .xat24cr {
2587
+ margin-bottom: 0;
2588
+ }
2589
+
2590
+ .x1c436fg {
2591
+ margin-bottom: 18px;
2592
+ }
2593
+
2594
+ .x91k8ka {
2595
+ margin-bottom: 22px;
2596
+ }
2597
+
2598
+ .xzueoph {
2599
+ margin-bottom: 6px;
2600
+ }
2601
+
2602
+ .x1782xsq {
2603
+ margin-bottom: var(--stridge-kit-space-1);
2604
+ }
2605
+
2606
+ .xji1aa {
2607
+ margin-bottom: var(--stridge-kit-space-3);
2608
+ }
2609
+
2610
+ .x1anr4k7 {
2611
+ margin-bottom: var(--stridge-kit-space-2);
2612
+ }
2613
+
2614
+ .xdj266r {
2615
+ margin-top: 0;
2616
+ }
2617
+
2618
+ .x1hmvnq2 {
2619
+ margin-top: 14px;
2620
+ }
2621
+
2622
+ .xw7yly9 {
2623
+ margin-top: 16px;
2624
+ }
2625
+
2626
+ .xhrpt6u {
2627
+ margin-top: 18px;
2628
+ }
2629
+
2630
+ .xqui205 {
2631
+ margin-top: 24px;
2632
+ }
2633
+
2634
+ .xr9ek0c {
2635
+ margin-top: 2px;
2636
+ }
2637
+
2638
+ .x1gslohp {
2639
+ margin-top: 4px;
2640
+ }
2641
+
2642
+ .x1k70j0n {
2643
+ margin-top: 6px;
2644
+ }
2645
+
2646
+ .x1xmf6yo {
2647
+ margin-top: 8px;
2648
+ }
2649
+
2650
+ .x1p5pg8g {
2651
+ margin-top: var(--stridge-kit-space-1);
2652
+ }
2653
+
2654
+ .xq9mr0s {
2655
+ margin-top: var(--stridge-kit-space-3);
2656
+ }
2657
+
2658
+ .x1u1y36e {
2659
+ margin-top: var(--stridge-kit-space-2);
2660
+ }
2661
+
2662
+ .xmz0i5r {
2663
+ max-height: 100%;
2664
+ }
2665
+
2666
+ .x19aweqf {
2667
+ max-height: 180px;
2668
+ }
2669
+
2670
+ .x1akyapa {
2671
+ max-height: 1em;
2672
+ }
2673
+
2674
+ .xpulllz {
2675
+ max-height: 66px;
2676
+ }
2677
+
2678
+ .x1q5actc {
2679
+ max-height: calc(100% - 2rem);
2680
+ }
2681
+
2682
+ .x1ko6lg0 {
2683
+ max-height: min(var(--available-height),200px);
2684
+ }
2685
+
2686
+ .x193iq5w {
2687
+ max-width: 100%;
2688
+ }
2689
+
2690
+ .x12pq5kg {
2691
+ max-width: 1em;
2692
+ }
2693
+
2694
+ .x1va8c73 {
2695
+ max-width: 320px;
2696
+ }
2697
+
2698
+ .x1dt7z5j {
2699
+ max-width: 380px;
2700
+ }
2701
+
2702
+ .x17fpy1y {
2703
+ max-width: 480px;
2704
+ }
2705
+
2706
+ .xvq9yp0 {
2707
+ max-width: min(var(--stridge-kit-dialog-width),calc(100% - 2rem));
2708
+ }
2709
+
2710
+ .x2lwn1j {
2711
+ min-height: 0;
2712
+ }
2713
+
2714
+ .x1xaadd7 {
2715
+ min-height: 1em;
2716
+ }
2717
+
2718
+ .xe0957l {
2719
+ min-height: 22px;
2720
+ }
2721
+
2722
+ .xjwf9q1 {
2723
+ min-height: 24px;
2724
+ }
2725
+
2726
+ .xj9xw9b {
2727
+ min-height: 26px;
2728
+ }
2729
+
2730
+ .x1rz828m {
2731
+ min-height: 30px;
2732
+ }
2733
+
2734
+ .x21xpn4 {
2735
+ min-height: 32px;
2736
+ }
2737
+
2738
+ .x1ba4aug {
2739
+ min-height: 40px;
2740
+ }
2741
+
2742
+ .x17g2nzx {
2743
+ min-width: .6em;
2744
+ }
2745
+
2746
+ .xeuugli {
2747
+ min-width: 0;
2748
+ }
2749
+
2750
+ .xslf67s {
2751
+ min-width: 1em;
2752
+ }
2753
+
2754
+ .x80t9vs {
2755
+ min-width: var(--anchor-width);
2756
+ }
2757
+
2758
+ .xw2csxc {
2759
+ overflow-x: auto;
2760
+ }
2761
+
2762
+ .x6ikm8r {
2763
+ overflow-x: hidden;
2764
+ }
2765
+
2766
+ .x1odjw0f {
2767
+ overflow-y: auto;
2768
+ }
2769
+
2770
+ .x1rife3k {
2771
+ overflow-y: scroll;
2772
+ }
2773
+
2774
+ .xnw97ix {
2775
+ padding-bottom: .125rem;
2776
+ }
2777
+
2778
+ .x18d9i69 {
2779
+ padding-bottom: 0;
2780
+ }
2781
+
2782
+ .xxbrewl {
2783
+ padding-bottom: 11px;
2784
+ }
2785
+
2786
+ .xsag5q8 {
2787
+ padding-bottom: 12px;
2788
+ }
2789
+
2790
+ .x1g2khh7 {
2791
+ padding-bottom: 14px;
2792
+ }
2793
+
2794
+ .x1l90r2v {
2795
+ padding-bottom: 16px;
2796
+ }
2797
+
2798
+ .x1hhzuzn {
2799
+ padding-bottom: 18px;
2800
+ }
2801
+
2802
+ .x1t4gjm {
2803
+ padding-bottom: 22px;
2804
+ }
2805
+
2806
+ .xwib8y2 {
2807
+ padding-bottom: 8px;
2808
+ }
2809
+
2810
+ .xfvigk {
2811
+ padding-bottom: var(--stridge-kit-space-4);
2812
+ }
2813
+
2814
+ .x1hli9g4 {
2815
+ padding-bottom: var(--stridge-kit-space-1);
2816
+ }
2817
+
2818
+ .x1df270x {
2819
+ padding-bottom: var(--stridge-kit-space-3);
2820
+ }
2821
+
2822
+ .x1ww8orz {
2823
+ padding-bottom: var(--stridge-kit-space-2);
2824
+ }
2825
+
2826
+ .xrhwvvd {
2827
+ padding-top: .125rem;
2828
+ }
2829
+
2830
+ .xzi3mdb {
2831
+ padding-top: 11px;
2832
+ }
2833
+
2834
+ .xz9dl7a {
2835
+ padding-top: 12px;
2836
+ }
2837
+
2838
+ .xyinxu5 {
2839
+ padding-top: 14px;
2840
+ }
2841
+
2842
+ .xyamay9 {
2843
+ padding-top: 16px;
2844
+ }
2845
+
2846
+ .x109j2v6 {
2847
+ padding-top: 18px;
2848
+ }
2849
+
2850
+ .x1cnzs8 {
2851
+ padding-top: 20px;
2852
+ }
2853
+
2854
+ .x1xy6bms {
2855
+ padding-top: 22px;
2856
+ }
2857
+
2858
+ .x9desvi {
2859
+ padding-top: 26px;
2860
+ }
2861
+
2862
+ .x7sb2j6 {
2863
+ padding-top: 28px;
2864
+ }
2865
+
2866
+ .x1nn3v0j {
2867
+ padding-top: 2px;
2868
+ }
2869
+
2870
+ .x1miatn0 {
2871
+ padding-top: 32px;
2872
+ }
2873
+
2874
+ .x1byr4rc {
2875
+ padding-top: 52px;
2876
+ }
2877
+
2878
+ .x1yrsyyn {
2879
+ padding-top: 6px;
2880
+ }
2881
+
2882
+ .x1y1aw1k {
2883
+ padding-top: 8px;
2884
+ }
2885
+
2886
+ .x96k8nx {
2887
+ padding-top: 9px;
2888
+ }
2889
+
2890
+ .x1h03h88 {
2891
+ padding-top: var(--stridge-kit-space-4);
2892
+ }
2893
+
2894
+ .xq38ur3 {
2895
+ padding-top: var(--stridge-kit-space-1);
2896
+ }
2897
+
2898
+ .x19ment4 {
2899
+ padding-top: var(--stridge-kit-space-3);
2900
+ }
2901
+
2902
+ .x2tg1xt {
2903
+ padding-top: var(--stridge-kit-space-2);
2904
+ }
2905
+
2906
+ .x13vifvy {
2907
+ top: 0;
2908
+ }
2909
+
2910
+ .xuivejd {
2911
+ top: 14px;
2912
+ }
2913
+
2914
+ .xh8yej3 {
2915
+ width: 100%;
2916
+ }
2917
+
2918
+ .x1fsd2vl {
2919
+ width: 10px;
2920
+ }
2921
+
2922
+ .x10vfzb2 {
2923
+ width: 11px;
2924
+ }
2925
+
2926
+ .xsmyaan {
2927
+ width: 12px;
2928
+ }
2929
+
2930
+ .x1fxhmyf {
2931
+ width: 13px;
2932
+ }
2933
+
2934
+ .x6jxa94 {
2935
+ width: 14px;
2936
+ }
2937
+
2938
+ .x1kky2od {
2939
+ width: 16px;
2940
+ }
2941
+
2942
+ .x1so1ns2 {
2943
+ width: 192px;
2944
+ }
2945
+
2946
+ .x15vhz18 {
2947
+ width: 1em;
2948
+ }
2949
+
2950
+ .x16grhtn {
2951
+ width: 220px;
2952
+ }
2953
+
2954
+ .xgd8bvy {
2955
+ width: 28px;
2956
+ }
2957
+
2958
+ .xfo62xy {
2959
+ width: 2px;
2960
+ }
2961
+
2962
+ .x1td3qas {
2963
+ width: 32px;
2964
+ }
2965
+
2966
+ .x14qfxbe {
2967
+ width: 36px;
2968
+ }
2969
+
2970
+ .x1fu8urw {
2971
+ width: 64px;
2972
+ }
2973
+
2974
+ .xfxxnmn {
2975
+ width: calc(100% - 28px);
2976
+ }
2977
+
2978
+ .xeq5yr9 {
2979
+ width: fit-content;
2980
+ }
2981
+
2982
+ .xezivpi {
2983
+ width: max-content;
2984
+ }
2985
+
2986
+ .x1g31smg:first-child {
2987
+ border-top-width: 0;
2988
+ }
2989
+
2990
+ .x1t1lzn6:last-child {
2991
+ border-bottom-width: 0;
2992
+ }
2993
+
2994
+ @container transferCrypto (width >= 28rem) {
2995
+ .x885qvc.x885qvc {
2996
+ height: 160px;
2997
+ }
2998
+
2999
+ .xpkk1xi.xpkk1xi {
3000
+ height: 192px;
3001
+ }
3002
+
3003
+ .x37ks8j.x37ks8j {
3004
+ margin-bottom: 22px;
3005
+ }
3006
+
3007
+ .x1pnypo2.x1pnypo2 {
3008
+ margin-top: 24px;
3009
+ }
3010
+
3011
+ .x12r3qzf.x12r3qzf {
3012
+ margin-top: 8px;
3013
+ }
3014
+
3015
+ .x1hf6i2e.x1hf6i2e {
3016
+ padding-bottom: 14px;
3017
+ }
3018
+
3019
+ .x1qngw98.x1qngw98 {
3020
+ padding-bottom: 18px;
3021
+ }
3022
+
3023
+ .xskglhc.xskglhc {
3024
+ padding-top: 10px;
3025
+ }
3026
+
3027
+ .x19raiq2.x19raiq2 {
3028
+ padding-top: 20px;
3029
+ }
3030
+
3031
+ .x1evf9ll.x1evf9ll {
3032
+ padding-top: 22px;
3033
+ }
3034
+
3035
+ .x2ytoob.x2ytoob {
3036
+ width: 160px;
3037
+ }
3038
+
3039
+ .xsxf1mu.xsxf1mu {
3040
+ width: 192px;
3041
+ }
3042
+ }
3043
+ }
3044
+
3045
+ @layer priority6 {
3046
+ .x13rkwjk[aria-invalid="true"][data-popup-open], .x1e0f7l1[aria-invalid="true"], .xu6psuv[aria-invalid="true"]:focus-visible {
3047
+ border-color: var(--stridge-kit-destructive-border);
3048
+ }
3049
+ }
3050
+
3051
+ @layer priority7 {
3052
+ .x6qscqp[data-open] {
3053
+ animation-duration: .15s;
3054
+ }
3055
+
3056
+ .x1ej03p1[data-closed] {
3057
+ animation-duration: .1s;
3058
+ }
3059
+
3060
+ .x1e1ssmj[data-open] {
3061
+ animation-duration: var(--stridge-kit-duration-fast);
3062
+ }
3063
+
3064
+ .x1i76y9b[data-closed], .x1je04mk[data-open] {
3065
+ animation-fill-mode: both;
3066
+ }
3067
+
3068
+ .x1v7ye95[data-open] {
3069
+ animation-name: x1k48ry3-B;
3070
+ }
3071
+
3072
+ .x5l6jkr[data-closed] {
3073
+ animation-name: x1mi9bte-B;
3074
+ }
3075
+
3076
+ .x1t6nk59[data-closed] {
3077
+ animation-name: x1pfxquz-B;
3078
+ }
3079
+
3080
+ .x1lhd1x2[data-open] {
3081
+ animation-name: x6v7thy-B;
3082
+ }
3083
+
3084
+ .x130u89k[data-closed] {
3085
+ animation-name: xg0bqix-B;
3086
+ }
3087
+
3088
+ .x12nsbnh[data-open] {
3089
+ animation-name: xw2c1lr-B;
3090
+ }
3091
+
3092
+ .x1gv3vh9[data-closed] {
3093
+ animation-timing-function: ease-in;
3094
+ }
3095
+
3096
+ .xec0cv[data-open] {
3097
+ animation-timing-function: ease-out;
3098
+ }
3099
+
3100
+ .x1o9hdch[data-open] {
3101
+ animation-timing-function: var(--stridge-kit-ease-enter);
3102
+ }
3103
+
3104
+ .x7w1vdx[data-closed] {
3105
+ animation-timing-function: var(--stridge-kit-ease-exit);
3106
+ }
3107
+
3108
+ .xevhoj0[data-highlighted] {
3109
+ background-color: var(--stridge-kit-tile-surface);
3110
+ }
3111
+
3112
+ .x9oo2q2[aria-expanded="true"] {
3113
+ background-color: var(--stridge-kit-muted);
3114
+ }
3115
+
3116
+ .xr6bgp2[data-highlighted] {
3117
+ background-color: var(--stridge-kit-surface-hover);
3118
+ }
3119
+
3120
+ .xsklecs[aria-invalid="true"]:focus-visible, .xyy5omr[aria-invalid="true"][data-popup-open] {
3121
+ box-shadow: var(--stridge-kit-shadow-ring-focus-destructive);
3122
+ }
3123
+
3124
+ .x19yg9bl[aria-expanded="true"] {
3125
+ color: var(--stridge-kit-foreground);
3126
+ }
3127
+
3128
+ .x1pm5o7e[aria-expanded="true"] {
3129
+ color: var(--stridge-kit-secondary-foreground);
3130
+ }
3131
+
3132
+ .x1977m2e[data-invalid="true"] {
3133
+ color: var(--stridge-kit-destructive);
3134
+ }
3135
+
3136
+ .x163giyb[data-highlighted] {
3137
+ color: var(--stridge-kit-popover-foreground);
3138
+ }
3139
+
3140
+ .xzuuoaq[hidden]:not([hidden="until-found"]) {
3141
+ display: none;
3142
+ }
3143
+
3144
+ .xrvs7vr[data-orientation="horizontal"] {
3145
+ flex-direction: column;
3146
+ }
3147
+
3148
+ .x118mprz[data-side="inline-start"] {
3149
+ inset-inline-end: -13px;
3150
+ }
3151
+
3152
+ .x1julj3b[data-orientation="vertical"] {
3153
+ inset-inline-end: 0;
3154
+ }
3155
+
3156
+ .xozvt59[data-side="inline-end"] {
3157
+ inset-inline-start: -13px;
3158
+ }
3159
+
3160
+ .xyj2g8q[data-orientation="horizontal"] {
3161
+ inset-inline-start: 0;
3162
+ }
3163
+
3164
+ .x11xjgb3[data-disabled] {
3165
+ opacity: .45;
3166
+ }
3167
+
3168
+ .x1szrgyu[data-disabled] {
3169
+ opacity: .5;
3170
+ }
3171
+
3172
+ .x1mi5j4n[data-scrolling], .x5xkuxn[data-hovering] {
3173
+ opacity: 1;
3174
+ }
3175
+
3176
+ .x1sw4l06[data-disabled] {
3177
+ pointer-events: auto;
3178
+ }
3179
+
3180
+ .x7gqb9v[data-disabled] {
3181
+ pointer-events: none;
3182
+ }
3183
+
3184
+ .x1ervhv0[data-side="inline-end"], .xleqk9n[data-side="right"] {
3185
+ transform: rotate(-90deg);
3186
+ }
3187
+
3188
+ .x1pdsi1e[data-side="bottom"] {
3189
+ transform: rotate(0);
3190
+ }
3191
+
3192
+ .x1c3rhtc[data-popup-open] :scope, .x1shx6fy[data-side="top"], .xtqhfa[data-panel-open] :scope {
3193
+ transform: rotate(180deg);
3194
+ }
3195
+
3196
+ .x1nsrxey[data-side="left"], .x6e4vt5[data-side="inline-start"] {
3197
+ transform: rotate(90deg);
3198
+ }
3199
+
3200
+ @media (prefers-reduced-motion: reduce) {
3201
+ .xgx5xwo.xgx5xwo[data-closed], .xslpr3k.xslpr3k[data-open] {
3202
+ animation-duration: 0s;
3203
+ }
3204
+
3205
+ .x1cha3i4.x1cha3i4[data-closed], .x1fxewv3.x1fxewv3[data-open] {
3206
+ animation-name: none;
3207
+ }
3208
+ }
3209
+ }
3210
+
3211
+ @layer priority8 {
3212
+ .x1tuhd6z[data-side="top"] {
3213
+ bottom: -8px;
3214
+ }
3215
+
3216
+ .x1e9oa8n[data-orientation="horizontal"] {
3217
+ bottom: 0;
3218
+ }
3219
+
3220
+ .xzs8kq4[data-direction="down"]:before {
3221
+ bottom: 100%;
3222
+ }
3223
+
3224
+ .xkbqsiu:after, .xl5i350:before {
3225
+ flex: 1;
3226
+ }
3227
+
3228
+ .x12wejat[data-ending-style], .x1fe7yth[data-starting-style] {
3229
+ height: 0;
3230
+ }
3231
+
3232
+ .xrhq4tq[data-orientation="vertical"] {
3233
+ height: 100%;
3234
+ }
3235
+
3236
+ .x1thhcpk[data-orientation="horizontal"] {
3237
+ height: var(--stridge-kit-space-3);
3238
+ }
3239
+
3240
+ .xcghi9w[data-side="right"] {
3241
+ left: -13px;
3242
+ }
3243
+
3244
+ .x1f3sk1h[data-side="left"] {
3245
+ right: -13px;
3246
+ }
3247
+
3248
+ .x10hicux[data-side="bottom"] {
3249
+ top: -8px;
3250
+ }
3251
+
3252
+ .x1gmvaq8[data-orientation="vertical"] {
3253
+ top: 0;
3254
+ }
3255
+
3256
+ .x1yuh1d4[data-direction="up"]:before {
3257
+ top: 100%;
3258
+ }
3259
+
3260
+ .x90yeee[data-orientation="horizontal"] {
3261
+ width: 100%;
3262
+ }
3263
+
3264
+ .xr4lo6p[data-orientation="vertical"] {
3265
+ width: var(--stridge-kit-space-3);
3266
+ }
3267
+ }
3268
+
3269
+ @layer priority9 {
3270
+ .xbntbuv:before, .xki0kx:after {
3271
+ background-color: var(--stridge-kit-border);
3272
+ }
3273
+
3274
+ .x16nik3i::placeholder {
3275
+ color: var(--stridge-kit-muted-foreground-faint);
3276
+ }
3277
+
3278
+ .x100rkj9:after, .x10tli2e:before {
3279
+ content: "";
3280
+ }
3281
+
3282
+ .x90y9lf::placeholder {
3283
+ font-family: var(--stridge-kit-font-mono);
3284
+ }
3285
+
3286
+ .x1682cnc:before {
3287
+ inset-inline-start: 0;
3288
+ }
3289
+
3290
+ .xkk1bqk:before {
3291
+ pointer-events: none;
3292
+ }
3293
+
3294
+ .x1hmns74:before {
3295
+ position: absolute;
3296
+ }
3297
+ }
3298
+
3299
+ @layer priority10 {
3300
+ .xszcg87:before {
3301
+ height: 100%;
3302
+ }
3303
+
3304
+ .xcock1l:after, .xy80zi5:before {
3305
+ height: 1px;
3306
+ }
3307
+
3308
+ .x1rmj1tg:before {
3309
+ width: 100%;
3310
+ }
3311
+ }
3312
+
3313
+ @keyframes xb4s9mv-B {
3314
+ 0% {
3315
+ background-position: -200% 0;
3316
+ }
3317
+
3318
+ 100% {
3319
+ background-position: 200% 0;
3320
+ }
3321
+ }
3322
+
3323
+ @keyframes x1yv4ed5-B {
3324
+ 0%, 100% {
3325
+ box-shadow: 0 0 0 0 var(--stridge-kit-success-pulse, #68d36f73);
3326
+ }
3327
+
3328
+ 50% {
3329
+ box-shadow: 0 0 0 4px #68d36f00;
3330
+ box-shadow: 0 0 0 4px lab(76.5457% -47.6798 39.4248 / 0);
3331
+ }
3332
+ }
3333
+
3334
+ @supports (color: lab(0% 0 0)) {
3335
+ @keyframes x1yv4ed5-B {
3336
+ 0%, 100% {
3337
+ box-shadow: 0 0 0 0 var(--stridge-kit-success-pulse, lab(76.5457% -47.6798 39.4248 / .45));
3338
+ }
3339
+
3340
+ 50% {
3341
+ box-shadow: 0 0 0 4px #68d36f00;
3342
+ box-shadow: 0 0 0 4px lab(76.5457% -47.6798 39.4248 / 0);
3343
+ }
3344
+ }
3345
+ }
3346
+
3347
+ @keyframes x3q3iw1-B {
3348
+ 0% {
3349
+ opacity: .35;
3350
+ }
3351
+
3352
+ 50% {
3353
+ opacity: 1;
3354
+ }
3355
+
3356
+ 100% {
3357
+ opacity: .35;
3358
+ }
3359
+ }
3360
+
3361
+ @keyframes x1mi9bte-B {
3362
+ to {
3363
+ opacity: 0;
3364
+ }
3365
+ }
3366
+
3367
+ @keyframes xw2c1lr-B {
3368
+ from {
3369
+ opacity: 0;
3370
+ }
3371
+ }
3372
+
3373
+ @keyframes x1pfxquz-B {
3374
+ to {
3375
+ opacity: 0;
3376
+ transform: scale(.95);
3377
+ }
3378
+ }
3379
+
3380
+ @keyframes x6v7thy-B {
3381
+ from {
3382
+ opacity: 0;
3383
+ transform: scale(.95);
3384
+ }
3385
+ }
3386
+
3387
+ @keyframes xg0bqix-B {
3388
+ from {
3389
+ opacity: 1;
3390
+ transform: scale(1);
3391
+ }
3392
+
3393
+ to {
3394
+ opacity: 0;
3395
+ transform: scale(.95);
3396
+ }
3397
+ }
3398
+
3399
+ @keyframes x1k48ry3-B {
3400
+ from {
3401
+ opacity: 0;
3402
+ transform: scale(.95);
3403
+ }
3404
+
3405
+ to {
3406
+ opacity: 1;
3407
+ transform: scale(1);
3408
+ }
3409
+ }
3410
+
3411
+ @keyframes x1l9pw95-B {
3412
+ 0% {
3413
+ opacity: 0;
3414
+ transform: translateY(8px);
3415
+ }
3416
+
3417
+ 100% {
3418
+ opacity: 1;
3419
+ transform: translateY(0);
3420
+ }
3421
+ }
3422
+
3423
+ @keyframes xdk6pkw-B {
3424
+ 0% {
3425
+ stroke-dashoffset: 26px;
3426
+ }
3427
+
3428
+ 100% {
3429
+ stroke-dashoffset: 0;
3430
+ }
3431
+ }
3432
+
3433
+ @keyframes x1wc8ddo-B {
3434
+ from {
3435
+ transform: rotate(0);
3436
+ }
3437
+
3438
+ to {
3439
+ transform: rotate(360deg);
3440
+ }
3441
+ }
3442
+
3443
+ @keyframes xqng64z-B {
3444
+ 0% {
3445
+ transform: rotate(0);
3446
+ }
3447
+
3448
+ 100% {
3449
+ transform: rotate(360deg);
3450
+ }
3451
+ }
3452
+
3453
+ @keyframes x17l86xk-B {
3454
+ 0% {
3455
+ opacity: 0;
3456
+ transform: scale(.6);
3457
+ }
3458
+
3459
+ 70% {
3460
+ opacity: 1;
3461
+ transform: scale(1.05);
3462
+ }
3463
+
3464
+ 100% {
3465
+ opacity: 1;
3466
+ transform: scale(1);
3467
+ }
3468
+ }
3469
+
3470
+ @keyframes xu9wdhb-B {
3471
+ 0%, 100% {
3472
+ transform: translateX(0);
3473
+ }
3474
+
3475
+ 20% {
3476
+ transform: translateX(-2px);
3477
+ }
3478
+
3479
+ 40% {
3480
+ transform: translateX(2px);
3481
+ }
3482
+
3483
+ 60% {
3484
+ transform: translateX(-1px);
3485
+ }
3486
+
3487
+ 80% {
3488
+ transform: translateX(1px);
3489
+ }
3490
+ }
3491
+
3492
+ .x5oa300 {
3493
+ --stridge-kit-external-link-align: text-bottom;
3494
+ }