motile-ui 0.9.0 → 0.9.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +193 -31
- package/dist/index.css +1 -0
- package/dist/motile-ui.es.js +458 -455
- package/dist/motile-ui.umd.js +2 -2
- package/package.json +10 -7
package/README.md
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
<div align="center">
|
|
2
2
|
<img src="https://github.com/Innopers.png" alt="Motile UI Logo" width="200"/>
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
# Motile UI
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
**웹뷰 애플리케이션을 위한 모던 React 컴포넌트 라이브러리**
|
|
7
7
|
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
8
|
+
[](https://www.npmjs.com/package/motile-ui)
|
|
9
|
+
[](https://www.npmjs.com/package/motile-ui)
|
|
10
|
+
[](https://github.com/Innopers/motile-ui/blob/main/LICENSE)
|
|
11
|
+
[](https://www.typescriptlang.org/)
|
|
12
12
|
|
|
13
13
|
<br/>
|
|
14
14
|
|
|
15
|
-
|
|
15
|
+
**[🇰🇷 한국어](#-한국어) | [🇺🇸 English](#-english)**
|
|
16
16
|
|
|
17
17
|
</div>
|
|
18
18
|
|
|
@@ -28,6 +28,7 @@
|
|
|
28
28
|
- [주요 기능](#-주요-기능)
|
|
29
29
|
- [설치](#-설치)
|
|
30
30
|
- [빠른 시작](#-빠른-시작)
|
|
31
|
+
- [테마 커스터마이징](#-테마-커스터마이징)
|
|
31
32
|
- [컴포넌트](#-컴포넌트)
|
|
32
33
|
- [라이선스](#-라이선스)
|
|
33
34
|
|
|
@@ -35,7 +36,7 @@
|
|
|
35
36
|
|
|
36
37
|
## ✨ 주요 기능
|
|
37
38
|
|
|
38
|
-
- 🎨 **
|
|
39
|
+
- 🎨 **16개의 고품질 컴포넌트** - 웹뷰 애플리케이션을 위해 세심하게 제작
|
|
39
40
|
- 💪 **TypeScript 우선** - 포괄적인 타입 정의 완벽 지원
|
|
40
41
|
- 🎭 **커스터마이징 가능** - CSS 변수로 쉬운 테마 설정
|
|
41
42
|
- 📱 **모바일 최적화** - 터치 친화적 인터랙션과 반응형 디자인
|
|
@@ -47,6 +48,11 @@
|
|
|
47
48
|
|
|
48
49
|
## 📦 설치
|
|
49
50
|
|
|
51
|
+
### 요구사항
|
|
52
|
+
|
|
53
|
+
- **React**: 18.0.0 이상 (React 18 또는 React 19)
|
|
54
|
+
- **React DOM**: 18.0.0 이상
|
|
55
|
+
|
|
50
56
|
```bash
|
|
51
57
|
# npm
|
|
52
58
|
npm install motile-ui
|
|
@@ -63,7 +69,7 @@ pnpm add motile-ui
|
|
|
63
69
|
## 🚀 빠른 시작
|
|
64
70
|
|
|
65
71
|
```tsx
|
|
66
|
-
import { Button, Input, Modal } from
|
|
72
|
+
import { Button, Input, Modal } from "motile-ui";
|
|
67
73
|
|
|
68
74
|
function App() {
|
|
69
75
|
return (
|
|
@@ -72,22 +78,98 @@ function App() {
|
|
|
72
78
|
클릭하세요
|
|
73
79
|
</Button>
|
|
74
80
|
|
|
75
|
-
<Input
|
|
76
|
-
label="이메일"
|
|
77
|
-
placeholder="이메일을 입력하세요"
|
|
78
|
-
type="email"
|
|
79
|
-
/>
|
|
81
|
+
<Input label="이메일" placeholder="이메일을 입력하세요" type="email" />
|
|
80
82
|
|
|
81
83
|
<Modal open={true} onClose={() => {}}>
|
|
82
84
|
<h2>안녕하세요 Motile UI!</h2>
|
|
83
85
|
</Modal>
|
|
84
86
|
</div>
|
|
85
|
-
)
|
|
87
|
+
);
|
|
86
88
|
}
|
|
87
89
|
```
|
|
88
90
|
|
|
89
91
|
---
|
|
90
92
|
|
|
93
|
+
## 🎨 테마 커스터마이징
|
|
94
|
+
|
|
95
|
+
Motile UI는 CSS 변수를 통해 전역 테마를 쉽게 커스터마이징할 수 있습니다.
|
|
96
|
+
|
|
97
|
+
### 전역 테마 색상
|
|
98
|
+
|
|
99
|
+
모든 컴포넌트에 적용되는 기본 색상을 설정할 수 있습니다:
|
|
100
|
+
|
|
101
|
+
```css
|
|
102
|
+
:root {
|
|
103
|
+
--motile-theme: #3b82f6; /* 모든 컴포넌트의 기본 색상 */
|
|
104
|
+
}
|
|
105
|
+
```
|
|
106
|
+
|
|
107
|
+
### 컴포넌트별 전역 색상
|
|
108
|
+
|
|
109
|
+
특정 컴포넌트 타입의 전역 색상을 개별적으로 설정할 수 있습니다:
|
|
110
|
+
|
|
111
|
+
```css
|
|
112
|
+
:root {
|
|
113
|
+
/* 버튼 */
|
|
114
|
+
--motile-ui-btn: #10b981; /* Primary 버튼 색상 */
|
|
115
|
+
--motile-ui-btn-secondary: #6b7280; /* Secondary 버튼 색상 */
|
|
116
|
+
--motile-ui-btn-default: #3b82f6; /* Default 버튼 색상 */
|
|
117
|
+
|
|
118
|
+
/* 입력 필드 */
|
|
119
|
+
--motile-ui-input: #8b5cf6; /* Input 포커스 색상 */
|
|
120
|
+
--motile-ui-textarea: #ec4899; /* Textarea 포커스 색상 */
|
|
121
|
+
|
|
122
|
+
/* 선택 컨트롤 */
|
|
123
|
+
--motile-ui-checkbox: #f59e0b; /* Checkbox 체크 색상 */
|
|
124
|
+
--motile-ui-switch: #14b8a6; /* Switch 활성화 색상 */
|
|
125
|
+
|
|
126
|
+
/* 기타 컴포넌트 */
|
|
127
|
+
--motile-ui-badge: #ef4444; /* Badge 배경 색상 */
|
|
128
|
+
--motile-ui-tooltip: #1f2937; /* Tooltip 배경 색상 */
|
|
129
|
+
--motile-ui-popover: #3b82f6; /* Popover 강조 색상 */
|
|
130
|
+
--motile-ui-dock: #3b82f6; /* Dock 하이라이트 색상 */
|
|
131
|
+
}
|
|
132
|
+
```
|
|
133
|
+
|
|
134
|
+
### 개별 컴포넌트 색상
|
|
135
|
+
|
|
136
|
+
각 컴포넌트 인스턴스마다 다른 색상을 적용할 수 있습니다:
|
|
137
|
+
|
|
138
|
+
```tsx
|
|
139
|
+
<Button
|
|
140
|
+
style={{ '--motile-btn-color': '#ef4444' }}
|
|
141
|
+
variant="primary"
|
|
142
|
+
>
|
|
143
|
+
빨간 버튼
|
|
144
|
+
</Button>
|
|
145
|
+
|
|
146
|
+
<Input
|
|
147
|
+
style={{ '--motile-input-color': '#8b5cf6' }}
|
|
148
|
+
label="보라색 입력 필드"
|
|
149
|
+
/>
|
|
150
|
+
|
|
151
|
+
<Checkbox
|
|
152
|
+
style={{ '--motile-checkbox-color': '#f59e0b' }}
|
|
153
|
+
label="주황색 체크박스"
|
|
154
|
+
/>
|
|
155
|
+
```
|
|
156
|
+
|
|
157
|
+
### 우선순위
|
|
158
|
+
|
|
159
|
+
색상 적용 우선순위는 다음과 같습니다:
|
|
160
|
+
|
|
161
|
+
```
|
|
162
|
+
개별 컴포넌트 색상 > 컴포넌트 타입 전역 색상 > 전역 테마 색상 > 기본 색상
|
|
163
|
+
```
|
|
164
|
+
|
|
165
|
+
예시:
|
|
166
|
+
|
|
167
|
+
```
|
|
168
|
+
--motile-btn-color > --motile-ui-btn > --motile-theme > #3b82f6 (기본값)
|
|
169
|
+
```
|
|
170
|
+
|
|
171
|
+
---
|
|
172
|
+
|
|
91
173
|
## 🎨 컴포넌트
|
|
92
174
|
|
|
93
175
|
- **Button** - 다양한 variant와 size를 지원하는 버튼
|
|
@@ -95,18 +177,17 @@ function App() {
|
|
|
95
177
|
- **Textarea** - 여러 줄 텍스트 입력 필드
|
|
96
178
|
- **Checkbox** - 체크박스 입력
|
|
97
179
|
- **Switch** - 토글 스위치
|
|
98
|
-
- **Select** - 드롭다운 선택 메뉴
|
|
99
180
|
- **Badge** - 상태 표시 배지
|
|
100
181
|
- **Toast** - 알림 메시지
|
|
101
182
|
- **Skeleton** - 로딩 상태 플레이스홀더
|
|
102
183
|
- **SpeedDial** - 플로팅 액션 버튼
|
|
103
184
|
- **Modal** - 모달 다이얼로그
|
|
104
|
-
- **Drawer** -
|
|
105
|
-
- **Sheet** -
|
|
185
|
+
- **Drawer** - 하단에서 올라오는 드로어
|
|
186
|
+
- **Sheet** - 좌우에서 슬라이드되는 사이드 패널
|
|
106
187
|
- **Popover** - 팝오버 메뉴
|
|
107
188
|
- **Tooltip** - 툴팁
|
|
108
189
|
- **Accordion** - 접을 수 있는 패널
|
|
109
|
-
- **Dock** -
|
|
190
|
+
- **Dock** - 독 스타일 네비게이션 바
|
|
110
191
|
|
|
111
192
|
---
|
|
112
193
|
|
|
@@ -129,6 +210,7 @@ MIT © [Innopers](https://github.com/Innopers)
|
|
|
129
210
|
- [Features](#-features)
|
|
130
211
|
- [Installation](#-installation)
|
|
131
212
|
- [Quick Start](#-quick-start)
|
|
213
|
+
- [Theme Customization](#-theme-customization)
|
|
132
214
|
- [Components](#-components)
|
|
133
215
|
- [License](#-license)
|
|
134
216
|
|
|
@@ -136,7 +218,7 @@ MIT © [Innopers](https://github.com/Innopers)
|
|
|
136
218
|
|
|
137
219
|
## ✨ Features
|
|
138
220
|
|
|
139
|
-
- 🎨 **
|
|
221
|
+
- 🎨 **16 High-Quality Components** - Carefully crafted for webview applications
|
|
140
222
|
- 💪 **TypeScript First** - Full TypeScript support with comprehensive type definitions
|
|
141
223
|
- 🎭 **Customizable** - Easy theming with CSS variables
|
|
142
224
|
- 📱 **Mobile Optimized** - Touch-friendly interactions and responsive design
|
|
@@ -148,6 +230,11 @@ MIT © [Innopers](https://github.com/Innopers)
|
|
|
148
230
|
|
|
149
231
|
## 📦 Installation
|
|
150
232
|
|
|
233
|
+
### Requirements
|
|
234
|
+
|
|
235
|
+
- **React**: 18.0.0 or higher (React 18 or React 19)
|
|
236
|
+
- **React DOM**: 18.0.0 or higher
|
|
237
|
+
|
|
151
238
|
```bash
|
|
152
239
|
# npm
|
|
153
240
|
npm install motile-ui
|
|
@@ -164,7 +251,7 @@ pnpm add motile-ui
|
|
|
164
251
|
## 🚀 Quick Start
|
|
165
252
|
|
|
166
253
|
```tsx
|
|
167
|
-
import { Button, Input, Modal } from
|
|
254
|
+
import { Button, Input, Modal } from "motile-ui";
|
|
168
255
|
|
|
169
256
|
function App() {
|
|
170
257
|
return (
|
|
@@ -173,22 +260,98 @@ function App() {
|
|
|
173
260
|
Click me
|
|
174
261
|
</Button>
|
|
175
262
|
|
|
176
|
-
<Input
|
|
177
|
-
label="Email"
|
|
178
|
-
placeholder="Enter your email"
|
|
179
|
-
type="email"
|
|
180
|
-
/>
|
|
263
|
+
<Input label="Email" placeholder="Enter your email" type="email" />
|
|
181
264
|
|
|
182
265
|
<Modal open={true} onClose={() => {}}>
|
|
183
266
|
<h2>Hello Motile UI!</h2>
|
|
184
267
|
</Modal>
|
|
185
268
|
</div>
|
|
186
|
-
)
|
|
269
|
+
);
|
|
187
270
|
}
|
|
188
271
|
```
|
|
189
272
|
|
|
190
273
|
---
|
|
191
274
|
|
|
275
|
+
## 🎨 Theme Customization
|
|
276
|
+
|
|
277
|
+
Motile UI allows easy theme customization through CSS variables.
|
|
278
|
+
|
|
279
|
+
### Global Theme Color
|
|
280
|
+
|
|
281
|
+
Set the default color applied to all components:
|
|
282
|
+
|
|
283
|
+
```css
|
|
284
|
+
:root {
|
|
285
|
+
--motile-theme: #3b82f6; /* Default color for all components */
|
|
286
|
+
}
|
|
287
|
+
```
|
|
288
|
+
|
|
289
|
+
### Component-Specific Global Colors
|
|
290
|
+
|
|
291
|
+
Set global colors for specific component types:
|
|
292
|
+
|
|
293
|
+
```css
|
|
294
|
+
:root {
|
|
295
|
+
/* Buttons */
|
|
296
|
+
--motile-ui-btn: #10b981; /* Primary button color */
|
|
297
|
+
--motile-ui-btn-secondary: #6b7280; /* Secondary button color */
|
|
298
|
+
--motile-ui-btn-default: #3b82f6; /* Default button color */
|
|
299
|
+
|
|
300
|
+
/* Input Fields */
|
|
301
|
+
--motile-ui-input: #8b5cf6; /* Input focus color */
|
|
302
|
+
--motile-ui-textarea: #ec4899; /* Textarea focus color */
|
|
303
|
+
|
|
304
|
+
/* Selection Controls */
|
|
305
|
+
--motile-ui-checkbox: #f59e0b; /* Checkbox checked color */
|
|
306
|
+
--motile-ui-switch: #14b8a6; /* Switch active color */
|
|
307
|
+
|
|
308
|
+
/* Other Components */
|
|
309
|
+
--motile-ui-badge: #ef4444; /* Badge background color */
|
|
310
|
+
--motile-ui-tooltip: #1f2937; /* Tooltip background color */
|
|
311
|
+
--motile-ui-popover: #3b82f6; /* Popover highlight color */
|
|
312
|
+
--motile-ui-dock: #3b82f6; /* Dock highlight color */
|
|
313
|
+
}
|
|
314
|
+
```
|
|
315
|
+
|
|
316
|
+
### Individual Component Colors
|
|
317
|
+
|
|
318
|
+
Apply different colors to each component instance:
|
|
319
|
+
|
|
320
|
+
```tsx
|
|
321
|
+
<Button
|
|
322
|
+
style={{ '--motile-btn-color': '#ef4444' }}
|
|
323
|
+
variant="primary"
|
|
324
|
+
>
|
|
325
|
+
Red Button
|
|
326
|
+
</Button>
|
|
327
|
+
|
|
328
|
+
<Input
|
|
329
|
+
style={{ '--motile-input-color': '#8b5cf6' }}
|
|
330
|
+
label="Purple Input Field"
|
|
331
|
+
/>
|
|
332
|
+
|
|
333
|
+
<Checkbox
|
|
334
|
+
style={{ '--motile-checkbox-color': '#f59e0b' }}
|
|
335
|
+
label="Orange Checkbox"
|
|
336
|
+
/>
|
|
337
|
+
```
|
|
338
|
+
|
|
339
|
+
### Priority Order
|
|
340
|
+
|
|
341
|
+
Color application priority:
|
|
342
|
+
|
|
343
|
+
```
|
|
344
|
+
Individual Component Color > Component Type Global Color > Global Theme Color > Default Color
|
|
345
|
+
```
|
|
346
|
+
|
|
347
|
+
Example:
|
|
348
|
+
|
|
349
|
+
```
|
|
350
|
+
--motile-btn-color > --motile-ui-btn > --motile-theme > #3b82f6 (default)
|
|
351
|
+
```
|
|
352
|
+
|
|
353
|
+
---
|
|
354
|
+
|
|
192
355
|
## 🎨 Components
|
|
193
356
|
|
|
194
357
|
- **Button** - Button with various variants and sizes
|
|
@@ -196,18 +359,17 @@ function App() {
|
|
|
196
359
|
- **Textarea** - Multi-line text input field
|
|
197
360
|
- **Checkbox** - Checkbox input
|
|
198
361
|
- **Switch** - Toggle switch
|
|
199
|
-
- **Select** - Dropdown select menu
|
|
200
362
|
- **Badge** - Status badge indicator
|
|
201
363
|
- **Toast** - Notification message
|
|
202
364
|
- **Skeleton** - Loading state placeholder
|
|
203
365
|
- **SpeedDial** - Floating action button
|
|
204
366
|
- **Modal** - Modal dialog
|
|
205
|
-
- **Drawer** -
|
|
206
|
-
- **Sheet** -
|
|
367
|
+
- **Drawer** - Bottom-up drawer panel
|
|
368
|
+
- **Sheet** - Side panel that slides from left or right
|
|
207
369
|
- **Popover** - Popover menu
|
|
208
370
|
- **Tooltip** - Tooltip
|
|
209
371
|
- **Accordion** - Collapsible panel
|
|
210
|
-
- **Dock** -
|
|
372
|
+
- **Dock** - Dock-style navigation bar
|
|
211
373
|
|
|
212
374
|
---
|
|
213
375
|
|
package/dist/index.css
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.motile-btn{width:fit-content;border:none;border-radius:12px;font-weight:600;cursor:pointer;transition:all .2s cubic-bezier(.4,0,.2,1);outline:none;display:inline-flex;align-items:center;justify-content:center;position:relative;overflow:hidden;min-height:fit-content}.motile-btn:active:not(.motile-btn--disabled){filter:brightness(.95);box-shadow:0 2px 4px #0000001a}.motile-btn--primary{background:var( --motile-btn-color, var(--motile-ui-btn, var(--motile-theme, #3b82f6)) );color:#fff;box-shadow:0 1px 2px #0000000d}@media (hover: hover){.motile-btn--primary:hover:not(.motile-btn--disabled){filter:brightness(.9);box-shadow:0 4px 6px -1px #0000001a,0 2px 4px -1px #0000000f}}.motile-btn--hover-on-touch.motile-btn--primary:hover:not(.motile-btn--disabled){filter:brightness(.9);box-shadow:0 4px 6px -1px #0000001a,0 2px 4px -1px #0000000f}.motile-btn--secondary{background:#fff;color:var( --motile-btn-color, var(--motile-ui-btn-secondary, var(--motile-theme, #3b82f6)) );border:1px solid var( --motile-btn-color, var(--motile-ui-btn-secondary, var(--motile-theme, #3b82f6)) );box-shadow:none}@media (hover: hover){.motile-btn--secondary:hover:not(.motile-btn--disabled){background:color-mix(in srgb,var( --motile-btn-color, var(--motile-ui-btn-secondary, var(--motile-theme, #3b82f6)) ) 10%,transparent);box-shadow:0 4px 6px -1px #0000001a,0 2px 4px -1px #0000000f}}.motile-btn--hover-on-touch.motile-btn--secondary:hover:not(.motile-btn--disabled){background:color-mix(in srgb,var( --motile-btn-color, var(--motile-ui-btn-secondary, var(--motile-theme, #3b82f6)) ) 10%,transparent);box-shadow:0 4px 6px -1px #0000001a,0 2px 4px -1px #0000000f}.motile-btn--default{background:transparent;border:none;color:var( --motile-btn-color, var(--motile-ui-btn-default, var(--motile-theme, #3b82f6)) );box-shadow:none}@media (hover: hover){.motile-btn--default:hover:not(.motile-btn--disabled){opacity:.7;box-shadow:0 4px 6px -1px #0000001a,0 2px 4px -1px #0000000f}}.motile-btn--hover-on-touch.motile-btn--default:hover:not(.motile-btn--disabled){opacity:.7;box-shadow:0 4px 6px -1px #0000001a,0 2px 4px -1px #0000000f}.motile-btn--large{padding:0 24px;font-size:16px;height:56px;min-height:56px;line-height:1.4}.motile-btn--medium{padding:0 20px;font-size:15px;height:48px;min-height:48px;min-width:80px;line-height:1.4}.motile-btn--small{padding:0 16px;font-size:14px;height:40px;min-height:40px;min-width:64px;line-height:1.4}.motile-btn--primary.motile-btn--disabled{opacity:.5;filter:saturate(.9);cursor:not-allowed;transform:none;box-shadow:none;pointer-events:none}.motile-btn--secondary.motile-btn--disabled{background:#e5e7eb;color:#6b7280;border:none;cursor:not-allowed;transform:none;box-shadow:none;pointer-events:none}.motile-btn--default.motile-btn--disabled{background:#e5e7eb;color:#6b7280;cursor:not-allowed;transform:none;box-shadow:none;pointer-events:none}.motile-btn--full-width{width:100%}.motile-btn svg{flex-shrink:0;margin-right:8px}.motile-btn svg:last-child{margin-right:0;margin-left:8px}.motile-btn svg:only-child{margin:0}@media (max-width: 1024px){.motile-btn--large{padding:0 20px;font-size:15px;height:52px;min-height:52px}}@media (max-width: 768px){.motile-btn--large{padding:0 18px;font-size:14px;height:48px;min-height:48px}.motile-btn:active:not(.motile-btn--disabled){filter:brightness(.92)}}@supports (-webkit-touch-callout: none){.motile-btn{-webkit-tap-highlight-color:transparent;-webkit-user-select:none;user-select:none}}.motile-btn__wrapper{display:grid;grid-template-areas:"content";place-items:center;width:100%;height:100%}.motile-btn__content{grid-area:content;display:inline-flex;align-items:center;justify-content:center}.motile-btn__loading{grid-area:content;display:flex;align-items:center;justify-content:center}.motile-btn__dots{display:flex;gap:8px;align-items:center;height:1em}.motile-btn--large .motile-btn__dot{width:8px;height:8px}.motile-btn--medium .motile-btn__dot{width:6px;height:6px}.motile-btn--small .motile-btn__dot{width:5px;height:5px}.motile-btn__dot{border-radius:50%;background-color:#ffffffb3;animation:motile-btn-loading-bounce 1.4s ease-in-out infinite both}.motile-btn__dot:nth-child(1){animation-delay:-.32s}.motile-btn__dot:nth-child(2){animation-delay:-.16s}.motile-btn__dot:nth-child(3){animation-delay:0s}.motile-btn--primary .motile-btn__dot{background-color:#ffffffb3}.motile-btn--secondary .motile-btn__dot,.motile-btn--default .motile-btn__dot{background-color:#9ca3afb3}@keyframes motile-btn-loading-bounce{0%,80%,to{transform:scale(1);opacity:.4}40%{transform:scale(1.2);opacity:1}}.motile-input{width:100%;border:1px solid #e5e8eb;border-radius:12px;padding:12px 16px;font-size:15px;font-weight:400;color:#111827;background:#fff;outline:none;transition:none;min-height:48px;line-height:1.4;box-sizing:border-box}.motile-input:hover:not(:disabled):not(:focus):not(.motile-input--error){border-color:#c9cdd2}.motile-input--default{border:2px solid #e5e8eb}.motile-input--default:focus{border:2px solid var(--motile-input-color, var(--motile-ui-input, var(--motile-theme, #3182f6)))}.motile-input--default:disabled{background:#f9fafb;color:#9ca3af;cursor:not-allowed;border-color:#e5e7eb}.motile-input--underline:disabled{background:transparent;color:#9ca3af;cursor:not-allowed;border-bottom-color:#e5e7eb;opacity:.5}.motile-input--default.motile-input--error{border:2px solid #ef4444;background:#fef5f5}.motile-input--default.motile-input--error:focus{border:2px solid #ef4444;background:#fef5f5}.motile-input--shake{animation:motile-input-shake .5s ease-in-out}@keyframes motile-input-shake{0%{transform:translate(0)}15%{transform:translate(-10px)}30%{transform:translate(8px)}45%{transform:translate(-6px)}60%{transform:translate(4px)}75%{transform:translate(-2px)}to{transform:translate(0)}}.motile-input::placeholder{color:#9ca3af;opacity:1}.motile-input-wrapper{position:relative;width:100%}.motile-input--underline{border:none;border-bottom:2px solid #e5e8eb;border-radius:0;background:transparent;padding:18px 4px 4px;height:48px;line-height:1.5;transition:border-color .2s ease}.motile-input--underline:hover:not(:disabled):not(:focus):not(.motile-input--error){border-bottom-color:#9ca3af}.motile-input--underline:focus{border:none;border-bottom:2px solid var(--motile-input-color, var(--motile-ui-input, var(--motile-theme, #3182f6)));padding:18px 4px 4px;height:48px;line-height:1.5}.motile-input--underline.motile-input--error{border-bottom-color:#ef4444}.motile-input--underline.motile-input--error:focus{border-bottom:2px solid #ef4444;padding:18px 4px 4px;height:48px;line-height:1.5}.motile-input--with-left-icon{padding-left:40px}.motile-input--default.motile-input--with-left-icon:focus{padding-left:40px}.motile-input--underline.motile-input--with-left-icon{padding-left:32px}.motile-input--underline.motile-input--with-left-icon:focus{padding-left:32px}.motile-input--with-right-content{padding-right:40px}.motile-input--default.motile-input--with-right-content:focus{padding-right:40px}.motile-input--underline.motile-input--with-right-content{padding-right:32px}.motile-input--underline.motile-input--with-right-content:focus{padding-right:32px}.motile-input__left-icon{position:absolute;left:12px;top:50%;transform:translateY(-50%);display:flex;align-items:center;justify-content:center;width:20px;height:20px;color:#9ca3af;pointer-events:none}.motile-input-wrapper:has(.motile-input--underline) .motile-input__left-icon{left:4px;top:calc(50% + 7px)}.motile-input__left-icon svg{width:100%;height:100%}.motile-input__right-icon{position:absolute;right:12px;top:50%;transform:translateY(-50%);display:flex;align-items:center;justify-content:center;width:20px;height:20px;color:#9ca3af;pointer-events:none}.motile-input-wrapper:has(.motile-input--underline) .motile-input__right-icon{right:4px;top:calc(50% + 7px)}.motile-input__right-icon svg{width:100%;height:100%}.motile-input__clear-button{position:absolute;right:12px;top:50%;transform:translateY(-50%);display:flex;align-items:center;justify-content:center;width:20px;height:20px;padding:0;background:transparent;border:none;color:#9ca3af;cursor:pointer;border-radius:4px;transition:background-color .2s ease,color .2s ease}.motile-input-wrapper:has(.motile-input--underline) .motile-input__clear-button{right:4px;top:calc(50% + 7px)}.motile-input__clear-button:hover{background:#f3f4f6;color:#6b7280}.motile-input__clear-icon{width:16px;height:16px}@media (max-width: 768px){.motile-input{font-size:16px;padding:12px;min-height:44px}.motile-input--default{border:2px solid #e5e8eb}.motile-input--default:focus{border:2px solid var( --motile-input-color, var(--motile-ui-input, var(--motile-theme, #3182f6)) )}.motile-input--underline{padding:18px 4px 4px;height:48px;line-height:1.5}.motile-input--underline:focus{border-bottom:2px solid var( --motile-input-color, var(--motile-ui-input, var(--motile-theme, #3182f6)) );padding:18px 4px 4px;height:48px;line-height:1.5}.motile-input-wrapper:has(.motile-input--underline) .motile-input__left-icon{top:calc(50% + 7px);transform:translateY(-50%)}.motile-input-wrapper:has(.motile-input--underline) .motile-input__right-icon{top:calc(50% + 7px);transform:translateY(-50%)}.motile-input-wrapper:has(.motile-input--underline) .motile-input__clear-button{top:calc(50% + 7px);transform:translateY(-50%)}.motile-input--with-left-icon{padding-left:40px}.motile-input--default.motile-input--with-left-icon:focus{padding-left:40px}.motile-input--default.motile-input--with-label.motile-input--with-left-icon{padding-left:40px}.motile-input--default.motile-input--with-label.motile-input--with-left-icon:focus{padding-left:40px}.motile-input--underline.motile-input--with-left-icon{padding-left:32px}.motile-input--underline.motile-input--with-left-icon:focus{padding-left:32px}.motile-input-wrapper:has(.motile-input--underline) .motile-input--with-label.motile-input--with-left-icon{padding-left:32px}.motile-input-wrapper:has(.motile-input--underline) .motile-input--with-label.motile-input--with-left-icon:focus{padding-left:32px}.motile-input--with-right-content{padding-right:36px}.motile-input--default.motile-input--with-right-content:focus{padding-right:36px}.motile-input--underline.motile-input--with-right-content{padding-right:32px}.motile-input--underline.motile-input--with-right-content:focus{padding-right:32px}}@supports (-webkit-touch-callout: none){.motile-input{-webkit-tap-highlight-color:transparent}}.motile-input__helper-text{display:flex;align-items:flex-start;margin-top:4px;min-height:16px;gap:8px}.motile-input__helper-text--both{justify-content:space-between}.motile-input__helper-text--error-only{justify-content:flex-start}.motile-input__helper-text--counter-only{justify-content:flex-end}.motile-input__error-message{font-size:12px;color:#ef4444;line-height:16px;flex:1}.motile-input__counter{font-size:12px;color:#9ca3af;line-height:16px;white-space:nowrap;flex-shrink:0}.motile-input__label{position:absolute;left:16px;top:50%;transform:translateY(-50%);font-size:15px;color:#9ca3af;pointer-events:none;transition:all .2s ease;background:transparent;padding:0;z-index:1}.motile-input--with-label::placeholder{opacity:0}.motile-input--with-label:focus::placeholder{opacity:1}.motile-input-wrapper:not(:has(.motile-input--underline)):has(.motile-input:focus) .motile-input__label,.motile-input-wrapper:not(:has(.motile-input--underline)):has(.motile-input:not(:placeholder-shown)) .motile-input__label{top:0;transform:translateY(-50%);font-size:12px;color:var( --motile-input-color, var(--motile-ui-input, var(--motile-theme, #3182f6)) );background:#fff;padding:0 4px}.motile-input-wrapper:has(.motile-input--underline) .motile-input__label{left:4px;top:calc(50% + 7px);transform:translateY(-50%)}.motile-input-wrapper:has(.motile-input--underline):has(.motile-input:focus) .motile-input__label,.motile-input-wrapper:has(.motile-input--underline):has(.motile-input:not(:placeholder-shown)) .motile-input__label{top:14px;transform:translateY(-100%);font-size:12px;color:var( --motile-input-color, var(--motile-ui-input, var(--motile-theme, #3182f6)) )}.motile-input-wrapper:has(.motile-input:focus) .motile-input__label--error,.motile-input-wrapper:has(.motile-input:not(:placeholder-shown)) .motile-input__label--error{color:#ef4444}.motile-input--default.motile-input--with-label{padding-top:12px;padding-bottom:12px}.motile-input--default.motile-input--with-label.motile-input--with-left-icon{padding-left:40px}.motile-input--default.motile-input--with-label.motile-input--with-left-icon:focus{padding-left:40px}.motile-input-wrapper:has(.motile-input--underline) .motile-input--with-label.motile-input--with-left-icon{padding-left:32px}.motile-input-wrapper:has(.motile-input--underline) .motile-input--with-label.motile-input--with-left-icon:focus{padding-left:32px}.motile-input-wrapper:has(.motile-input--with-left-icon) .motile-input__label{left:44px}.motile-input-wrapper:has(.motile-input--underline.motile-input--with-left-icon) .motile-input__label{left:32px;top:calc(50% + 7px);transform:translateY(-50%)}.motile-input-wrapper:not(:has(.motile-input--underline)):has(.motile-input--with-left-icon):has(.motile-input:focus) .motile-input__label,.motile-input-wrapper:not(:has(.motile-input--underline)):has(.motile-input--with-left-icon):has(.motile-input:not(:placeholder-shown)) .motile-input__label{left:40px}.motile-input-wrapper:has(.motile-input--underline.motile-input--with-left-icon):has(.motile-input:focus) .motile-input__label,.motile-input-wrapper:has(.motile-input--underline.motile-input--with-left-icon):has(.motile-input:not(:placeholder-shown)) .motile-input__label{left:4px;top:14px;transform:translateY(-100%)}@media (max-width: 768px){.motile-input__label{font-size:16px;left:12px}.motile-input-wrapper:not(:has(.motile-input--underline)):has(.motile-input:focus) .motile-input__label,.motile-input-wrapper:not(:has(.motile-input--underline)):has(.motile-input:not(:placeholder-shown)) .motile-input__label{font-size:12px}.motile-input-wrapper:has(.motile-input--underline) .motile-input__label{left:4px;top:calc(50% + 7px);transform:translateY(-50%)}.motile-input-wrapper:has(.motile-input--underline):has(.motile-input:focus) .motile-input__label,.motile-input-wrapper:has(.motile-input--underline):has(.motile-input:not(:placeholder-shown)) .motile-input__label{font-size:12px;top:14px;transform:translateY(-100%)}.motile-input-wrapper:has(.motile-input--with-left-icon) .motile-input__label{left:40px}.motile-input-wrapper:has(.motile-input--underline.motile-input--with-left-icon) .motile-input__label{left:32px;top:calc(50% + 7px);transform:translateY(-50%)}.motile-input-wrapper:not(:has(.motile-input--underline)):has(.motile-input--with-left-icon):has(.motile-input:focus) .motile-input__label,.motile-input-wrapper:not(:has(.motile-input--underline)):has(.motile-input--with-left-icon):has(.motile-input:not(:placeholder-shown)) .motile-input__label{left:36px}.motile-input-wrapper:has(.motile-input--underline.motile-input--with-left-icon):has(.motile-input:focus) .motile-input__label,.motile-input-wrapper:has(.motile-input--underline.motile-input--with-left-icon):has(.motile-input:not(:placeholder-shown)) .motile-input__label{left:4px;top:14px;transform:translateY(-100%)}}.motile-textarea{width:100%;border:2px solid #e5e8eb;border-radius:12px;padding:12px 16px;font-size:16px;font-weight:400;color:#111827;background:#fff;outline:none;transition:none;min-height:120px;line-height:1.6;box-sizing:border-box;font-family:inherit;resize:none}.motile-textarea:hover:not(:disabled):not(:focus):not(.motile-textarea--error){border-color:#c9cdd2}.motile-textarea:focus{border:2px solid var( --motile-textarea-color, var(--motile-ui-textarea, var(--motile-theme, #3182f6)) )}.motile-textarea:disabled{background:#f9fafb;color:#9ca3af;cursor:not-allowed;border-color:#e5e7eb;resize:none}.motile-textarea.motile-textarea--error{border:2px solid #ef4444;background:#fef5f5}.motile-textarea.motile-textarea--error:focus{border:2px solid #ef4444;background:#fef5f5}.motile-textarea--shake{animation:motile-textarea-shake .5s ease-in-out}@keyframes motile-textarea-shake{0%{transform:translate(0)}15%{transform:translate(-10px)}30%{transform:translate(8px)}45%{transform:translate(-6px)}60%{transform:translate(4px)}75%{transform:translate(-2px)}to{transform:translate(0)}}.motile-textarea::placeholder{color:#9ca3af;opacity:1}.motile-textarea-wrapper{position:relative;width:100%}.motile-textarea--with-clear{padding-right:40px}.motile-textarea--with-clear:focus{padding-right:40px}.motile-textarea__clear-button{position:absolute;right:12px;top:12px;display:flex;align-items:center;justify-content:center;width:20px;height:20px;padding:0;background:transparent;border:none;color:#9ca3af;cursor:pointer;border-radius:4px;transition:background-color .2s ease,color .2s ease}.motile-textarea__clear-button:hover{background:#f3f4f6;color:#6b7280}.motile-textarea__clear-icon{width:16px;height:16px}@media (max-width: 768px){.motile-textarea{font-size:16px;padding:12px;min-height:100px}.motile-textarea:focus{border:2px solid var( --motile-textarea-color, var(--motile-ui-textarea, var(--motile-theme, #3182f6)) )}.motile-textarea--with-clear{padding-right:36px}.motile-textarea--with-clear:focus{padding-right:36px}}@supports (-webkit-touch-callout: none){.motile-textarea{-webkit-tap-highlight-color:transparent}}.motile-textarea__helper-text{display:flex;align-items:flex-start;margin-top:4px;min-height:16px;gap:8px}.motile-textarea__helper-text--both{justify-content:space-between}.motile-textarea__helper-text--error-only{justify-content:flex-start}.motile-textarea__helper-text--counter-only{justify-content:flex-end}.motile-textarea__error-message{font-size:12px;color:#ef4444;line-height:16px;flex:1}.motile-textarea__counter{font-size:12px;color:#9ca3af;line-height:16px;white-space:nowrap;flex-shrink:0}.motile-textarea__label{position:absolute;left:16px;top:16px;font-size:16px;color:#9ca3af;pointer-events:none;transition:all .2s ease;background:transparent;padding:0;z-index:1}.motile-textarea--with-label::placeholder{opacity:0}.motile-textarea--with-label:focus::placeholder{opacity:1}.motile-textarea-wrapper:has(.motile-textarea:focus) .motile-textarea__label,.motile-textarea-wrapper:has(.motile-textarea:not(:placeholder-shown)) .motile-textarea__label{top:0;transform:translateY(-50%);font-size:12px;color:var( --motile-textarea-color, var(--motile-ui-textarea, var(--motile-theme, #3182f6)) );background:#fff;padding:0 4px}.motile-textarea-wrapper:has(.motile-textarea:focus) .motile-textarea__label--error,.motile-textarea-wrapper:has(.motile-textarea:not(:placeholder-shown)) .motile-textarea__label--error{color:#ef4444}.motile-textarea.motile-textarea--with-label{padding-top:12px;padding-bottom:12px}@media (max-width: 768px){.motile-textarea__label{font-size:16px;left:12px;top:16px}.motile-textarea-wrapper:has(.motile-textarea:focus) .motile-textarea__label,.motile-textarea-wrapper:has(.motile-textarea:not(:placeholder-shown)) .motile-textarea__label{font-size:12px}}.motile-checkbox-container{display:inline-flex;flex-direction:column;gap:4px}.motile-checkbox-wrapper{display:flex;align-items:center;gap:8px;cursor:pointer;position:relative;-webkit-user-select:none;user-select:none}.motile-checkbox-container--disabled .motile-checkbox-wrapper{cursor:not-allowed;opacity:.6}.motile-checkbox{position:absolute;opacity:0;width:0;height:0;margin:0;pointer-events:none}.motile-checkbox:focus{outline:none}.motile-checkbox__mark{position:relative;width:20px;height:20px;min-width:20px;min-height:20px;border:2px solid #d1d5db;border-radius:4px;background-color:#fff;transition:all .2s cubic-bezier(.4,0,.2,1);display:flex;align-items:center;justify-content:center;flex-shrink:0;box-sizing:border-box}.motile-checkbox--rounded+.motile-checkbox__mark{border-radius:50%}.motile-checkbox--square+.motile-checkbox__mark{border-radius:0}.motile-checkbox--large+.motile-checkbox__mark{width:24px;height:24px;min-width:24px;min-height:24px}.motile-checkbox--large+.motile-checkbox__mark .motile-checkbox__check-icon{width:14px;height:14px}.motile-checkbox--medium+.motile-checkbox__mark{width:20px;height:20px;min-width:20px;min-height:20px}.motile-checkbox--medium+.motile-checkbox__mark .motile-checkbox__check-icon{width:12px;height:12px}.motile-checkbox--small+.motile-checkbox__mark{width:16px;height:16px;min-width:16px;min-height:16px}.motile-checkbox--small+.motile-checkbox__mark .motile-checkbox__check-icon{width:10px;height:10px}.motile-checkbox__check-icon{width:12px;height:12px;color:#fff;flex-shrink:0;opacity:0;transform:scale(.8);transition:all .2s cubic-bezier(.4,0,.2,1)}.motile-checkbox__check-icon path{stroke-dasharray:16;stroke-dashoffset:16;transition:stroke-dashoffset .3s cubic-bezier(.65,0,.35,1) .05s}.motile-checkbox--filled+.motile-checkbox__mark{background-color:#e5e7eb;border-color:#e5e7eb}.motile-checkbox--filled+.motile-checkbox__mark .motile-checkbox__check-icon{opacity:1;transform:scale(1)}.motile-checkbox--filled+.motile-checkbox__mark .motile-checkbox__check-icon path{stroke-dashoffset:0}.motile-checkbox:checked+.motile-checkbox__mark{background-color:var( --motile-checkbox-color, var(--motile-ui-checkbox, var(--motile-theme, #3b82f6)) );border-color:var( --motile-checkbox-color, var(--motile-ui-checkbox, var(--motile-theme, #3b82f6)) );animation:checkboxBounce .4s cubic-bezier(.68,-.55,.265,1.55)}.motile-checkbox:checked+.motile-checkbox__mark .motile-checkbox__check-icon{opacity:1;transform:scale(1)}.motile-checkbox:checked+.motile-checkbox__mark .motile-checkbox__check-icon path{stroke-dashoffset:0}.motile-checkbox--filled:checked+.motile-checkbox__mark{background-color:var( --motile-checkbox-color, var(--motile-ui-checkbox, var(--motile-theme, #3b82f6)) );border-color:var( --motile-checkbox-color, var(--motile-ui-checkbox, var(--motile-theme, #3b82f6)) )}@keyframes checkboxBounce{0%{transform:scale(1)}50%{transform:scale(1.15)}to{transform:scale(1)}}.motile-checkbox-container:not(.motile-checkbox-container--filled) .motile-checkbox-wrapper:hover .motile-checkbox__mark{border-color:var( --motile-checkbox-color, var(--motile-ui-checkbox, var(--motile-theme, #3b82f6)) )}.motile-checkbox-container:not(.motile-checkbox-container--filled) .motile-checkbox:checked+.motile-checkbox__mark:hover{background-color:color-mix(in srgb,var( --motile-checkbox-color, var(--motile-ui-checkbox, var(--motile-theme, #3b82f6)) ) 90%,black);border-color:color-mix(in srgb,var( --motile-checkbox-color, var(--motile-ui-checkbox, var(--motile-theme, #3b82f6)) ) 90%,black)}.motile-checkbox:disabled+.motile-checkbox__mark{background-color:#f3f4f6;border-color:#d1d5db;cursor:not-allowed}.motile-checkbox:disabled:checked+.motile-checkbox__mark{background-color:#d1d5db;border-color:#d1d5db}.motile-checkbox__label{font-size:14px;color:#374151;cursor:pointer;margin:0;padding:0}.motile-checkbox-container--large .motile-checkbox__label{font-size:16px}.motile-checkbox-container--medium .motile-checkbox__label{font-size:14px}.motile-checkbox-container--small .motile-checkbox__label{font-size:12px}.motile-checkbox__label--disabled{color:#9ca3af;cursor:not-allowed}.motile-switch-container{display:inline-flex;flex-direction:column;gap:4px}.motile-switch-wrapper{display:flex;align-items:center;gap:8px;cursor:pointer;position:relative;-webkit-user-select:none;user-select:none}.motile-switch-container--disabled .motile-switch-wrapper{cursor:not-allowed;opacity:.6}.motile-switch{position:absolute;opacity:0;width:0;height:0;margin:0;pointer-events:none}.motile-switch:focus{outline:none}.motile-switch__track{position:relative;width:44px;height:24px;background-color:#e5e7eb;border-radius:24px;transition:background-color .2s cubic-bezier(.4,0,.2,1);display:flex;align-items:center;flex-shrink:0;box-sizing:border-box}.motile-switch__thumb{position:absolute;width:18px;height:18px;background-color:#fff;border-radius:50%;left:3px;transition:transform .2s cubic-bezier(.4,0,.2,1);box-shadow:0 2px 4px #0000001a}.motile-switch:checked+.motile-switch__track{background-color:var( --motile-switch-color, var(--motile-ui-switch, var(--motile-theme, #3b82f6)) )}.motile-switch:checked+.motile-switch__track .motile-switch__thumb{transform:translate(20px)}.motile-switch:not(:checked)+.motile-switch__track:hover{background-color:#d1d5db}.motile-switch:checked+.motile-switch__track:hover{background-color:color-mix(in srgb,var( --motile-switch-color, var(--motile-ui-switch, var(--motile-theme, #3b82f6)) ) 90%,black)}.motile-switch:disabled+.motile-switch__track{background-color:#f3f4f6;cursor:not-allowed}.motile-switch:disabled:checked+.motile-switch__track{background-color:#d1d5db}.motile-switch:disabled+.motile-switch__track .motile-switch__thumb{box-shadow:none}.motile-switch--elastic+.motile-switch__track .motile-switch__thumb{transition:none;will-change:transform}.motile-switch--elastic:checked+.motile-switch__track .motile-switch__thumb{animation:switch-slide-on .35s cubic-bezier(.25,.1,.25,1);transform:translate(20px);transform-origin:left center}.motile-switch--elastic:not(:checked)+.motile-switch__track .motile-switch__thumb{animation:switch-slide-off .35s cubic-bezier(.25,.1,.25,1);transform:translate(0);transform-origin:right center}@keyframes switch-slide-on{0%{transform:translate(0) scaleX(1)}10%{transform:translate(.5px) scaleX(1.05)}25%{transform:translate(3px) scaleX(1.25)}45%{transform:translate(8px) scaleX(1.4)}65%{transform:translate(14px) scaleX(1.3)}85%{transform:translate(18.5px) scaleX(1.08)}95%{transform:translate(19.8px) scaleX(1.02)}to{transform:translate(20px) scaleX(1)}}@keyframes switch-slide-off{0%{transform:translate(20px) scaleX(1)}10%{transform:translate(19.5px) scaleX(1.05)}25%{transform:translate(17px) scaleX(1.25)}45%{transform:translate(12px) scaleX(1.4)}65%{transform:translate(6px) scaleX(1.3)}85%{transform:translate(1.5px) scaleX(1.08)}95%{transform:translate(.2px) scaleX(1.02)}to{transform:translate(0) scaleX(1)}}.motile-switch--bounce+.motile-switch__track .motile-switch__thumb{transition:none;will-change:transform}.motile-switch--bounce:checked+.motile-switch__track .motile-switch__thumb{animation:switch-bounce-on .65s cubic-bezier(.68,-.55,.27,1.55);transform:translate(20px)}.motile-switch--bounce:not(:checked)+.motile-switch__track .motile-switch__thumb{animation:switch-bounce-off .65s cubic-bezier(.68,-.55,.27,1.55);transform:translate(0)}@keyframes switch-bounce-on{0%{transform:translate(0)}60%{transform:translate(23px)}80%{transform:translate(18px)}95%{transform:translate(20.5px)}to{transform:translate(20px)}}@keyframes switch-bounce-off{0%{transform:translate(20px)}60%{transform:translate(-3px)}80%{transform:translate(2px)}95%{transform:translate(-.5px)}to{transform:translate(0)}}.motile-accordion{overflow:hidden}.motile-accordion__header{width:100%;border:none;cursor:pointer;display:flex;align-items:center;justify-content:space-between;gap:12px;transition:background-color .2s ease;text-align:left;-webkit-tap-highlight-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none;outline:none;-webkit-user-select:none;user-select:none;padding:16px 20px;color:#111827;background-color:transparent;font-size:16px;font-weight:400;-webkit-text-size-adjust:100%}.motile-accordion__header:focus-visible{outline:2px solid #3b82f6;outline-offset:-2px}@media (hover: hover) and (pointer: fine){.motile-accordion__header:not(:disabled):hover{background-color:#f9fafb}}@media (hover: none) and (pointer: coarse){.motile-accordion__header:not(:disabled):active{background-color:#f3f4f6}}.motile-accordion__title{flex:1;min-width:0;text-align:left;font-size:16px;font-weight:400;color:#111827}.motile-accordion__chevron{flex-shrink:0;transition:transform .2s cubic-bezier(.4,0,.2,1);width:20px;height:20px;color:#9ca3af}.motile-accordion--expanded .motile-accordion__chevron,.motile-accordion[data-state=open] .motile-accordion__chevron{transform:rotate(180deg)}.motile-accordion__panel{overflow:hidden;height:0;transition:height .25s cubic-bezier(.4,0,.2,1)}.motile-accordion__content{line-height:1.6;opacity:0;transform:translateY(-8px);transition:opacity .25s cubic-bezier(.4,0,.2,1),transform .25s cubic-bezier(.4,0,.2,1);padding:14px 20px 20px;color:#374151;font-size:14px}.motile-accordion--expanded .motile-accordion__content,.motile-accordion[data-state=open] .motile-accordion__content{opacity:1;transform:translateY(0)}.motile-accordion--disabled,.motile-accordion[data-disabled]{cursor:not-allowed;opacity:.6}.motile-accordion--disabled .motile-accordion__header,.motile-accordion[data-disabled] .motile-accordion__header{cursor:not-allowed}.motile-accordion--outlined{border:1.5px solid #e5e7eb;border-radius:12px}.motile-accordion--outlined.motile-accordion--expanded .motile-accordion__header,.motile-accordion--outlined[data-state=open] .motile-accordion__header{border-bottom:1px solid #e5e7eb}@media (max-width: 768px){.motile-accordion__header{padding:16px 18px;font-size:16px;-webkit-text-size-adjust:100%}.motile-accordion__content{padding:14px 18px 18px;font-size:15px;-webkit-text-size-adjust:100%}.motile-accordion__title{font-size:16px}.motile-accordion__chevron{width:20px;height:20px}}@media (prefers-reduced-motion: reduce){.motile-accordion__panel,.motile-accordion__content,.motile-accordion__chevron{transition:none!important}}.motile-skeleton{display:inline-block;position:relative;overflow:hidden;background-color:#e5e7eb}.motile-skeleton:after{content:"";position:absolute;top:0;left:0;right:0;bottom:0;background:linear-gradient(90deg,#fff0,#fff6,#fff0);transform:translate(-100%);animation:motile-skeleton-shimmer 1.5s ease-in-out infinite}@keyframes motile-skeleton-shimmer{0%{transform:translate(-100%)}to{transform:translate(100%)}}@media (prefers-reduced-motion: reduce){.motile-skeleton:after{animation:none;display:none}}@media (prefers-color-scheme: dark){.motile-skeleton{background-color:#374151}.motile-skeleton:after{background:linear-gradient(90deg,#fff0,#ffffff1a,#fff0)}}.motile-badge{display:inline-flex;align-items:center;justify-content:center;font-weight:500;line-height:1.2;border-radius:9999px;white-space:nowrap;vertical-align:middle;background-color:var( --motile-badge-color, var(--motile-ui-badge, var(--motile-theme, #3b82f6)) );color:#fff}.motile-badge--large{padding:6px 16px;font-size:1rem;min-height:32px}.motile-badge--medium{padding:5px 12px;font-size:.875rem;min-height:26px}.motile-badge--small{padding:4px 8px;font-size:.75rem;min-height:24px}.motile-badge--primary{background-color:var( --motile-badge-color, var(--motile-ui-badge, var(--motile-theme, #3b82f6)) );color:#fff}.motile-badge--secondary{background:color-mix(in srgb,var(--motile-badge-color, var(--motile-ui-badge, var(--motile-theme, #3b82f6))) 10%,transparent);color:var( --motile-badge-color, var(--motile-ui-badge, var(--motile-theme, #3b82f6)) );border:1px solid var(--motile-badge-color, var(--motile-ui-badge, var(--motile-theme, #3b82f6)))}.motile-badge--secondary.motile-badge--large{padding:5px 15px;min-height:30px}.motile-badge--secondary.motile-badge--medium{padding:4px 11px;min-height:24px}.motile-badge--secondary.motile-badge--small{padding:3px 7px;min-height:22px}.motile-badge--outlined{background-color:#fff;color:var( --motile-badge-color, var(--motile-ui-badge, var(--motile-theme, #3b82f6)) );border:1px solid var(--motile-badge-color, var(--motile-ui-badge, var(--motile-theme, #3b82f6)))}.motile-badge--outlined.motile-badge--large{padding:5px 15px;min-height:30px}.motile-badge--outlined.motile-badge--medium{padding:4px 11px;min-height:24px}.motile-badge--outlined.motile-badge--small{padding:3px 7px;min-height:22px}.motile-badge--dot{background-color:transparent;padding:0;gap:6px;color:inherit}.motile-badge__dot{display:inline-block;border-radius:50%;background-color:var( --motile-badge-color, var(--motile-ui-badge, var(--motile-theme, #3b82f6)) )}.motile-badge__text{line-height:1.2}.motile-badge--dot.motile-badge--large .motile-badge__dot{width:12px;height:12px}.motile-badge--dot.motile-badge--medium .motile-badge__dot{width:10px;height:10px}.motile-badge--dot.motile-badge--small .motile-badge__dot{width:8px;height:8px}.motile-badge--shimmer{background-color:var( --motile-badge-color, var(--motile-ui-badge, var(--motile-theme, #3b82f6)) );color:#fff;position:relative;overflow:hidden}.motile-badge--shimmer:before{content:"";position:absolute;top:0;left:-100%;width:100%;height:100%;background:linear-gradient(90deg,transparent 0%,rgba(255,255,255,.3) 50%,transparent 100%);animation:shimmer 2s infinite}@keyframes shimmer{0%{transform:translate(0)}to{transform:translate(200%)}}@media (prefers-reduced-motion: reduce){.motile-badge--shimmer:before{animation:none}}@media (max-width: 768px){.motile-badge:active{filter:brightness(.92)}}@supports (-webkit-touch-callout: none){.motile-badge{-webkit-tap-highlight-color:transparent;-webkit-user-select:none;user-select:none}}.motile-tooltip-trigger{position:relative;display:inline-block;line-height:normal;vertical-align:middle}.motile-tooltip-bubble{position:fixed;z-index:2147483647;padding:8px 12px;border-radius:8px;font-size:14px;font-weight:500;line-height:1.4;box-shadow:0 6px 20px #0003;opacity:0;pointer-events:none;transition:opacity .2s cubic-bezier(.16,1,.3,1),transform .2s cubic-bezier(.16,1,.3,1)}.motile-tooltip-bubble[data-placement=top]{transform:translateY(8px) scale(.96)}.motile-tooltip-bubble[data-placement=bottom]{transform:translateY(-8px) scale(.96)}.motile-tooltip-bubble[data-placement=left]{transform:translate(8px) scale(.96)}.motile-tooltip-bubble[data-placement=right]{transform:translate(-8px) scale(.96)}.motile-tooltip-bubble[data-open=true]{opacity:1;transform:translate(0) scale(1)}.motile-tooltip-bubble[data-keep-open]{pointer-events:auto}.motile-tooltip-bubble--default{--arrow-color: var( --motile-tooltip-color, var(--motile-ui-tooltip, rgba(0, 0, 0, .9)) );background:var(--arrow-color);color:#fff}.motile-tooltip-bubble--outlined{--arrow-color: var(--motile-tooltip-color, var(--motile-ui-tooltip, #3b82f6));background:#fff;color:var(--arrow-color);border:1px solid var(--arrow-color)}.motile-tooltip-bubble.measuring{visibility:hidden!important;opacity:1!important;max-width:none!important;max-height:none!important;left:0!important;top:0!important}.motile-tooltip-bubble[data-show-arrow]:before{content:"";position:absolute;width:0;height:0;border:6px solid transparent}.motile-tooltip-bubble--outlined[data-show-arrow]:after{content:"";position:absolute;width:0;height:0;border:5px solid transparent}.motile-tooltip-bubble[data-placement=top][data-show-arrow]:before{bottom:-5px;left:var(--arrow-left, 50%);transform:translate(-50%);border-bottom-width:0;border-top-color:var(--arrow-color)}.motile-tooltip-bubble--outlined[data-placement=top][data-show-arrow]:after{bottom:-4px;left:var(--arrow-left, 50%);transform:translate(-50%);border-bottom-width:0;border-top-color:#fff}.motile-tooltip-bubble[data-placement=bottom][data-show-arrow]:before{top:-5px;left:var(--arrow-left, 50%);transform:translate(-50%);border-top-width:0;border-bottom-color:var(--arrow-color)}.motile-tooltip-bubble--outlined[data-placement=bottom][data-show-arrow]:after{top:-4px;left:var(--arrow-left, 50%);transform:translate(-50%);border-top-width:0;border-bottom-color:#fff}.motile-tooltip-bubble[data-placement=left][data-show-arrow]:before{right:-5px;top:var(--arrow-top, 50%);transform:translateY(-50%);border-right-width:0;border-left-color:var(--arrow-color)}.motile-tooltip-bubble--outlined[data-placement=left][data-show-arrow]:after{right:-4px;top:var(--arrow-top, 50%);transform:translateY(-50%);border-right-width:0;border-left-color:#fff}.motile-tooltip-bubble[data-placement=right][data-show-arrow]:before{left:-5px;top:var(--arrow-top, 50%);transform:translateY(-50%);border-left-width:0;border-right-color:var(--arrow-color)}.motile-tooltip-bubble--outlined[data-placement=right][data-show-arrow]:after{left:-4px;top:var(--arrow-top, 50%);transform:translateY(-50%);border-left-width:0;border-right-color:#fff}.motile-popover-wrapper{position:relative}.motile-popover-content{position:absolute;z-index:10;border-radius:12px;font-size:14px;line-height:1.5;box-shadow:0 4px 12px #0000001a;pointer-events:auto;width:max-content;max-width:min(90vw,420px);box-sizing:border-box;overflow:visible;opacity:0;visibility:hidden;will-change:transform;backface-visibility:hidden;perspective:1000px}.motile-popover-content--default{background:var(--motile-popover-color, var(--motile-ui-popover, #3b82f6));color:#fff;border:1px solid var(--motile-popover-color, var(--motile-ui-popover, #3b82f6))}.motile-popover-content--outlined{background:#fff;color:#111827;border:1px solid var(--motile-popover-color, var(--motile-ui-popover, #e5e7eb))}.motile-popover-content[data-positioned=true]{opacity:1;visibility:visible}.motile-popover-content[data-placement=top][data-align=center],.motile-popover-content[data-placement=bottom][data-align=center]{transform:translate3d(-50%,0,0)}.motile-popover-content[data-placement=left][data-align=center],.motile-popover-content[data-placement=right][data-align=center]{transform:translate3d(0,-50%,0)}.motile-popover-content[data-placement=top][data-align=center][data-positioned=true][data-bounce=false]{animation:popover-fade-in-top-center .2s ease-out}.motile-popover-content[data-placement=top][data-align=start][data-positioned=true][data-bounce=false]{animation:popover-fade-in-top-start .2s ease-out}.motile-popover-content[data-placement=top][data-align=end][data-positioned=true][data-bounce=false]{animation:popover-fade-in-top-end .2s ease-out}@keyframes popover-fade-in-top-center{0%{opacity:0;transform:translate3d(-50%,8px,0)}to{opacity:1;transform:translate3d(-50%,0,0)}}@keyframes popover-fade-in-top-start{0%{opacity:0;transform:translate3d(0,8px,0)}to{opacity:1;transform:translateZ(0)}}@keyframes popover-fade-in-top-end{0%{opacity:0;transform:translate3d(0,8px,0)}to{opacity:1;transform:translateZ(0)}}.motile-popover-content[data-placement=top][data-align=center][data-positioned=true][data-bounce=true]{animation:popover-bounce-top-center .7s ease-out;animation-iteration-count:var(--bounce-count, 1)}.motile-popover-content[data-placement=top][data-align=start][data-positioned=true][data-bounce=true]{animation:popover-bounce-top-start .7s ease-out;animation-iteration-count:var(--bounce-count, 1)}.motile-popover-content[data-placement=top][data-align=end][data-positioned=true][data-bounce=true]{animation:popover-bounce-top-end .7s ease-out;animation-iteration-count:var(--bounce-count, 1)}@keyframes popover-bounce-top-center{0%{transform:translate3d(-50%,0,0)}30%{transform:translate3d(-50%,-10px,0)}50%{transform:translate3d(-50%,0,0)}65%{transform:translate3d(-50%,-3px,0)}80%{transform:translate3d(-50%,0,0)}to{transform:translate3d(-50%,0,0)}}@keyframes popover-bounce-top-start{0%{transform:translateZ(0)}30%{transform:translate3d(0,-10px,0)}50%{transform:translateZ(0)}65%{transform:translate3d(0,-3px,0)}80%{transform:translateZ(0)}to{transform:translateZ(0)}}@keyframes popover-bounce-top-end{0%{transform:translateZ(0)}30%{transform:translate3d(0,-10px,0)}50%{transform:translateZ(0)}65%{transform:translate3d(0,-3px,0)}80%{transform:translateZ(0)}to{transform:translateZ(0)}}.motile-popover-content[data-placement=bottom][data-align=center][data-positioned=true][data-bounce=false]{animation:popover-fade-in-bottom-center .2s ease-out}.motile-popover-content[data-placement=bottom][data-align=start][data-positioned=true][data-bounce=false]{animation:popover-fade-in-bottom-start .2s ease-out}.motile-popover-content[data-placement=bottom][data-align=end][data-positioned=true][data-bounce=false]{animation:popover-fade-in-bottom-end .2s ease-out}@keyframes popover-fade-in-bottom-center{0%{opacity:0;transform:translate3d(-50%,-8px,0)}to{opacity:1;transform:translate3d(-50%,0,0)}}@keyframes popover-fade-in-bottom-start{0%{opacity:0;transform:translate3d(0,-8px,0)}to{opacity:1;transform:translateZ(0)}}@keyframes popover-fade-in-bottom-end{0%{opacity:0;transform:translate3d(0,-8px,0)}to{opacity:1;transform:translateZ(0)}}.motile-popover-content[data-placement=bottom][data-align=center][data-positioned=true][data-bounce=true]{animation:popover-bounce-bottom-center .7s ease-out;animation-iteration-count:var(--bounce-count, 1)}.motile-popover-content[data-placement=bottom][data-align=start][data-positioned=true][data-bounce=true]{animation:popover-bounce-bottom-start .7s ease-out;animation-iteration-count:var(--bounce-count, 1)}.motile-popover-content[data-placement=bottom][data-align=end][data-positioned=true][data-bounce=true]{animation:popover-bounce-bottom-end .7s ease-out;animation-iteration-count:var(--bounce-count, 1)}@keyframes popover-bounce-bottom-center{0%{transform:translate3d(-50%,0,0)}30%{transform:translate3d(-50%,10px,0)}50%{transform:translate3d(-50%,0,0)}65%{transform:translate3d(-50%,3px,0)}80%{transform:translate3d(-50%,0,0)}to{transform:translate3d(-50%,0,0)}}@keyframes popover-bounce-bottom-start{0%{transform:translateZ(0)}30%{transform:translate3d(0,10px,0)}50%{transform:translateZ(0)}65%{transform:translate3d(0,3px,0)}80%{transform:translateZ(0)}to{transform:translateZ(0)}}@keyframes popover-bounce-bottom-end{0%{transform:translateZ(0)}30%{transform:translate3d(0,10px,0)}50%{transform:translateZ(0)}65%{transform:translate3d(0,3px,0)}80%{transform:translateZ(0)}to{transform:translateZ(0)}}.motile-popover-content[data-placement=left][data-align=center][data-positioned=true][data-bounce=false]{animation:popover-fade-in-left-center .2s ease-out}.motile-popover-content[data-placement=left][data-align=start][data-positioned=true][data-bounce=false]{animation:popover-fade-in-left-start .2s ease-out}.motile-popover-content[data-placement=left][data-align=end][data-positioned=true][data-bounce=false]{animation:popover-fade-in-left-end .2s ease-out}@keyframes popover-fade-in-left-center{0%{opacity:0;transform:translate3d(8px,-50%,0)}to{opacity:1;transform:translate3d(0,-50%,0)}}@keyframes popover-fade-in-left-start{0%{opacity:0;transform:translate3d(8px,0,0)}to{opacity:1;transform:translateZ(0)}}@keyframes popover-fade-in-left-end{0%{opacity:0;transform:translate3d(8px,0,0)}to{opacity:1;transform:translateZ(0)}}.motile-popover-content[data-placement=left][data-align=center][data-positioned=true][data-bounce=true]{animation:popover-bounce-left-center .7s ease-out;animation-iteration-count:var(--bounce-count, 1)}.motile-popover-content[data-placement=left][data-align=start][data-positioned=true][data-bounce=true]{animation:popover-bounce-left-start .7s ease-out;animation-iteration-count:var(--bounce-count, 1)}.motile-popover-content[data-placement=left][data-align=end][data-positioned=true][data-bounce=true]{animation:popover-bounce-left-end .7s ease-out;animation-iteration-count:var(--bounce-count, 1)}@keyframes popover-bounce-left-center{0%{transform:translate3d(0,-50%,0)}30%{transform:translate3d(-10px,-50%,0)}50%{transform:translate3d(0,-50%,0)}65%{transform:translate3d(-3px,-50%,0)}80%{transform:translate3d(0,-50%,0)}to{transform:translate3d(0,-50%,0)}}@keyframes popover-bounce-left-start{0%{transform:translateZ(0)}30%{transform:translate3d(-10px,0,0)}50%{transform:translateZ(0)}65%{transform:translate3d(-3px,0,0)}80%{transform:translateZ(0)}to{transform:translateZ(0)}}@keyframes popover-bounce-left-end{0%{transform:translateZ(0)}30%{transform:translate3d(-10px,0,0)}50%{transform:translateZ(0)}65%{transform:translate3d(-3px,0,0)}80%{transform:translateZ(0)}to{transform:translateZ(0)}}.motile-popover-content[data-placement=right][data-align=center][data-positioned=true][data-bounce=false]{animation:popover-fade-in-right-center .2s ease-out}.motile-popover-content[data-placement=right][data-align=start][data-positioned=true][data-bounce=false]{animation:popover-fade-in-right-start .2s ease-out}.motile-popover-content[data-placement=right][data-align=end][data-positioned=true][data-bounce=false]{animation:popover-fade-in-right-end .2s ease-out}@keyframes popover-fade-in-right-center{0%{opacity:0;transform:translate3d(-8px,-50%,0)}to{opacity:1;transform:translate3d(0,-50%,0)}}@keyframes popover-fade-in-right-start{0%{opacity:0;transform:translate3d(-8px,0,0)}to{opacity:1;transform:translateZ(0)}}@keyframes popover-fade-in-right-end{0%{opacity:0;transform:translate3d(-8px,0,0)}to{opacity:1;transform:translateZ(0)}}.motile-popover-content[data-placement=right][data-align=center][data-positioned=true][data-bounce=true]{animation:popover-bounce-right-center .7s ease-out;animation-iteration-count:var(--bounce-count, 1)}.motile-popover-content[data-placement=right][data-align=start][data-positioned=true][data-bounce=true]{animation:popover-bounce-right-start .7s ease-out;animation-iteration-count:var(--bounce-count, 1)}.motile-popover-content[data-placement=right][data-align=end][data-positioned=true][data-bounce=true]{animation:popover-bounce-right-end .7s ease-out;animation-iteration-count:var(--bounce-count, 1)}@keyframes popover-bounce-right-center{0%{transform:translate3d(0,-50%,0)}30%{transform:translate3d(10px,-50%,0)}50%{transform:translate3d(0,-50%,0)}65%{transform:translate3d(3px,-50%,0)}80%{transform:translate3d(0,-50%,0)}to{transform:translate3d(0,-50%,0)}}@keyframes popover-bounce-right-start{0%{transform:translateZ(0)}30%{transform:translate3d(10px,0,0)}50%{transform:translateZ(0)}65%{transform:translate3d(3px,0,0)}80%{transform:translateZ(0)}to{transform:translateZ(0)}}@keyframes popover-bounce-right-end{0%{transform:translateZ(0)}30%{transform:translate3d(10px,0,0)}50%{transform:translateZ(0)}65%{transform:translate3d(3px,0,0)}80%{transform:translateZ(0)}to{transform:translateZ(0)}}.motile-popover-arrow{position:absolute;width:12px;height:12px;transform:rotate(45deg)}.motile-popover-content--default .motile-popover-arrow{background:var(--motile-popover-color, var(--motile-ui-popover, #3b82f6));border:1px solid var(--motile-popover-color, var(--motile-ui-popover, #3b82f6))}.motile-popover-content--outlined .motile-popover-arrow{background:#fff;border:1px solid var(--motile-popover-color, var(--motile-ui-popover, #e5e7eb))}.motile-popover-arrow[data-placement=top]{bottom:-7px;border-top:none;border-left:none}.motile-popover-arrow[data-placement=top][data-align=start]{left:20px}.motile-popover-arrow[data-placement=top][data-align=center]{left:50%;transform:translate(-50%) rotate(45deg)}.motile-popover-arrow[data-placement=top][data-align=end]{right:20px}.motile-popover-arrow[data-placement=bottom]{top:-7px;border-bottom:none;border-right:none}.motile-popover-arrow[data-placement=bottom][data-align=start]{left:20px}.motile-popover-arrow[data-placement=bottom][data-align=center]{left:50%;transform:translate(-50%) rotate(45deg)}.motile-popover-arrow[data-placement=bottom][data-align=end]{right:20px}.motile-popover-arrow[data-placement=left]{right:-7px;border-left:none;border-bottom:none}.motile-popover-arrow[data-placement=left][data-align=start]{top:20px}.motile-popover-arrow[data-placement=left][data-align=center]{top:50%;transform:translateY(-50%) rotate(45deg)}.motile-popover-arrow[data-placement=left][data-align=end]{bottom:20px}.motile-popover-arrow[data-placement=right]{left:-7px;border-right:none;border-top:none}.motile-popover-arrow[data-placement=right][data-align=start]{top:20px}.motile-popover-arrow[data-placement=right][data-align=center]{top:50%;transform:translateY(-50%) rotate(45deg)}.motile-popover-arrow[data-placement=right][data-align=end]{bottom:20px}.motile-drawer__overlay{position:fixed;top:0;right:0;bottom:0;left:0;background-color:#0000;transition:background-color .3s ease;overscroll-behavior:contain;touch-action:pan-y}.motile-drawer__overlay--visible{background-color:#0006}.motile-drawer__content{position:fixed;bottom:0;left:0;right:0;margin:0 auto;transform:translateY(100%);width:100%;max-width:var(--drawer-max-width, var(--drawer-width, 480px));height:auto;max-height:var(--drawer-max-height, 70dvh);background-color:#fff;border-radius:20px 20px 0 0;box-shadow:0 -8px 30px #00000026;display:flex;flex-direction:column;transition:transform .3s ease;will-change:transform;overscroll-behavior:contain;box-sizing:border-box}.motile-drawer__content--visible{transform:translateY(0)}@media (max-width: 768px){.motile-drawer__overlay{top:0;left:0;right:0;bottom:0;width:100%;height:100%}.motile-drawer__content{left:0;right:0;margin:0;width:100%;max-width:none;border-radius:20px 20px 0 0}}.motile-drawer__header{height:48px;display:flex;align-items:center;justify-content:center;flex-shrink:0;cursor:grab;user-select:none;-webkit-user-select:none}.motile-drawer__header:active{cursor:grabbing}.motile-drawer__handle{width:40px;height:6px;background-color:#d1d5db;border-radius:3px;transition:background-color .2s ease}.motile-drawer__header:hover .motile-drawer__handle{background-color:#9ca3af}.motile-drawer__header:active .motile-drawer__handle{background-color:#6b7280}.motile-drawer__title-wrapper{padding:0 24px 16px;flex-shrink:0;border-bottom:1px solid #e5e7eb;width:100%;box-sizing:border-box}.motile-drawer__title{margin:0;font-size:16px;font-weight:600;color:#111827;line-height:1.4}@media (max-width: 768px){.motile-drawer__title{font-size:15px}}.motile-drawer__body{flex:1 1 auto;min-height:0;overflow-y:auto;overflow-x:hidden;padding:20px 24px;-webkit-overflow-scrolling:touch;overscroll-behavior:contain;width:100%;box-sizing:border-box}.motile-drawer__body::-webkit-scrollbar{width:6px}.motile-drawer__body::-webkit-scrollbar-track{background:transparent}.motile-drawer__body::-webkit-scrollbar-thumb{background-color:#0003;border-radius:3px}.motile-drawer__body::-webkit-scrollbar-thumb:hover{background-color:#0000004d}@media (prefers-color-scheme: dark){.motile-drawer__content{background-color:#1f2937;box-shadow:0 -8px 30px #00000080}.motile-drawer__title{color:#f9fafb}.motile-drawer__title-wrapper{border-bottom-color:#374151}.motile-drawer__handle{background-color:#4b5563}.motile-drawer__header:hover .motile-drawer__handle{background-color:#6b7280}.motile-drawer__header:active .motile-drawer__handle{background-color:#9ca3af}.motile-drawer__body::-webkit-scrollbar-thumb{background-color:#fff3}.motile-drawer__body::-webkit-scrollbar-thumb:hover{background-color:#ffffff4d}}@media (prefers-reduced-motion: reduce){.motile-drawer__content,.motile-drawer__overlay{transition:none}}@media (hover: none) and (pointer: coarse){.motile-drawer__header{height:56px}.motile-drawer__handle{width:48px;height:7px}}.motile-sheet__overlay{position:fixed;top:0;right:0;bottom:0;left:0;background-color:#0000;transition:background-color .3s ease;overscroll-behavior:contain;display:flex}.motile-sheet__overlay--left{justify-content:flex-start}.motile-sheet__overlay--right{justify-content:flex-end}.motile-sheet__overlay--visible{background-color:#0006}.motile-sheet__content{position:fixed;top:0;bottom:0;margin:0;width:100%;max-width:var(--sheet-max-width, 600px);height:100vh;height:100dvh;background-color:#fff;box-shadow:0 0 30px #00000026;display:flex;flex-direction:column;transition:transform .3s ease;will-change:transform;overscroll-behavior:contain;box-sizing:border-box}.motile-sheet__content--left{left:0;border-right:1px solid #e5e7eb;transform:translate(-100%)}.motile-sheet__content--left.motile-sheet__content--visible{transform:translate(0)}.motile-sheet__content--right{right:0;border-left:1px solid #e5e7eb;transform:translate(100%)}.motile-sheet__content--right.motile-sheet__content--visible{transform:translate(0)}@media (max-width: 768px){.motile-sheet__content{max-width:none;width:100%}}.motile-sheet__header{height:56px;display:flex;align-items:center;padding:0 20px;flex-shrink:0;border-bottom:1px solid #e5e7eb;background-color:#fff;user-select:none;-webkit-user-select:none}.motile-sheet__header button{color:inherit}@media (min-width: 769px){.motile-sheet__header{height:64px;padding:0 24px}}.motile-sheet__back-button{display:flex;align-items:center;gap:12px;background:none;border:none;padding:8px 12px 8px 4px;margin-left:-4px;cursor:pointer;border-radius:8px;color:#111827;transition:all .2s ease;font-size:16px;font-weight:600}.motile-sheet__back-button:hover{background-color:#f3f4f6}.motile-sheet__back-button:active{transform:scale(.98)}.motile-sheet__chevron{width:24px;height:24px;flex-shrink:0}.motile-sheet__title{margin:0;font-size:18px;font-weight:600;color:#111827;line-height:1.4}@media (max-width: 768px){.motile-sheet__title{font-size:16px}}.motile-sheet__body{flex:1 1 auto;min-height:0;overflow-y:auto;overflow-x:hidden;padding:20px;-webkit-overflow-scrolling:touch;overscroll-behavior:contain;width:100%;box-sizing:border-box;background-color:#fff}@media (min-width: 769px){.motile-sheet__body{padding:20px 24px}}.motile-sheet__body::-webkit-scrollbar{width:6px}.motile-sheet__body::-webkit-scrollbar-track{background:transparent}.motile-sheet__body::-webkit-scrollbar-thumb{background-color:#0003;border-radius:3px}.motile-sheet__body::-webkit-scrollbar-thumb:hover{background-color:#0000004d}@media (prefers-color-scheme: dark){.motile-sheet__content{background-color:#1f2937;box-shadow:0 0 30px #00000080}.motile-sheet__content--left{border-right-color:#374151}.motile-sheet__content--right{border-left-color:#374151}.motile-sheet__header{background-color:#1f2937;border-bottom-color:#374151}.motile-sheet__back-button{color:#f9fafb}.motile-sheet__back-button:hover{background-color:#374151}.motile-sheet__title{color:#f9fafb}.motile-sheet__body{background-color:#1f2937}.motile-sheet__body::-webkit-scrollbar-thumb{background-color:#fff3}.motile-sheet__body::-webkit-scrollbar-thumb:hover{background-color:#ffffff4d}}@media (prefers-reduced-motion: reduce){.motile-sheet__content,.motile-sheet__overlay{transition:none}}@media (hover: none) and (pointer: coarse){.motile-sheet__header{height:60px}.motile-sheet__chevron{width:26px;height:26px}}.motile-modal__backdrop{position:fixed;top:0;left:0;right:0;bottom:0;z-index:1000;display:flex;align-items:center;justify-content:center;background-color:#00000080;padding:0 16px;box-sizing:border-box;overscroll-behavior:contain}.motile-modal__backdrop[data-variant=scale]{animation:motile-modal-fade-in .2s ease-out}.motile-modal__backdrop[data-variant=slideDown],.motile-modal__backdrop[data-variant=slideUp]{animation:motile-modal-fade-in .3s ease-out}.motile-modal__backdrop[data-variant=bottomSheet]{animation:motile-modal-fade-in .3s ease-out;align-items:flex-end;padding:0}@media (min-width: 769px){.motile-modal__backdrop{padding:0 24px}}.motile-modal{position:relative;z-index:1001;width:var(--modal-width);max-width:var(--modal-max-width, 100%)}.motile-modal[data-variant=scale]{animation:motile-modal-scale-in .25s ease-out}.motile-modal[data-variant=slideDown]{animation:motile-modal-slide-down .55s cubic-bezier(.34,1.3,.64,1)}.motile-modal[data-variant=slideUp]{animation:motile-modal-slide-up .5s cubic-bezier(.34,1.3,.64,1)}.motile-modal[data-variant=bottomSheet]{animation:motile-modal-bottom-sheet .35s cubic-bezier(.32,.72,0,1);width:var(--modal-width, 100%);max-width:var(--modal-max-width, 100%)}@media (min-width: 769px){.motile-modal[data-variant=bottomSheet]{width:var(--modal-width, 100%);max-width:var(--modal-max-width, var(--modal-width, 480px))}}@media (max-width: 768px){.motile-modal[data-variant=bottomSheet]{width:100%;max-width:none}}.motile-modal__content{background-color:#fff;border-radius:12px;box-shadow:0 20px 25px -5px #0000001a,0 10px 10px -5px #0000000a;max-height:90vh;max-height:calc(90vh - env(safe-area-inset-top) - env(safe-area-inset-bottom));max-height:calc(90dvh - env(safe-area-inset-top) - env(safe-area-inset-bottom));display:flex;flex-direction:column;overflow:hidden;box-sizing:border-box}.motile-modal[data-variant=bottomSheet] .motile-modal__content{border-radius:20px 20px 0 0;max-height:90vh;max-height:calc(90vh - env(safe-area-inset-top));max-height:calc(90dvh - env(safe-area-inset-top));box-shadow:0 -10px 25px -5px #0000001a,0 -4px 10px -5px #0000000a}.motile-modal__header{display:flex;align-items:center;justify-content:space-between;padding:16px;border-bottom:1px solid #e5e7eb;flex-shrink:0}.motile-modal__title{font-size:1rem;font-weight:600;color:#111827;margin:0;line-height:1.4}.motile-modal__close{display:flex;align-items:center;justify-content:center;background:none;border:none;cursor:pointer;padding:8px;margin:-8px;border-radius:8px;color:#6b7280;transition:all .15s ease}.motile-modal__close:hover{background-color:#f3f4f6;color:#111827}.motile-modal__close:active{transform:scale(.95)}.motile-modal__close:focus-visible{outline:2px solid #3b82f6;outline-offset:2px}.motile-modal__body{padding:24px;overflow-y:auto;overflow-x:hidden;flex:1;min-height:0;color:#374151;line-height:1.6;-webkit-overflow-scrolling:touch;overscroll-behavior:contain}.motile-modal__body::-webkit-scrollbar{width:6px}.motile-modal__body::-webkit-scrollbar-track{background:transparent}.motile-modal__body::-webkit-scrollbar-thumb{background-color:#0003;border-radius:3px}.motile-modal__body::-webkit-scrollbar-thumb:hover{background-color:#0000004d}.motile-modal__footer{display:flex;align-items:center;justify-content:flex-end;gap:12px;padding:12px 16px;border-top:1px solid #e5e7eb;flex-shrink:0}@keyframes motile-modal-fade-in{0%{opacity:0}to{opacity:1}}@keyframes motile-modal-scale-in{0%{opacity:0;transform:scale(.95)}to{opacity:1;transform:scale(1)}}@keyframes motile-modal-slide-down{0%{opacity:0;transform:translateY(-100vh)}to{opacity:1;transform:translateY(0)}}@keyframes motile-modal-slide-up{0%{opacity:0;transform:translateY(100vh)}to{opacity:1;transform:translateY(0)}}@keyframes motile-modal-bottom-sheet{0%{opacity:0;transform:translateY(100%)}to{opacity:1;transform:translateY(0)}}@media (prefers-reduced-motion: reduce){.motile-modal__backdrop[data-variant=scale],.motile-modal__backdrop[data-variant=slideDown],.motile-modal__backdrop[data-variant=slideUp],.motile-modal__backdrop[data-variant=bottomSheet]{animation:none}.motile-modal[data-variant=scale],.motile-modal[data-variant=slideDown],.motile-modal[data-variant=slideUp],.motile-modal[data-variant=bottomSheet]{animation:none;opacity:1;transform:none}.motile-modal__close:active{transform:none}}@media (prefers-contrast: high){.motile-modal__content{border:2px solid #000000}.motile-modal__header{border-bottom-width:2px}.motile-modal__footer{border-top-width:2px}.motile-modal__title{font-weight:700}}@media (max-width: 768px){.motile-modal__content{border-radius:16px}.motile-modal__header,.motile-modal__body,.motile-modal__footer{padding:20px}.motile-modal__title{font-size:1.125rem}.motile-modal__close:active{background-color:#e5e7eb}}@media (max-width: 390px){.motile-modal__backdrop{padding:0 12px}.motile-modal__header,.motile-modal__body,.motile-modal__footer{padding:16px}.motile-modal__title{font-size:1rem}}@media (hover: none) and (pointer: coarse){.motile-modal__close{min-width:44px;min-height:44px;padding:10px}}@supports (-webkit-touch-callout: none){.motile-modal__close{-webkit-tap-highlight-color:transparent}.motile-modal__content{margin-bottom:env(safe-area-inset-bottom)}}@media (max-height: 600px) and (orientation: landscape){.motile-modal__content{max-height:85vh;max-height:85dvh;border-radius:8px}.motile-modal__header,.motile-modal__body,.motile-modal__footer{padding:16px 24px}.motile-modal__title{font-size:1rem}}@media (prefers-color-scheme: dark){.motile-modal__backdrop{background-color:#000000bf}.motile-modal__content{background-color:#1f2937;box-shadow:0 20px 25px -5px #00000080,0 10px 10px -5px #0000004d}.motile-modal__header{border-bottom-color:#374151}.motile-modal__title{color:#f9fafb}.motile-modal__close{color:#9ca3af}.motile-modal__close:hover{background-color:#374151;color:#f9fafb}.motile-modal__body{color:#e5e7eb}.motile-modal__footer{border-top-color:#374151}.motile-modal__body::-webkit-scrollbar-thumb{background-color:#fff3}.motile-modal__body::-webkit-scrollbar-thumb:hover{background-color:#ffffff4d}}.motile-toast-container{position:fixed;pointer-events:none;display:flex;flex-direction:column;gap:8px}.motile-toast-container{top:0;left:0;right:0;align-items:center;padding:calc(env(safe-area-inset-top,0px) + 16px) 16px 16px 16px}@media (min-width: 768px){.motile-toast-container{top:0;left:auto;right:0;align-items:flex-end;padding:16px;max-width:400px}}.motile-toast{pointer-events:auto;display:inline-flex;align-items:flex-start;width:calc(100vw - 32px);min-width:200px;padding:12px 16px;background:#000000d9;border-radius:8px;backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);box-shadow:0 2px 8px #00000026;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,sans-serif;-webkit-font-smoothing:antialiased;-webkit-user-select:none;user-select:none;-webkit-tap-highlight-color:transparent;will-change:transform,opacity;animation:slideDown .3s ease-out}@media (min-width: 768px){.motile-toast{width:auto;max-width:320px;animation:slideInRight .3s ease-out}}.motile-toast--exiting{animation:fadeOut .15s ease-out forwards}.motile-toast__icon{flex-shrink:0;width:18px;height:18px;display:flex;align-items:center;justify-content:center;color:#fff;margin-right:8px;margin-top:1px}.motile-toast--success .motile-toast__icon{color:#4ade80}.motile-toast--error .motile-toast__icon{color:#f87171}.motile-toast--warning .motile-toast__icon{color:#fbbf24}.motile-toast--info .motile-toast__icon{color:#60a5fa}.motile-toast__message{flex:1;min-width:0;font-size:14px;font-weight:500;line-height:1.4;color:#fff;word-wrap:break-word;word-break:break-word;overflow-wrap:break-word}@keyframes slideDown{0%{opacity:0;transform:translateY(-16px)}to{opacity:1;transform:translateY(0)}}@keyframes slideInRight{0%{opacity:0;transform:translate(16px)}to{opacity:1;transform:translate(0)}}@keyframes fadeOut{to{opacity:0;transform:scale(.95)}}@media (prefers-color-scheme: dark){.motile-toast{background:#fffffff2}.motile-toast__message,.motile-toast__icon{color:#18181b}.motile-toast--success .motile-toast__icon{color:#22c55e}.motile-toast--error .motile-toast__icon{color:#ef4444}.motile-toast--warning .motile-toast__icon{color:#f59e0b}.motile-toast--info .motile-toast__icon{color:#3b82f6}}@media (prefers-reduced-motion: reduce){.motile-toast{animation:none!important}}.motile-toast *{user-select:none;-webkit-user-select:none}.motile-dock{display:inline-flex;align-items:center;gap:12px;padding:8px 16px;background:#ffffff40;backdrop-filter:blur(20px) saturate(180%);-webkit-backdrop-filter:blur(20px) saturate(180%);border-radius:50px;border:1px solid rgba(255,255,255,.3);box-shadow:0 8px 32px #0000001a,0 2px 8px #0000000d,inset 0 0 0 1px #fff3;position:relative;-webkit-user-select:none;user-select:none;transition:all .3s cubic-bezier(.4,0,.2,1)}.motile-dock[data-position=top],.motile-dock[data-position=bottom]{flex-direction:row}.motile-dock[data-position=left],.motile-dock[data-position=right]{flex-direction:column}.motile-dock__item{position:relative;display:flex;align-items:center;justify-content:center;width:40px;height:40px;min-width:40px;min-height:40px;border:none;border-radius:10px;background:transparent;color:#374151;cursor:pointer;transition:background .2s ease;outline:none;will-change:transform;transform:translateZ(0)}.motile-dock[data-position=top] .motile-dock__item{transform-origin:center top}.motile-dock[data-position=bottom] .motile-dock__item{transform-origin:center bottom}.motile-dock[data-position=left] .motile-dock__item{transform-origin:left center}.motile-dock[data-position=right] .motile-dock__item{transform-origin:right center}.motile-dock__item:hover{background:#fff6}.motile-dock__item:active{background:#fff9;filter:brightness(.9)}.motile-dock__item:focus-visible{outline:2px solid rgba(100,116,139,.6);outline-offset:2px}.motile-dock__item>*{pointer-events:none}.motile-dock__separator{position:relative;flex-shrink:0}.motile-dock__separator[data-position=top],.motile-dock__separator[data-position=bottom]{width:1px;height:40px;margin:0 6px;background:linear-gradient(to bottom,#0000,#00000026 20%,#00000026 80%,#0000)}.motile-dock__separator[data-position=left],.motile-dock__separator[data-position=right]{height:1px;width:40px;margin:6px 0;background:linear-gradient(to right,#0000,#00000026 20%,#00000026 80%,#0000)}@media (prefers-color-scheme: dark){.motile-dock{background:#1e1e1eb3;border:1px solid rgba(255,255,255,.1);box-shadow:0 8px 32px #0006,0 2px 8px #0003,inset 0 0 0 1px #ffffff0d}.motile-dock__item{color:#e5e7eb}.motile-dock__item:hover{background:#ffffff1a}.motile-dock__item:active{background:#fff3;filter:brightness(.9)}.motile-dock__separator[data-position=top],.motile-dock__separator[data-position=bottom]{background:linear-gradient(to bottom,#fff0,#ffffff26 20%,#ffffff26 80%,#fff0)}.motile-dock__separator[data-position=left],.motile-dock__separator[data-position=right]{background:linear-gradient(to right,#fff0,#ffffff26 20%,#ffffff26 80%,#fff0)}}@media (prefers-contrast: high){.motile-dock{border:2px solid currentColor;background:#fffffff2}.motile-dock__item{border:1px solid currentColor}}@media (prefers-reduced-motion: reduce){.motile-dock,.motile-dock__item{transition:none}}@media (max-width: 768px){.motile-dock{gap:6px;padding:6px 12px;border-radius:40px}.motile-dock__item{width:36px;height:36px;min-width:36px;min-height:36px}}@media (hover: none) and (pointer: coarse){.motile-dock__item{min-width:44px;min-height:44px;transform:scale(1)!important}}.motile-dock:before{content:"";position:absolute;top:0;right:0;bottom:0;left:0;border-radius:50px;padding:1px;background:linear-gradient(135deg,#fff6,#ffffff1a);-webkit-mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);-webkit-mask-composite:xor;mask-composite:exclude;pointer-events:none}@media (prefers-color-scheme: dark){.motile-dock:before{background:linear-gradient(135deg,#fff3,#ffffff0d)}}.motile-dock__item:before{content:"";position:absolute;top:-2px;right:-2px;bottom:-2px;left:-2px;border-radius:14px;background:radial-gradient(circle at center,color-mix(in srgb,var( --motile-dock-color, var(--motile-ui-dock, var(--motile-theme, #3b82f6)) ) 30%,transparent),transparent 70%);opacity:0;transition:opacity .3s ease;pointer-events:none;z-index:-1}.motile-dock__item:hover:before{opacity:1}@media (prefers-contrast: high){.motile-dock__item:before{display:none}.motile-dock:before{display:none}}.motile-speed-dial{position:relative;display:inline-flex;align-items:center;justify-content:center}.motile-speed-dial__trigger{position:relative;z-index:2;display:flex;align-items:center;justify-content:center;width:56px;height:56px;padding:0;border:none;border-radius:50%;background-color:var(--motile-speeddial-color, var(--motile-theme, #3b82f6));color:#fff;box-shadow:0 4px 12px #00000026,0 2px 4px #0000001a;cursor:pointer;transition:all .2s cubic-bezier(.4,0,.2,1);font-size:16px;font-weight:500}.motile-speed-dial__trigger:hover{filter:brightness(.9);box-shadow:0 6px 16px #0003,0 3px 6px #00000026;transform:scale(1.05)}.motile-speed-dial__trigger:active{filter:brightness(.85);transform:scale(.95);box-shadow:0 2px 8px #00000026,0 1px 3px #0000001a}.motile-speed-dial__trigger[aria-expanded=true]{filter:brightness(.75);transform:rotate(45deg)}.motile-speed-dial__actions{position:absolute;display:flex;gap:12px;z-index:1}.motile-speed-dial__actions[data-direction=up]{flex-direction:column-reverse;bottom:100%;left:50%;transform:translate(-50%);margin-bottom:12px}.motile-speed-dial__actions[data-direction=down]{flex-direction:column;top:100%;left:50%;transform:translate(-50%);margin-top:12px}.motile-speed-dial__actions[data-direction=left]{flex-direction:row-reverse;right:100%;top:50%;transform:translateY(-50%);margin-right:12px}.motile-speed-dial__actions[data-direction=right]{flex-direction:row;left:100%;top:50%;transform:translateY(-50%);margin-left:12px}.motile-speed-dial__action{display:flex;align-items:center;justify-content:center;width:48px;height:48px;padding:0;border:none;border-radius:50%;background-color:#fff;color:#374151;box-shadow:0 2px 8px #0000001a,0 1px 3px #00000014;cursor:pointer;transition:all .2s cubic-bezier(.4,0,.2,1);font-size:14px}.motile-speed-dial__action:hover{background-color:#f3f4f6;box-shadow:0 4px 12px #00000026,0 2px 4px #0000001a;transform:scale(1.08)}.motile-speed-dial__action:active{transform:scale(.95);box-shadow:0 1px 4px #0000001a,0 0 2px #00000014}.motile-speed-dial__actions[data-direction=up] .motile-speed-dial__action{animation:motile-speed-dial-slide-up .3s cubic-bezier(.34,1.56,.64,1) backwards;animation-delay:calc(var(--action-index) * .05s)}.motile-speed-dial__actions[data-direction=down] .motile-speed-dial__action{animation:motile-speed-dial-slide-down .3s cubic-bezier(.34,1.56,.64,1) backwards;animation-delay:calc(var(--action-index) * .05s)}.motile-speed-dial__actions[data-direction=left] .motile-speed-dial__action{animation:motile-speed-dial-slide-left .3s cubic-bezier(.34,1.56,.64,1) backwards;animation-delay:calc(var(--action-index) * .05s)}.motile-speed-dial__actions[data-direction=right] .motile-speed-dial__action{animation:motile-speed-dial-slide-right .3s cubic-bezier(.34,1.56,.64,1) backwards;animation-delay:calc(var(--action-index) * .05s)}@keyframes motile-speed-dial-slide-up{0%{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}@keyframes motile-speed-dial-slide-down{0%{opacity:0;transform:translateY(-10px)}to{opacity:1;transform:translateY(0)}}@keyframes motile-speed-dial-slide-left{0%{opacity:0;transform:translate(10px)}to{opacity:1;transform:translate(0)}}@keyframes motile-speed-dial-slide-right{0%{opacity:0;transform:translate(-10px)}to{opacity:1;transform:translate(0)}}@media (prefers-reduced-motion: reduce){.motile-speed-dial__actions[data-direction=up] .motile-speed-dial__action,.motile-speed-dial__actions[data-direction=down] .motile-speed-dial__action,.motile-speed-dial__actions[data-direction=left] .motile-speed-dial__action,.motile-speed-dial__actions[data-direction=right] .motile-speed-dial__action{animation:none}}.motile-speed-dial__trigger:focus-visible,.motile-speed-dial__action:focus-visible{outline:2px solid #3b82f6;outline-offset:2px}@media (prefers-color-scheme: dark){.motile-speed-dial__trigger{box-shadow:0 4px 12px #0000004d,0 2px 4px #0003}.motile-speed-dial__trigger:hover{box-shadow:0 6px 16px #0006,0 3px 6px #0000004d}.motile-speed-dial__action{background-color:#374151;color:#f9fafb;box-shadow:0 2px 8px #0000004d,0 1px 3px #0003}.motile-speed-dial__action:hover{background-color:#4b5563;box-shadow:0 4px 12px #0006,0 2px 4px #0000004d}}
|