@nattstack/ui 0.0.107 → 0.1.1

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 (273) hide show
  1. package/README.md +1 -1
  2. package/dist/baseline/index.css +5 -1
  3. package/dist/components/button/button-spinner.js +19 -4
  4. package/dist/components/button/button-spinner.stylex.js +96 -0
  5. package/dist/components/button/button.d.ts +10 -18
  6. package/dist/components/button/button.js +11 -43
  7. package/dist/components/button/button.stylex.js +159 -0
  8. package/dist/components/button-link/button-link.d.ts +6 -7
  9. package/dist/components/button-link/button-link.js +8 -12
  10. package/dist/components/checkbox/checkbox-icon.js +5 -4
  11. package/dist/components/checkbox/checkbox.d.ts +1 -2
  12. package/dist/components/checkbox/checkbox.js +8 -9
  13. package/dist/components/checkbox/checkbox.stylex.js +43 -0
  14. package/dist/components/cn.js +20 -0
  15. package/dist/components/column/column.d.ts +1 -2
  16. package/dist/components/column/column.js +7 -9
  17. package/dist/components/column/column.stylex.js +8 -0
  18. package/dist/components/combobox/combobox-content.d.ts +1 -2
  19. package/dist/components/combobox/combobox-content.js +9 -10
  20. package/dist/components/combobox/combobox-empty.d.ts +1 -2
  21. package/dist/components/combobox/combobox-empty.js +6 -7
  22. package/dist/components/combobox/combobox-empty.stylex.js +11 -0
  23. package/dist/components/combobox/combobox-group-label.d.ts +1 -2
  24. package/dist/components/combobox/combobox-group-label.js +6 -7
  25. package/dist/components/combobox/combobox-group.d.ts +1 -2
  26. package/dist/components/combobox/combobox-group.js +6 -7
  27. package/dist/components/combobox/combobox-input.d.ts +5 -10
  28. package/dist/components/combobox/combobox-input.js +14 -28
  29. package/dist/components/combobox/combobox-input.stylex.js +110 -0
  30. package/dist/components/combobox/combobox-item.d.ts +2 -4
  31. package/dist/components/combobox/combobox-item.js +10 -12
  32. package/dist/components/combobox/combobox-list.d.ts +1 -2
  33. package/dist/components/combobox/combobox-list.js +6 -7
  34. package/dist/components/combobox/combobox-search.d.ts +2 -4
  35. package/dist/components/combobox/combobox-search.js +10 -12
  36. package/dist/components/combobox/combobox-search.stylex.js +45 -0
  37. package/dist/components/combobox/combobox-separator.d.ts +1 -2
  38. package/dist/components/combobox/combobox-separator.js +6 -7
  39. package/dist/components/combobox/combobox-trigger.d.ts +4 -8
  40. package/dist/components/combobox/combobox-trigger.js +8 -22
  41. package/dist/components/combobox/combobox-value.d.ts +1 -2
  42. package/dist/components/combobox/combobox-value.js +6 -7
  43. package/dist/components/combobox/combobox-value.stylex.js +12 -0
  44. package/dist/components/combobox/combobox.js +1 -1
  45. package/dist/components/dialog-responsive/dialog-responsive-backdrop.js +6 -7
  46. package/dist/components/dialog-responsive/dialog-responsive-backdrop.stylex.js +14 -0
  47. package/dist/components/dialog-responsive/dialog-responsive-bar.js +6 -7
  48. package/dist/components/dialog-responsive/dialog-responsive-bar.stylex.js +13 -0
  49. package/dist/components/dialog-responsive/dialog-responsive-popup.d.ts +1 -2
  50. package/dist/components/dialog-responsive/dialog-responsive-popup.js +6 -7
  51. package/dist/components/dialog-responsive/dialog-responsive-popup.stylex.js +30 -0
  52. package/dist/components/dialog-responsive/dialog-responsive-portal.js +6 -7
  53. package/dist/components/dialog-responsive/dialog-responsive-portal.stylex.js +9 -0
  54. package/dist/components/dialog-responsive/dialog-responsive-trigger.js +1 -1
  55. package/dist/components/dialog-responsive/dialog-responsive-viewport.js +6 -7
  56. package/dist/components/dialog-responsive/dialog-responsive-viewport.stylex.js +13 -0
  57. package/dist/components/dialog-responsive/dialog-responsive.d.ts +1 -4
  58. package/dist/components/dialog-responsive/dialog-responsive.js +2 -4
  59. package/dist/components/icon-button/icon-button.d.ts +2 -5
  60. package/dist/components/icon-button/icon-button.js +10 -26
  61. package/dist/components/icon-button/icon-button.stylex.js +36 -0
  62. package/dist/components/index.d.ts +53 -53
  63. package/dist/components/index.js +54 -53
  64. package/dist/components/input/input.d.ts +7 -16
  65. package/dist/components/input/input.js +10 -37
  66. package/dist/components/input/input.stylex.js +84 -0
  67. package/dist/components/label/label.d.ts +1 -2
  68. package/dist/components/label/label.js +6 -7
  69. package/dist/components/label/label.stylex.js +10 -0
  70. package/dist/components/menu/menu-checkbox-item.d.ts +2 -6
  71. package/dist/components/menu/menu-checkbox-item.js +10 -14
  72. package/dist/components/menu/menu-content.d.ts +1 -2
  73. package/dist/components/menu/menu-content.js +13 -14
  74. package/dist/components/menu/menu-content.stylex.js +9 -0
  75. package/dist/components/menu/menu-group-label.d.ts +1 -2
  76. package/dist/components/menu/menu-group-label.js +6 -7
  77. package/dist/components/menu/menu-group.d.ts +1 -2
  78. package/dist/components/menu/menu-group.js +6 -7
  79. package/dist/components/menu/menu-item.d.ts +2 -4
  80. package/dist/components/menu/menu-item.js +7 -9
  81. package/dist/components/menu/menu-item.stylex.js +9 -0
  82. package/dist/components/menu/menu-link-item.d.ts +1 -2
  83. package/dist/components/menu/menu-link-item.js +7 -8
  84. package/dist/components/menu/menu-radio-group.d.ts +2 -4
  85. package/dist/components/menu/menu-radio-group.js +6 -8
  86. package/dist/components/menu/menu-radio-item.d.ts +2 -4
  87. package/dist/components/menu/menu-radio-item.js +10 -12
  88. package/dist/components/menu/menu-separator.d.ts +1 -2
  89. package/dist/components/menu/menu-separator.js +6 -7
  90. package/dist/components/menu/menu-submenu-trigger.d.ts +2 -4
  91. package/dist/components/menu/menu-submenu-trigger.js +10 -16
  92. package/dist/components/menu/menu-submenu-trigger.stylex.js +20 -0
  93. package/dist/components/menu/menu-submenu.js +1 -1
  94. package/dist/components/menu/menu-trigger.js +1 -1
  95. package/dist/components/menu/menu.js +1 -1
  96. package/dist/components/otp-field/otp-field-input.d.ts +1 -2
  97. package/dist/components/otp-field/otp-field-input.js +7 -7
  98. package/dist/components/otp-field/otp-field-input.stylex.js +23 -0
  99. package/dist/components/otp-field/otp-field.d.ts +3 -7
  100. package/dist/components/otp-field/otp-field.js +8 -18
  101. package/dist/components/otp-field/otp-field.stylex.js +17 -0
  102. package/dist/components/picker/picker-group.stylex.js +19 -0
  103. package/dist/components/picker/picker-item.stylex.js +41 -0
  104. package/dist/components/picker/picker-list.stylex.js +13 -0
  105. package/dist/components/picker/picker-popup.stylex.js +37 -0
  106. package/dist/components/picker/picker-separator.stylex.js +11 -0
  107. package/dist/components/picker/picker-trigger.stylex.js +77 -0
  108. package/dist/components/row/row.d.ts +1 -2
  109. package/dist/components/row/row.js +7 -9
  110. package/dist/components/row/row.stylex.js +8 -0
  111. package/dist/components/select/select-content.d.ts +1 -2
  112. package/dist/components/select/select-content.js +12 -13
  113. package/dist/components/select/select-group-label.d.ts +1 -2
  114. package/dist/components/select/select-group-label.js +6 -7
  115. package/dist/components/select/select-group.d.ts +1 -2
  116. package/dist/components/select/select-group.js +6 -7
  117. package/dist/components/select/select-item.d.ts +2 -4
  118. package/dist/components/select/select-item.js +10 -12
  119. package/dist/components/select/select-separator.d.ts +1 -2
  120. package/dist/components/select/select-separator.js +6 -7
  121. package/dist/components/select/select-trigger.d.ts +4 -8
  122. package/dist/components/select/select-trigger.js +8 -22
  123. package/dist/components/select/select-value.d.ts +1 -2
  124. package/dist/components/select/select-value.js +6 -7
  125. package/dist/components/select/select-value.stylex.js +12 -0
  126. package/dist/components/select/select.js +1 -1
  127. package/dist/components/spacer/spacer.d.ts +1 -2
  128. package/dist/components/spacer/spacer.js +6 -7
  129. package/dist/components/spacer/spacer.stylex.js +7 -0
  130. package/dist/components/stylex.css +1420 -0
  131. package/dist/components/switch/switch.d.ts +3 -12
  132. package/dist/components/switch/switch.js +7 -22
  133. package/dist/components/switch/switch.stylex.js +48 -0
  134. package/dist/components/tabs/tabs-panel.d.ts +1 -2
  135. package/dist/components/tabs/tabs-panel.js +6 -7
  136. package/dist/components/tabs/tabs-panel.stylex.js +12 -0
  137. package/dist/components/tabs/tabs.d.ts +1 -2
  138. package/dist/components/tabs/tabs.js +6 -7
  139. package/dist/components/tabs/tabs.stylex.js +8 -0
  140. package/dist/components/tabs-pill/tabs-pill-indicator.js +6 -7
  141. package/dist/components/tabs-pill/tabs-pill-indicator.stylex.js +16 -0
  142. package/dist/components/tabs-pill/tabs-pill-list.d.ts +1 -2
  143. package/dist/components/tabs-pill/tabs-pill-list.js +6 -7
  144. package/dist/components/tabs-pill/tabs-pill-list.stylex.js +11 -0
  145. package/dist/components/tabs-pill/tabs-pill-tab.d.ts +2 -5
  146. package/dist/components/tabs-pill/tabs-pill-tab.js +9 -10
  147. package/dist/components/tabs-pill/tabs-pill-tab.stylex.js +46 -0
  148. package/dist/components/tabs-segmented/tabs-segmented-indicator.js +6 -7
  149. package/dist/components/tabs-segmented/tabs-segmented-indicator.stylex.js +16 -0
  150. package/dist/components/tabs-segmented/tabs-segmented-list.d.ts +1 -2
  151. package/dist/components/tabs-segmented/tabs-segmented-list.js +6 -7
  152. package/dist/components/tabs-segmented/tabs-segmented-list.stylex.js +15 -0
  153. package/dist/components/tabs-segmented/tabs-segmented-tab.d.ts +2 -5
  154. package/dist/components/tabs-segmented/tabs-segmented-tab.js +7 -8
  155. package/dist/components/tabs-segmented/tabs-segmented-tab.stylex.js +26 -0
  156. package/dist/components/tabs-underline/tabs-underline-indicator.js +6 -7
  157. package/dist/components/tabs-underline/tabs-underline-indicator.stylex.js +14 -0
  158. package/dist/components/tabs-underline/tabs-underline-list.d.ts +1 -2
  159. package/dist/components/tabs-underline/tabs-underline-list.js +6 -7
  160. package/dist/components/tabs-underline/tabs-underline-list.stylex.js +12 -0
  161. package/dist/components/tabs-underline/tabs-underline-tab.d.ts +2 -5
  162. package/dist/components/tabs-underline/tabs-underline-tab.js +7 -8
  163. package/dist/components/tabs-underline/tabs-underline-tab.stylex.js +25 -0
  164. package/dist/components/textarea/textarea.d.ts +6 -12
  165. package/dist/components/textarea/textarea.js +11 -24
  166. package/dist/components/textarea/textarea.stylex.js +11 -0
  167. package/dist/components/toggle-group/toggle-group-item.d.ts +2 -6
  168. package/dist/components/toggle-group/toggle-group-item.js +7 -9
  169. package/dist/components/toggle-group/toggle-group-item.stylex.js +34 -0
  170. package/dist/components/toggle-group/toggle-group.d.ts +2 -7
  171. package/dist/components/toggle-group/toggle-group.js +7 -10
  172. package/dist/components/toggle-group/toggle-group.stylex.js +9 -0
  173. package/dist/components/tooltip/tooltip-popup.d.ts +1 -2
  174. package/dist/components/tooltip/tooltip-popup.js +8 -8
  175. package/dist/components/tooltip/tooltip-popup.stylex.js +32 -0
  176. package/dist/components/tooltip/tooltip-provider.js +1 -1
  177. package/dist/components/tooltip/tooltip-trigger.js +1 -1
  178. package/dist/components/tooltip/tooltip.d.ts +1 -4
  179. package/dist/components/tooltip/tooltip.js +3 -4
  180. package/dist/tailwind-colors/root.css +10 -0
  181. package/package.json +6 -4
  182. package/dist/components/button/button-spinner.css +0 -97
  183. package/dist/components/button/button-spinner.module.js +0 -8
  184. package/dist/components/button/button.css +0 -157
  185. package/dist/components/button/button.module.js +0 -21
  186. package/dist/components/checkbox/checkbox.css +0 -55
  187. package/dist/components/checkbox/checkbox.module.js +0 -9
  188. package/dist/components/column/column.css +0 -6
  189. package/dist/components/column/column.module.js +0 -5
  190. package/dist/components/combobox/combobox-empty.css +0 -9
  191. package/dist/components/combobox/combobox-empty.module.js +0 -5
  192. package/dist/components/combobox/combobox-input.css +0 -121
  193. package/dist/components/combobox/combobox-input.module.js +0 -16
  194. package/dist/components/combobox/combobox-search.css +0 -44
  195. package/dist/components/combobox/combobox-search.module.js +0 -9
  196. package/dist/components/combobox/combobox-value.css +0 -14
  197. package/dist/components/combobox/combobox-value.module.js +0 -5
  198. package/dist/components/dialog-responsive/dialog-responsive-backdrop.css +0 -28
  199. package/dist/components/dialog-responsive/dialog-responsive-backdrop.module.js +0 -5
  200. package/dist/components/dialog-responsive/dialog-responsive-bar.css +0 -16
  201. package/dist/components/dialog-responsive/dialog-responsive-bar.module.js +0 -5
  202. package/dist/components/dialog-responsive/dialog-responsive-popup.css +0 -56
  203. package/dist/components/dialog-responsive/dialog-responsive-popup.module.js +0 -5
  204. package/dist/components/dialog-responsive/dialog-responsive-portal.css +0 -7
  205. package/dist/components/dialog-responsive/dialog-responsive-portal.module.js +0 -5
  206. package/dist/components/dialog-responsive/dialog-responsive-viewport.css +0 -18
  207. package/dist/components/dialog-responsive/dialog-responsive-viewport.module.js +0 -5
  208. package/dist/components/icon-button/icon-button.css +0 -21
  209. package/dist/components/icon-button/icon-button.module.js +0 -11
  210. package/dist/components/input/input.css +0 -83
  211. package/dist/components/input/input.module.js +0 -14
  212. package/dist/components/label/label.css +0 -8
  213. package/dist/components/label/label.module.js +0 -5
  214. package/dist/components/menu/menu-content.css +0 -7
  215. package/dist/components/menu/menu-content.module.js +0 -5
  216. package/dist/components/menu/menu-item.css +0 -7
  217. package/dist/components/menu/menu-item.module.js +0 -5
  218. package/dist/components/menu/menu-submenu-trigger.css +0 -16
  219. package/dist/components/menu/menu-submenu-trigger.module.js +0 -8
  220. package/dist/components/otp-field/otp-field-input.css +0 -32
  221. package/dist/components/otp-field/otp-field-input.module.js +0 -5
  222. package/dist/components/otp-field/otp-field.css +0 -13
  223. package/dist/components/otp-field/otp-field.module.js +0 -8
  224. package/dist/components/picker/picker-group.css +0 -14
  225. package/dist/components/picker/picker-group.module.js +0 -8
  226. package/dist/components/picker/picker-item.css +0 -43
  227. package/dist/components/picker/picker-item.module.js +0 -9
  228. package/dist/components/picker/picker-list.css +0 -15
  229. package/dist/components/picker/picker-list.module.js +0 -5
  230. package/dist/components/picker/picker-popup.css +0 -56
  231. package/dist/components/picker/picker-popup.module.js +0 -8
  232. package/dist/components/picker/picker-separator.css +0 -8
  233. package/dist/components/picker/picker-separator.module.js +0 -5
  234. package/dist/components/picker/picker-trigger.css +0 -85
  235. package/dist/components/picker/picker-trigger.module.js +0 -14
  236. package/dist/components/row/row.css +0 -6
  237. package/dist/components/row/row.module.js +0 -5
  238. package/dist/components/select/select-value.css +0 -14
  239. package/dist/components/select/select-value.module.js +0 -5
  240. package/dist/components/spacer/spacer.css +0 -5
  241. package/dist/components/spacer/spacer.module.js +0 -5
  242. package/dist/components/switch/switch.css +0 -55
  243. package/dist/components/switch/switch.module.js +0 -10
  244. package/dist/components/tabs/tabs-panel.css +0 -14
  245. package/dist/components/tabs/tabs-panel.module.js +0 -5
  246. package/dist/components/tabs/tabs.css +0 -6
  247. package/dist/components/tabs/tabs.module.js +0 -5
  248. package/dist/components/tabs-pill/tabs-pill-indicator.css +0 -14
  249. package/dist/components/tabs-pill/tabs-pill-indicator.module.js +0 -5
  250. package/dist/components/tabs-pill/tabs-pill-list.css +0 -9
  251. package/dist/components/tabs-pill/tabs-pill-list.module.js +0 -5
  252. package/dist/components/tabs-pill/tabs-pill-tab.css +0 -66
  253. package/dist/components/tabs-pill/tabs-pill-tab.module.js +0 -9
  254. package/dist/components/tabs-segmented/tabs-segmented-indicator.css +0 -14
  255. package/dist/components/tabs-segmented/tabs-segmented-indicator.module.js +0 -5
  256. package/dist/components/tabs-segmented/tabs-segmented-list.css +0 -13
  257. package/dist/components/tabs-segmented/tabs-segmented-list.module.js +0 -5
  258. package/dist/components/tabs-segmented/tabs-segmented-tab.css +0 -37
  259. package/dist/components/tabs-segmented/tabs-segmented-tab.module.js +0 -5
  260. package/dist/components/tabs-underline/tabs-underline-indicator.css +0 -12
  261. package/dist/components/tabs-underline/tabs-underline-indicator.module.js +0 -5
  262. package/dist/components/tabs-underline/tabs-underline-list.css +0 -10
  263. package/dist/components/tabs-underline/tabs-underline-list.module.js +0 -5
  264. package/dist/components/tabs-underline/tabs-underline-tab.css +0 -36
  265. package/dist/components/tabs-underline/tabs-underline-tab.module.js +0 -5
  266. package/dist/components/textarea/textarea.css +0 -9
  267. package/dist/components/textarea/textarea.module.js +0 -5
  268. package/dist/components/toggle-group/toggle-group-item.css +0 -47
  269. package/dist/components/toggle-group/toggle-group-item.module.js +0 -5
  270. package/dist/components/toggle-group/toggle-group.css +0 -7
  271. package/dist/components/toggle-group/toggle-group.module.js +0 -5
  272. package/dist/components/tooltip/tooltip-popup.css +0 -32
  273. package/dist/components/tooltip/tooltip-popup.module.js +0 -8
@@ -0,0 +1,1420 @@
1
+
2
+
3
+ @layer components.priority1;
4
+
5
+ @layer components.priority2 {
6
+ .x10a8y8t {
7
+ inset: 0;
8
+ }
9
+
10
+ .x1717udv {
11
+ padding: 0;
12
+ }
13
+
14
+ .xc7ga6q {
15
+ padding: 12px;
16
+ }
17
+
18
+ .x1tamke2 {
19
+ padding: 16px;
20
+ }
21
+
22
+ .xggk2y7 {
23
+ padding: 24px;
24
+ }
25
+
26
+ .x1i3ajwb {
27
+ padding: 2px;
28
+ }
29
+
30
+ .xfawy5m {
31
+ padding: 4px;
32
+ }
33
+
34
+ .x1r1ic4w {
35
+ scroll-padding: 4px;
36
+ }
37
+
38
+ .x3cdv55:not(:empty) {
39
+ padding: 8px 12px;
40
+ }
41
+
42
+ @media (width <= 640px) {
43
+ .x16g1wpl.x16g1wpl {
44
+ padding: 48px 0 0;
45
+ }
46
+ }
47
+ }
48
+
49
+ @layer components.priority3 {
50
+ .x14i3s5s {
51
+ border-color: var(--color-border);
52
+ }
53
+
54
+ .x1q4ynmn {
55
+ border-radius: 10px;
56
+ }
57
+
58
+ .x1ctf4ec {
59
+ border-radius: 11px;
60
+ }
61
+
62
+ .x4pepcl {
63
+ border-radius: 12px;
64
+ }
65
+
66
+ .xixl9f9 {
67
+ border-radius: 14px;
68
+ }
69
+
70
+ .xgqmno8 {
71
+ border-radius: 16px;
72
+ }
73
+
74
+ .xugzpu4 {
75
+ border-radius: 18px;
76
+ }
77
+
78
+ .x1m3ak92 {
79
+ border-radius: 20px;
80
+ }
81
+
82
+ .x13pz1uv {
83
+ border-radius: 22px;
84
+ }
85
+
86
+ .x1khhgft {
87
+ border-radius: 24px;
88
+ }
89
+
90
+ .x12oqio5 {
91
+ border-radius: 4px;
92
+ }
93
+
94
+ .xur7f20 {
95
+ border-radius: 8px;
96
+ }
97
+
98
+ .x10hpsqq {
99
+ border-radius: 9999px;
100
+ }
101
+
102
+ .xhpnuu7 {
103
+ border-radius: 9px;
104
+ }
105
+
106
+ .xujip75 {
107
+ border-radius: var(--border-radius);
108
+ }
109
+
110
+ .xng3xce {
111
+ border-style: none;
112
+ }
113
+
114
+ .x1y0btm7 {
115
+ border-style: solid;
116
+ }
117
+
118
+ .xmkeg23 {
119
+ border-width: 1px;
120
+ }
121
+
122
+ .x167g77z {
123
+ gap: 8px;
124
+ }
125
+
126
+ .x1twdi5u {
127
+ margin-block: 12px;
128
+ }
129
+
130
+ .x8q42hb {
131
+ margin-block: 2px;
132
+ }
133
+
134
+ .xxbjj12 {
135
+ margin-inline: 8px;
136
+ }
137
+
138
+ .xvueqy4 {
139
+ margin-inline: auto;
140
+ }
141
+
142
+ .x1a2a7pz {
143
+ outline: none;
144
+ }
145
+
146
+ .xb3r6kr {
147
+ overflow: hidden;
148
+ }
149
+
150
+ .xish69e {
151
+ overscroll-behavior: contain;
152
+ }
153
+
154
+ .xt970qd {
155
+ padding-block: 0;
156
+ }
157
+
158
+ .x12ulsxz {
159
+ padding-block: 4px;
160
+ }
161
+
162
+ .xxzk6he {
163
+ padding-block: 6px 4px;
164
+ }
165
+
166
+ .x1t0vds8 {
167
+ padding-block: 6px;
168
+ }
169
+
170
+ .x1vvogim {
171
+ padding-block: 8px;
172
+ }
173
+
174
+ .xnjsko4 {
175
+ padding-inline: 0;
176
+ }
177
+
178
+ .x1awh872 {
179
+ padding-inline: 10px;
180
+ }
181
+
182
+ .xaope02 {
183
+ padding-inline: 12px;
184
+ }
185
+
186
+ .xqin4a2 {
187
+ padding-inline: 14px;
188
+ }
189
+
190
+ .x1hr3lfm {
191
+ padding-inline: 16px;
192
+ }
193
+
194
+ .xelufkg {
195
+ padding-inline: 17px;
196
+ }
197
+
198
+ .x12j899k {
199
+ padding-inline: 18px;
200
+ }
201
+
202
+ .x17qtykl {
203
+ padding-inline: 20px;
204
+ }
205
+
206
+ .x16l46lf {
207
+ padding-inline: 23px;
208
+ }
209
+
210
+ .x1pbfunf {
211
+ padding-inline: 28px;
212
+ }
213
+
214
+ .xdqyycr {
215
+ padding-inline: 8px;
216
+ }
217
+
218
+ .x1hl2dhg {
219
+ text-decoration: none;
220
+ }
221
+
222
+ .x81i4et[data-checked] {
223
+ border-color: #0000;
224
+ }
225
+
226
+ .x7n6cpb:hover {
227
+ border-color: var(--color-gray-6);
228
+ }
229
+ }
230
+
231
+ @layer components.priority4 {
232
+ .x6s0dn4 {
233
+ align-items: center;
234
+ }
235
+
236
+ .x1yy6ivq {
237
+ align-items: safe center;
238
+ }
239
+
240
+ .x1q3qbx4 {
241
+ animation-duration: 1s;
242
+ }
243
+
244
+ .xa4qsjk {
245
+ animation-iteration-count: infinite;
246
+ }
247
+
248
+ .x1m7ugx0 {
249
+ animation-name: x1wfl5al-B;
250
+ }
251
+
252
+ .xbv57ra {
253
+ animation-timing-function: steps(12, end);
254
+ }
255
+
256
+ .xjyslct {
257
+ appearance: none;
258
+ }
259
+
260
+ .x1y5e3q9 {
261
+ aspect-ratio: 1;
262
+ }
263
+
264
+ .x42x0ya {
265
+ background-color: #000;
266
+ }
267
+
268
+ .xjbqb8w {
269
+ background-color: #0000;
270
+ }
271
+
272
+ .x1h73wb5 {
273
+ background-color: var(--color-bg-shell-inner);
274
+ }
275
+
276
+ .x1m4xfpy {
277
+ background-color: var(--color-border);
278
+ }
279
+
280
+ .xm8sm7k {
281
+ background-color: var(--color-gray-1);
282
+ }
283
+
284
+ .x1escjlh {
285
+ background-color: var(--color-gray-12);
286
+ }
287
+
288
+ .x2j0cto {
289
+ background-color: var(--color-gray-3);
290
+ }
291
+
292
+ .x1tcrco7 {
293
+ background-color: var(--color-gray-4);
294
+ }
295
+
296
+ .xfl8pkj {
297
+ background-color: var(--color-gray-6);
298
+ }
299
+
300
+ .xa4c8pb {
301
+ background-color: var(--color-primary-9);
302
+ }
303
+
304
+ .x191mfzf {
305
+ background-color: var(--color-tooltip-bg);
306
+ }
307
+
308
+ .x12peec7 {
309
+ background-color: #fff;
310
+ }
311
+
312
+ .x1ikjq0b {
313
+ box-shadow: 0 .5px #00000008, 0 36px 15px -4px #00000003, 0 20px 12px -3px #00000008, 0 9px 9px -2px #0000000a, 0 2px 5px -1px #0000000d;
314
+ box-shadow: 0 .5px lab(0% 0 0 / .03), 0 36px 15px -4px lab(0% 0 0 / .01), 0 20px 12px -3px lab(0% 0 0 / .03), 0 9px 9px -2px lab(0% 0 0 / .04), 0 2px 5px -1px lab(0% 0 0 / .05);
315
+ }
316
+
317
+ .x1bbn379 {
318
+ box-shadow: 0 1px 3px #0000001a, 0 1px 2px -1px #0000001a;
319
+ }
320
+
321
+ .x1buzmp1 {
322
+ box-shadow: inset 0 -1px 0 var(--color-border);
323
+ }
324
+
325
+ .x1er153n {
326
+ box-shadow: inset 0 0 0 1px var(--color-border);
327
+ }
328
+
329
+ .x1gnnqk1 {
330
+ box-shadow: none;
331
+ }
332
+
333
+ .x1heor9g {
334
+ color: inherit;
335
+ }
336
+
337
+ .x19co3pv {
338
+ color: #0000;
339
+ }
340
+
341
+ .xf4b43d {
342
+ color: var(--color-gray-1);
343
+ }
344
+
345
+ .x1dtbpl2 {
346
+ color: var(--color-gray-11);
347
+ }
348
+
349
+ .x197k1c5 {
350
+ color: var(--color-gray-12);
351
+ }
352
+
353
+ .x1vpwubs {
354
+ color: var(--color-gray-9);
355
+ }
356
+
357
+ .x9i09x5 {
358
+ color: var(--color-primary-9);
359
+ }
360
+
361
+ .x1tgivj0 {
362
+ color: var(--color-text-primary);
363
+ }
364
+
365
+ .xv1l7n4 {
366
+ color: var(--color-text-secondary);
367
+ }
368
+
369
+ .x1x01sck {
370
+ color: var(--color-tooltip);
371
+ }
372
+
373
+ .xfex06f {
374
+ column-gap: 8px;
375
+ }
376
+
377
+ .x1sqbtui {
378
+ cursor: auto;
379
+ }
380
+
381
+ .x1h6gzvc {
382
+ cursor: not-allowed;
383
+ }
384
+
385
+ .x1ypdohk {
386
+ cursor: pointer;
387
+ }
388
+
389
+ .x1ed109x {
390
+ cursor: text;
391
+ }
392
+
393
+ .x78zum5 {
394
+ display: flex;
395
+ }
396
+
397
+ .x3nfvp2 {
398
+ display: inline-flex;
399
+ }
400
+
401
+ .x1s85apg {
402
+ display: none;
403
+ }
404
+
405
+ .x1r8uery {
406
+ flex-basis: 0;
407
+ }
408
+
409
+ .xdt5ytf {
410
+ flex-direction: column;
411
+ }
412
+
413
+ .x1q0g3np {
414
+ flex-direction: row;
415
+ }
416
+
417
+ .x1iyjqo2 {
418
+ flex-grow: 1;
419
+ }
420
+
421
+ .x2lah0s {
422
+ flex-shrink: 0;
423
+ }
424
+
425
+ .xs83m0k {
426
+ flex-shrink: 1;
427
+ }
428
+
429
+ .x1a02dak {
430
+ flex-wrap: wrap;
431
+ }
432
+
433
+ .xjb2p0i {
434
+ font-family: inherit;
435
+ }
436
+
437
+ .xgxxoiu {
438
+ font-size: 0;
439
+ }
440
+
441
+ .xfifm61 {
442
+ font-size: 12px;
443
+ }
444
+
445
+ .x4z9k3i {
446
+ font-size: 13px;
447
+ }
448
+
449
+ .xif65rj {
450
+ font-size: 14px;
451
+ }
452
+
453
+ .xo1l8bm {
454
+ font-weight: 400;
455
+ }
456
+
457
+ .x10p5zqr {
458
+ font-weight: 450;
459
+ }
460
+
461
+ .xc8icb0 {
462
+ isolation: isolate;
463
+ }
464
+
465
+ .xl56j7k {
466
+ justify-content: center;
467
+ }
468
+
469
+ .xej7fhh {
470
+ justify-content: safe center;
471
+ }
472
+
473
+ .x1evy7pa {
474
+ line-height: 1.5;
475
+ }
476
+
477
+ .x1xyvc85 {
478
+ opacity: .15;
479
+ }
480
+
481
+ .xvpkmg4 {
482
+ opacity: .25;
483
+ }
484
+
485
+ .x1b0snh4 {
486
+ opacity: .325;
487
+ }
488
+
489
+ .xti2d7y {
490
+ opacity: .4;
491
+ }
492
+
493
+ .x1sfcrbg {
494
+ opacity: .475;
495
+ }
496
+
497
+ .xbyyjgo {
498
+ opacity: .5;
499
+ }
500
+
501
+ .xwq05k6 {
502
+ opacity: .55;
503
+ }
504
+
505
+ .x8qkkdt {
506
+ opacity: .625;
507
+ }
508
+
509
+ .x1ks1olk {
510
+ opacity: .7;
511
+ }
512
+
513
+ .x11t8jnp {
514
+ opacity: .775;
515
+ }
516
+
517
+ .xiiclqw {
518
+ opacity: .85;
519
+ }
520
+
521
+ .x1skojfp {
522
+ opacity: .925;
523
+ }
524
+
525
+ .xg01cxk {
526
+ opacity: 0;
527
+ }
528
+
529
+ .x1hc1fzr {
530
+ opacity: 1;
531
+ }
532
+
533
+ .x1b866l {
534
+ opacity: calc(var(--backdrop-opacity) * (1 - var(--drawer-swipe-progress)));
535
+ }
536
+
537
+ .x1uczgqu {
538
+ outline-color: #0000;
539
+ }
540
+
541
+ .x43yjvr {
542
+ outline-color: var(--color-outline);
543
+ }
544
+
545
+ .x1luwoo2 {
546
+ outline-color: var(--color-primary-9);
547
+ }
548
+
549
+ .x1du7r5n {
550
+ outline-color: var(--color-primary);
551
+ }
552
+
553
+ .x2ssjo2 {
554
+ outline-offset: -2px;
555
+ }
556
+
557
+ .xr2mjdv {
558
+ outline-offset: -4px;
559
+ }
560
+
561
+ .x1hl8ikr {
562
+ outline-offset: 2px;
563
+ }
564
+
565
+ .xaatb59 {
566
+ outline-style: solid;
567
+ }
568
+
569
+ .x1k57tk5 {
570
+ outline-width: 0;
571
+ }
572
+
573
+ .x1de99jn {
574
+ outline-width: 2px;
575
+ }
576
+
577
+ .x47corl {
578
+ pointer-events: none;
579
+ }
580
+
581
+ .x10l6tqk {
582
+ position: absolute;
583
+ }
584
+
585
+ .xixxii4 {
586
+ position: fixed;
587
+ }
588
+
589
+ .x1n2onr6 {
590
+ position: relative;
591
+ }
592
+
593
+ .x288g5 {
594
+ resize: vertical;
595
+ }
596
+
597
+ .x1gcftaf {
598
+ rotate: 0deg;
599
+ }
600
+
601
+ .x1yqfaqn {
602
+ rotate: 120deg;
603
+ }
604
+
605
+ .x1rtxy7 {
606
+ rotate: 150deg;
607
+ }
608
+
609
+ .x1qul50q {
610
+ rotate: 180deg;
611
+ }
612
+
613
+ .x5f4xin {
614
+ rotate: 210deg;
615
+ }
616
+
617
+ .x13zb3im {
618
+ rotate: 240deg;
619
+ }
620
+
621
+ .x7lonkb {
622
+ rotate: 270deg;
623
+ }
624
+
625
+ .xyp7w1s {
626
+ rotate: 300deg;
627
+ }
628
+
629
+ .xqd20pc {
630
+ rotate: 30deg;
631
+ }
632
+
633
+ .xggx6ht {
634
+ rotate: 330deg;
635
+ }
636
+
637
+ .xhmk0vv {
638
+ rotate: 60deg;
639
+ }
640
+
641
+ .xq77vm1 {
642
+ rotate: 90deg;
643
+ }
644
+
645
+ .x1dbijih {
646
+ row-gap: 2px;
647
+ }
648
+
649
+ .xngwomw {
650
+ scale: -1 1;
651
+ }
652
+
653
+ .x1hsy5kr {
654
+ scale: 1;
655
+ }
656
+
657
+ .xqjr0vm {
658
+ stroke-width: 3px;
659
+ }
660
+
661
+ .xqvyd8v {
662
+ stroke: #fff;
663
+ }
664
+
665
+ .x2b8uid {
666
+ text-align: center;
667
+ }
668
+
669
+ .xlyipyv {
670
+ text-overflow: ellipsis;
671
+ }
672
+
673
+ .x1kol6zn {
674
+ transform-origin: 0;
675
+ }
676
+
677
+ .xctpfpq {
678
+ transform-origin: var(--transform-origin);
679
+ }
680
+
681
+ .x1c071of {
682
+ transform: none;
683
+ }
684
+
685
+ .xx6bhzk {
686
+ transition-duration: .15s;
687
+ }
688
+
689
+ .xfagghw {
690
+ transition-property: all;
691
+ }
692
+
693
+ .xts7igz {
694
+ transition-property: background-color, border-color;
695
+ }
696
+
697
+ .x1koyr57 {
698
+ transition-property: background-color, box-shadow, color;
699
+ }
700
+
701
+ .x101bfz1 {
702
+ transition-property: background-color, box-shadow, translate;
703
+ }
704
+
705
+ .x106061f {
706
+ transition-property: background-color, box-shadow;
707
+ }
708
+
709
+ .xs2xxs2 {
710
+ transition-property: background-color, color;
711
+ }
712
+
713
+ .x15406qy {
714
+ transition-property: background-color;
715
+ }
716
+
717
+ .xe97l14 {
718
+ transition-property: box-shadow, opacity;
719
+ }
720
+
721
+ .xkdsq27 {
722
+ transition-property: box-shadow;
723
+ }
724
+
725
+ .xt3l3uh {
726
+ transition-property: color;
727
+ }
728
+
729
+ .x1ym43eq {
730
+ transition-property: left, width;
731
+ }
732
+
733
+ .x1h615f9 {
734
+ transition-property: opacity, scale;
735
+ }
736
+
737
+ .x6o7n8i {
738
+ transition-property: opacity, transform;
739
+ }
740
+
741
+ .x19991ni {
742
+ transition-property: opacity;
743
+ }
744
+
745
+ .x1s3hfkw {
746
+ transition-property: rotate;
747
+ }
748
+
749
+ .x11xpdln {
750
+ transition-property: transform;
751
+ }
752
+
753
+ .xwji4o3 {
754
+ transition-timing-function: ease;
755
+ }
756
+
757
+ .x3sa99s {
758
+ translate: 0 -50%;
759
+ }
760
+
761
+ .x1qeszuu {
762
+ translate: 0;
763
+ }
764
+
765
+ .x1kxipp6 {
766
+ -webkit-user-select: auto;
767
+ user-select: auto;
768
+ }
769
+
770
+ .x87ps6o {
771
+ -webkit-user-select: none;
772
+ user-select: none;
773
+ }
774
+
775
+ .xuxw1ft {
776
+ white-space: nowrap;
777
+ }
778
+
779
+ .x6my1t9 {
780
+ will-change: opacity,transform;
781
+ }
782
+
783
+ .x8knxv4 {
784
+ z-index: -1;
785
+ }
786
+
787
+ .x1fdshc9 {
788
+ z-index: -2;
789
+ }
790
+
791
+ .x68pp3s {
792
+ z-index: 30;
793
+ }
794
+
795
+ .xa9119d {
796
+ z-index: 50;
797
+ }
798
+
799
+ .xpy517o.xpy517o:where(:has(.x-default-marker:disabled)) {
800
+ background-color: var(--color-gray-3);
801
+ }
802
+
803
+ .x1beebc2.x1beebc2:where(:has(.x-default-marker:disabled)) {
804
+ cursor: not-allowed;
805
+ }
806
+
807
+ .x116ge45.x116ge45:where(:has(.x-default-marker:disabled)) {
808
+ opacity: .5;
809
+ }
810
+
811
+ .xalcron:hover:not(:disabled) {
812
+ background-color: color-mix(in oklab,var(--color-gray-12) 100%,var(--color-gray-1) 25%);
813
+ }
814
+
815
+ .x18ejm1c[data-active] {
816
+ background-color: #0000;
817
+ }
818
+
819
+ .x160dr52[data-highlighted][data-disabled]:not(:hover), .x1cgdd2a[data-highlighted]:not([data-disabled]), .xhsv7s5[data-pressed], .xm4hijy[data-popup-open], .xoepl9e[data-disabled] {
820
+ background-color: var(--color-gray-3);
821
+ }
822
+
823
+ .x1pflddp:hover:not(:disabled) {
824
+ background-color: var(--color-gray-4);
825
+ }
826
+
827
+ .x1hhl9jx[data-checked] {
828
+ background-color: var(--color-primary-9);
829
+ }
830
+
831
+ .x1qny0gl[data-checked] {
832
+ background-color: var(--color-primary);
833
+ }
834
+
835
+ .xofwk0p[data-popup-open] {
836
+ box-shadow: inset 0 0 0 1px #0000;
837
+ }
838
+
839
+ .x1ytwql3:hover:not([data-disabled], :has(:disabled)), .xhxsgan:enabled[data-is-active="true"], .xwsgaks:hover:not(:disabled, [data-popup-open]) {
840
+ box-shadow: inset 0 0 0 1px var(--color-gray-6);
841
+ }
842
+
843
+ .x11uh7ir[data-pressed] {
844
+ box-shadow: inset 0 0 0 1px var(--color-primary);
845
+ }
846
+
847
+ .x7auhu6:hover:not(:disabled) {
848
+ box-shadow: none;
849
+ }
850
+
851
+ .x1dua4oe[data-active] {
852
+ color: var(--color-gray-1);
853
+ }
854
+
855
+ .x58zf59[data-active] {
856
+ color: var(--color-gray-12);
857
+ }
858
+
859
+ .x1juq307[data-placeholder], .xn64az2.xn64az2:where(.x-default-marker[data-placeholder] *) {
860
+ color: var(--color-gray-9);
861
+ }
862
+
863
+ .xp9l56k[data-pressed] {
864
+ color: var(--color-text-primary);
865
+ }
866
+
867
+ .x5y519c:not(:empty) {
868
+ color: var(--color-text-secondary);
869
+ }
870
+
871
+ .x5ezrf1[data-disabled] {
872
+ cursor: not-allowed;
873
+ }
874
+
875
+ .x1vilw8v[data-empty] {
876
+ display: none;
877
+ }
878
+
879
+ .x1iczwhp.x1iczwhp:where(.x-default-marker[data-is-masked="true"] *) {
880
+ font-family: var(--font-code);
881
+ }
882
+
883
+ .xigw2gj:not(:empty) {
884
+ font-size: 14px;
885
+ }
886
+
887
+ .xhqi7ye:not(:empty) {
888
+ font-weight: 450;
889
+ }
890
+
891
+ .xxh3kiz[data-disabled] {
892
+ opacity: .5;
893
+ }
894
+
895
+ .x1pimrze:is([data-ending-style], [data-starting-style]) {
896
+ opacity: 0;
897
+ }
898
+
899
+ .xyn2shw[data-checked] {
900
+ opacity: 1;
901
+ }
902
+
903
+ .x1mr6snm[data-is-valid="true"] {
904
+ outline-color: #30a46c;
905
+ }
906
+
907
+ .x43j12e[data-is-invalid="true"] {
908
+ outline-color: #e5484d;
909
+ }
910
+
911
+ .xfcj4rt:focus-visible {
912
+ outline-color: var(--color-outline);
913
+ }
914
+
915
+ .x1mp0jls:focus-visible {
916
+ outline-color: var(--color-primary-9);
917
+ }
918
+
919
+ .x1oifg:focus-within, .xr5th1z:focus-visible {
920
+ outline-color: var(--color-primary);
921
+ }
922
+
923
+ .x784prv:focus-visible {
924
+ outline-width: 2px;
925
+ }
926
+
927
+ .xxh3ss5.xxh3ss5:where(.x-default-marker[data-popup-open] *) {
928
+ rotate: 180deg;
929
+ }
930
+
931
+ .xx6l7ed:is([data-ending-style], [data-starting-style]) {
932
+ scale: .975;
933
+ }
934
+
935
+ .x1fpexdu:is([data-side="inline-end"][data-ending-style], [data-side="inline-end"][data-starting-style], [data-side="right"][data-ending-style], [data-side="right"][data-starting-style]) {
936
+ transform: scale(.975) translateX(-4px);
937
+ }
938
+
939
+ .xaf6vq3:is([data-side="inline-start"][data-ending-style], [data-side="inline-start"][data-starting-style], [data-side="left"][data-ending-style], [data-side="left"][data-starting-style]) {
940
+ transform: scale(.975) translateX(4px);
941
+ }
942
+
943
+ .xmrwbtw:is([data-side="bottom"][data-ending-style], [data-side="bottom"][data-starting-style]) {
944
+ transform: scale(.975) translateY(-4px);
945
+ }
946
+
947
+ .x1usa04o:is([data-side="top"][data-ending-style], [data-side="top"][data-starting-style]) {
948
+ transform: scale(.975) translateY(4px);
949
+ }
950
+
951
+ .x1t4ihx1:is([data-ending-style], [data-starting-style]) {
952
+ transform: scale(.975);
953
+ }
954
+
955
+ .x1bad46t[data-checked] {
956
+ transform: translateX(var(--translateX));
957
+ }
958
+
959
+ .xm69ghq[data-swiping], .xuik8z1[data-instant] {
960
+ transition-duration: 0s;
961
+ }
962
+
963
+ .x10t6uq9[data-ending-style] {
964
+ transition-duration: calc(var(--drawer-swipe-strength) * .4s);
965
+ }
966
+
967
+ .xfm2kp[data-instant] {
968
+ transition-property: none;
969
+ }
970
+
971
+ .x1avgydi:active:not(:disabled) {
972
+ translate: 0 1px;
973
+ }
974
+
975
+ .xk78c8h[data-swiping] {
976
+ -webkit-user-select: none;
977
+ user-select: none;
978
+ }
979
+
980
+ .xfi2sx2:disabled {
981
+ background-color: var(--color-gray-3);
982
+ }
983
+
984
+ .x1s07b3s:disabled {
985
+ cursor: not-allowed;
986
+ }
987
+
988
+ .xijokvz:disabled {
989
+ opacity: .5;
990
+ }
991
+
992
+ .xpdez7c:disabled {
993
+ opacity: var(--opacity-picker-disabled);
994
+ }
995
+
996
+ .x12icss0:hover {
997
+ background-color: var(--color-gray-3);
998
+ }
999
+
1000
+ .x135mljp:hover {
1001
+ background-color: var(--color-gray-4);
1002
+ }
1003
+
1004
+ .x1srrrpr:hover {
1005
+ color: var(--color-gray-12);
1006
+ }
1007
+
1008
+ @media (width <= 640px) {
1009
+ .x13k7z1v.x13k7z1v {
1010
+ align-items: safe flex-end;
1011
+ }
1012
+
1013
+ .xfsj286.xfsj286 {
1014
+ display: block;
1015
+ }
1016
+
1017
+ .xpvzxny.xpvzxny {
1018
+ opacity: 1;
1019
+ }
1020
+
1021
+ .x1u4bqw3.x1u4bqw3 {
1022
+ transform: translateY(var(--drawer-swipe-movement-y));
1023
+ }
1024
+
1025
+ .xan356u.xan356u {
1026
+ transition-duration: .45s;
1027
+ }
1028
+
1029
+ .x1lnlnex.x1lnlnex {
1030
+ transition-property: transform;
1031
+ }
1032
+
1033
+ .xxexonw.xxexonw {
1034
+ transition-timing-function: cubic-bezier(.32, .72, 0, 1);
1035
+ }
1036
+ }
1037
+
1038
+ .x1rlgnxn:enabled:hover {
1039
+ box-shadow: inset 0 0 0 1px var(--color-gray-6);
1040
+ }
1041
+
1042
+ @media (width <= 640px) {
1043
+ .xf275dk.xf275dk:is([data-ending-style], [data-starting-style]) {
1044
+ opacity: 1;
1045
+ }
1046
+
1047
+ .x1snmyix.x1snmyix:is([data-ending-style], [data-starting-style]) {
1048
+ transform: scale(1) translateY(100%);
1049
+ }
1050
+
1051
+ .x1ty2x96.x1ty2x96[data-ending-style] {
1052
+ transition-duration: calc(var(--drawer-swipe-strength) * .3s);
1053
+ }
1054
+ }
1055
+
1056
+ .xho1339:enabled:focus, .xnn6d81:enabled:active {
1057
+ box-shadow: inset 0 0 0 1px var(--color-gray-6);
1058
+ }
1059
+ }
1060
+
1061
+ @layer components.priority5 {
1062
+ .x1s77fqg {
1063
+ border-bottom-color: var(--color-gray-4);
1064
+ }
1065
+
1066
+ .x17sffzf {
1067
+ border-bottom-left-radius: 16px;
1068
+ }
1069
+
1070
+ .xve69zf {
1071
+ border-bottom-right-radius: 16px;
1072
+ }
1073
+
1074
+ .x1q0q8m5 {
1075
+ border-bottom-style: solid;
1076
+ }
1077
+
1078
+ .xso031l {
1079
+ border-bottom-width: 1px;
1080
+ }
1081
+
1082
+ .xtzlleu {
1083
+ border-top-left-radius: 16px;
1084
+ }
1085
+
1086
+ .x34fko1 {
1087
+ border-top-right-radius: 16px;
1088
+ }
1089
+
1090
+ .x1ey2m1c {
1091
+ bottom: 0;
1092
+ }
1093
+
1094
+ .x5yr21d {
1095
+ height: 100%;
1096
+ }
1097
+
1098
+ .xlup9mm {
1099
+ height: 16px;
1100
+ }
1101
+
1102
+ .xmix8c7 {
1103
+ height: 18px;
1104
+ }
1105
+
1106
+ .xjm9jq1 {
1107
+ height: 1px;
1108
+ }
1109
+
1110
+ .xxk0z11 {
1111
+ height: 24px;
1112
+ }
1113
+
1114
+ .x36qwtl {
1115
+ height: 2px;
1116
+ }
1117
+
1118
+ .x10w6t97 {
1119
+ height: 32px;
1120
+ }
1121
+
1122
+ .xc9qbxq {
1123
+ height: 36px;
1124
+ }
1125
+
1126
+ .x1vqgdyp {
1127
+ height: 40px;
1128
+ }
1129
+
1130
+ .xn3w4p2 {
1131
+ height: 44px;
1132
+ }
1133
+
1134
+ .xsdox4t {
1135
+ height: 48px;
1136
+ }
1137
+
1138
+ .xqu0tyb {
1139
+ height: 4px;
1140
+ }
1141
+
1142
+ .xt7dq6l {
1143
+ height: auto;
1144
+ }
1145
+
1146
+ .x13gmgbj {
1147
+ height: calc(var(--size) / 12);
1148
+ }
1149
+
1150
+ .x1gezbiy {
1151
+ height: var(--active-tab-height);
1152
+ }
1153
+
1154
+ .x188dgw3 {
1155
+ height: var(--size);
1156
+ }
1157
+
1158
+ .xvbikie {
1159
+ left: var(--active-tab-left);
1160
+ }
1161
+
1162
+ .xzueoph {
1163
+ margin-bottom: 6px;
1164
+ }
1165
+
1166
+ .x8x9d4c {
1167
+ margin-left: auto;
1168
+ }
1169
+
1170
+ .xqldp2m {
1171
+ max-height: min(var(--available-height),480px);
1172
+ }
1173
+
1174
+ .x7ab17h {
1175
+ max-height: none;
1176
+ }
1177
+
1178
+ .x11gisft {
1179
+ max-width: 640px;
1180
+ }
1181
+
1182
+ .xnx49gs {
1183
+ max-width: min(var(--available-width),320px);
1184
+ }
1185
+
1186
+ .x7k7lee {
1187
+ max-width: var(--available-width);
1188
+ }
1189
+
1190
+ .x21xpn4 {
1191
+ min-height: 32px;
1192
+ }
1193
+
1194
+ .xu0aao5 {
1195
+ min-height: 36px;
1196
+ }
1197
+
1198
+ .x1ba4aug {
1199
+ min-height: 40px;
1200
+ }
1201
+
1202
+ .x1gg8mnh {
1203
+ min-height: 44px;
1204
+ }
1205
+
1206
+ .x1wxaq2x {
1207
+ min-height: 48px;
1208
+ }
1209
+
1210
+ .xcr9lap {
1211
+ min-height: 66px;
1212
+ }
1213
+
1214
+ .xeuugli {
1215
+ min-width: 0;
1216
+ }
1217
+
1218
+ .xfb3i0g {
1219
+ min-width: 180px;
1220
+ }
1221
+
1222
+ .xz962wo {
1223
+ min-width: max(var(--anchor-width),240px);
1224
+ }
1225
+
1226
+ .xw2csxc {
1227
+ overflow-x: auto;
1228
+ }
1229
+
1230
+ .x6ikm8r {
1231
+ overflow-x: hidden;
1232
+ }
1233
+
1234
+ .x1odjw0f {
1235
+ overflow-y: auto;
1236
+ }
1237
+
1238
+ .xyamay9 {
1239
+ padding-top: 16px;
1240
+ }
1241
+
1242
+ .x3m8u43 {
1243
+ right: 0;
1244
+ }
1245
+
1246
+ .xwa60dl {
1247
+ top: 50%;
1248
+ }
1249
+
1250
+ .x10uur0e {
1251
+ top: var(--active-tab-top);
1252
+ }
1253
+
1254
+ .xh8yej3 {
1255
+ width: 100%;
1256
+ }
1257
+
1258
+ .x1kky2od {
1259
+ width: 16px;
1260
+ }
1261
+
1262
+ .x1849jeq {
1263
+ width: 30px;
1264
+ }
1265
+
1266
+ .x1td3qas {
1267
+ width: 32px;
1268
+ }
1269
+
1270
+ .x14qfxbe {
1271
+ width: 36px;
1272
+ }
1273
+
1274
+ .x100vrsf {
1275
+ width: 40px;
1276
+ }
1277
+
1278
+ .x187nhsf {
1279
+ width: 44px;
1280
+ }
1281
+
1282
+ .x1useyqa {
1283
+ width: 48px;
1284
+ }
1285
+
1286
+ .xtnyu7h {
1287
+ width: calc(var(--size) / 2);
1288
+ }
1289
+
1290
+ .xeq5yr9 {
1291
+ width: fit-content;
1292
+ }
1293
+
1294
+ .xezivpi {
1295
+ width: max-content;
1296
+ }
1297
+
1298
+ .x1brm51p {
1299
+ width: -webkit-fill-available;
1300
+ width: -moz-available;
1301
+ width: stretch;
1302
+ }
1303
+
1304
+ .xoffw1 {
1305
+ width: var(--active-tab-width);
1306
+ }
1307
+
1308
+ .x1hhjr3y {
1309
+ width: var(--anchor-width);
1310
+ }
1311
+
1312
+ .x1fjlwjz {
1313
+ width: var(--size);
1314
+ }
1315
+
1316
+ @media (width <= 640px) {
1317
+ .x1lclwwd.x1lclwwd {
1318
+ border-bottom-left-radius: 0;
1319
+ }
1320
+
1321
+ .xgrp7ii.xgrp7ii {
1322
+ border-bottom-right-radius: 0;
1323
+ }
1324
+
1325
+ .x1pwg7sp.x1pwg7sp {
1326
+ border-top-left-radius: var(--radius-mobile);
1327
+ }
1328
+
1329
+ .x18pojzy.x18pojzy {
1330
+ border-top-right-radius: var(--radius-mobile);
1331
+ }
1332
+
1333
+ .x1vy0343.x1vy0343 {
1334
+ padding-top: 0;
1335
+ }
1336
+ }
1337
+ }
1338
+
1339
+ @layer components.priority6 {
1340
+ .x1f3l70z:after {
1341
+ border-radius: 9999px;
1342
+ }
1343
+ }
1344
+
1345
+ @layer components.priority7 {
1346
+ .x1hfhjwi:after {
1347
+ background-color: currentColor;
1348
+ }
1349
+
1350
+ .x1ta7s2x::placeholder {
1351
+ color: var(--color-gray-9);
1352
+ }
1353
+
1354
+ .x1s928wv:after {
1355
+ content: "";
1356
+ }
1357
+
1358
+ .x1j6awrg:after {
1359
+ position: absolute;
1360
+ }
1361
+
1362
+ .xjp5s5a::placeholder {
1363
+ -webkit-user-select: none;
1364
+ user-select: none;
1365
+ }
1366
+ }
1367
+
1368
+ @layer components.priority8 {
1369
+ .x1wsn0xg:after {
1370
+ height: 100%;
1371
+ }
1372
+
1373
+ .xnbfe2x:after {
1374
+ right: 0;
1375
+ }
1376
+
1377
+ .xdnmdmm:after {
1378
+ width: 50%;
1379
+ }
1380
+ }
1381
+
1382
+ @keyframes x1wfl5al-B {
1383
+ to {
1384
+ rotate: 1turn;
1385
+ }
1386
+ }
1387
+
1388
+ .x10t59f0 {
1389
+ --backdrop-opacity: var(--opacity-dialog-backdrop);
1390
+ }
1391
+
1392
+ .xq5qtd1 {
1393
+ --border-radius: 12px;
1394
+ }
1395
+
1396
+ .x1kpxz5j {
1397
+ --radius-mobile: 16px;
1398
+ }
1399
+
1400
+ .x14kqwz2 {
1401
+ --size: 12px;
1402
+ }
1403
+
1404
+ .x1fwrj7o {
1405
+ --size: 16px;
1406
+ }
1407
+
1408
+ .x16tb73e {
1409
+ --translateX: 12px;
1410
+ }
1411
+
1412
+ .xksez7u {
1413
+ --translateX: 16px;
1414
+ }
1415
+
1416
+ @media (width <= 640px) {
1417
+ .xlj1bto.xlj1bto {
1418
+ --radius-mobile: 24px;
1419
+ }
1420
+ }