@aitronos/freddy-plugins 0.3.0 → 0.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ ## 0.4.0 (2025-09-10)
2
+
3
+ - Manual version bump (minor)
4
+
5
+ ## 0.3.1 (2025-09-03)
6
+
7
+ - Manual version bump (patch)
8
+
1
9
  ## 0.3.0 (2025-09-02)
2
10
 
3
11
  - Manual version bump (minor)
package/README.md CHANGED
@@ -4,36 +4,39 @@ A comprehensive Vue.js component library with Storybook documentation, deployed
4
4
 
5
5
  ## 🚀 **Live Environments**
6
6
 
7
- | Environment | URL | Branch | Status |
8
- |-------------|-----|--------|--------|
9
- | **Development** | [dev-components.aitronos.com](https://dev-components.aitronos.com) | `develop` | ✅ Live |
10
- | **Staging** | [staging-components.aitronos.com](https://staging-components.aitronos.com) | `staging` | 🚧 Pending |
11
- | **Production** | [components.aitronos.com](https://components.aitronos.com) | `main` | 🚧 Pending |
7
+ | Environment | URL | Branch | Status |
8
+ | --------------- | -------------------------------------------------------------------------- | --------- | ---------- |
9
+ | **Development** | [dev-components.aitronos.com](https://dev-components.aitronos.com) | `develop` | ✅ Live |
10
+ | **Staging** | [staging-components.aitronos.com](https://staging-components.aitronos.com) | `staging` | 🚧 Pending |
11
+ | **Production** | [components.aitronos.com](https://components.aitronos.com) | `main` | 🚧 Pending |
12
12
 
13
13
  ## 🏗️ **Infrastructure & Costs**
14
14
 
15
15
  ### **Resource Allocation**
16
16
 
17
- | Environment | Memory | CPU | Max Instances | Estimated Cost/Month |
18
- |-------------|--------|-----|---------------|---------------------|
19
- | **Development** | 1Gi | 1 | 10 | ~$15-25 |
20
- | **Staging** | 1Gi | 1 | 10 | ~$15-25 |
21
- | **Production** | 2Gi | 2 | 20 | ~$30-50 |
17
+ | Environment | Memory | CPU | Max Instances | Estimated Cost/Month |
18
+ | --------------- | ------ | --- | ------------- | -------------------- |
19
+ | **Development** | 1Gi | 1 | 10 | ~$15-25 |
20
+ | **Staging** | 1Gi | 1 | 10 | ~$15-25 |
21
+ | **Production** | 2Gi | 2 | 20 | ~$30-50 |
22
22
 
23
23
  ### **Cost Breakdown**
24
24
 
25
25
  **Google Cloud Run Pricing (Switzerland - europe-west6):**
26
+
26
27
  - **CPU**: $0.00002400 per vCPU-second
27
28
  - **Memory**: $0.00000250 per GiB-second
28
29
  - **Requests**: $0.40 per million requests
29
30
 
30
31
  **Estimated Monthly Costs:**
32
+
31
33
  - **Development**: $15-25 (low traffic, testing)
32
34
  - **Staging**: $15-25 (pre-production testing)
33
35
  - **Production**: $30-50 (live traffic)
34
36
  - **Total Estimated**: $60-100/month
35
37
 
36
38
  **Additional Costs:**
39
+
37
40
  - **Artifact Registry**: ~$5-10/month (Docker images)
38
41
  - **Cloud Build**: ~$5-15/month (CI/CD builds)
39
42
  - **Network Egress**: ~$5-10/month (traffic)
@@ -52,6 +55,7 @@ A comprehensive Vue.js component library with Storybook documentation, deployed
52
55
  - **Framework**: Vue.js 3 + TypeScript
53
56
  - **Documentation**: Storybook 7
54
57
  - **Package Manager**: Yarn 4.7.0
58
+ - **Web Components**: Vue 3 Custom Elements (Angular/React support)
55
59
  - **Deployment**: Google Cloud Run
56
60
  - **CI/CD**: GitHub Actions
57
61
  - **Container Registry**: Artifact Registry
@@ -61,6 +65,7 @@ A comprehensive Vue.js component library with Storybook documentation, deployed
61
65
  ## 📦 **Components**
62
66
 
63
67
  ### **Core Components**
68
+
64
69
  - `Button` - Primary action buttons
65
70
  - `InputField` - Form input components
66
71
  - `Modal` - Dialog and modal components
@@ -68,12 +73,14 @@ A comprehensive Vue.js component library with Storybook documentation, deployed
68
73
  - `Pagination` - Navigation components
69
74
 
70
75
  ### **Specialized Components**
76
+
71
77
  - `ChatInterface` - Real-time chat components
72
78
  - `ApiInteraction` - API testing interface
73
79
  - `LoginRegister` - Authentication components
74
80
  - `IconLibrary` - Complete icon set (100+ icons)
75
81
 
76
82
  ### **Utility Components**
83
+
77
84
  - `Spinner` - Loading indicators
78
85
  - `ToastMessage` - Notification system
79
86
  - `Tooltip` - Information overlays
@@ -96,7 +103,7 @@ A comprehensive Vue.js component library with Storybook documentation, deployed
96
103
  # Development (develop branch)
97
104
  git push origin develop
98
105
 
99
- # Staging (staging branch)
106
+ # Staging (staging branch)
100
107
  git push origin staging
101
108
 
102
109
  # Production (main branch)
@@ -112,6 +119,15 @@ yarn install
112
119
  # Start Storybook locally
113
120
  yarn storybook
114
121
 
122
+ # Build library
123
+ yarn build
124
+
125
+ # Build web components
126
+ yarn build:webcomponents
127
+
128
+ # Build both library and web components
129
+ yarn build:all
130
+
115
131
  # Build Storybook
116
132
  yarn build-storybook
117
133
 
@@ -122,6 +138,31 @@ yarn test
122
138
  yarn vue-tsc --noEmit
123
139
  ```
124
140
 
141
+ ## 🌐 **Web Components Support**
142
+
143
+ This library now supports web components, allowing you to use Vue 3 components in Angular, React, and any other framework that supports custom elements.
144
+
145
+ ### Quick Start
146
+
147
+ ```bash
148
+ npm install @aitronos/freddy-plugins
149
+ ```
150
+
151
+ ```javascript
152
+ // Import web components
153
+ import "@aitronos/freddy-plugins/web-components";
154
+ import "@aitronos/freddy-plugins/web-components.css";
155
+ ```
156
+
157
+ ```html
158
+ <!-- Use as custom elements -->
159
+ <freddy-button label="Click me" hierarchy="primary"></freddy-button>
160
+ <freddy-input-field label="Email" type="email"></freddy-input-field>
161
+ <freddy-icon-search size="24" color="#666"></freddy-icon-search>
162
+ ```
163
+
164
+ For detailed web components documentation, see [WEB_COMPONENTS.md](./WEB_COMPONENTS.md).
165
+
125
166
  ## 📋 **Project Structure**
126
167
 
127
168
  ```
@@ -147,12 +188,14 @@ deployment/
147
188
  ## 🔐 **Security & Performance**
148
189
 
149
190
  ### **Security Features**
191
+
150
192
  - ✅ **HTTPS only** - All traffic encrypted
151
193
  - ✅ **Security headers** - XSS, CSRF protection
152
194
  - ✅ **Content Security Policy** - Resource restrictions
153
195
  - ✅ **No sensitive data** - Public component library
154
196
 
155
197
  ### **Performance Optimizations**
198
+
156
199
  - ✅ **Gzip compression** - Reduced transfer size
157
200
  - ✅ **Static asset caching** - 1-year cache headers
158
201
  - ✅ **CDN distribution** - Global edge locations
@@ -161,6 +204,7 @@ deployment/
161
204
  ## 🌐 **Custom Domains**
162
205
 
163
206
  ### **DNS Configuration**
207
+
164
208
  Add these CNAME records in Hostpoint.ch:
165
209
 
166
210
  ```
@@ -170,17 +214,20 @@ components.aitronos.com → freddy-storybook-prod-147074626467.europe-west6.run.
170
214
  ```
171
215
 
172
216
  ### **SSL Certificates**
217
+
173
218
  - Automatically managed by Google Cloud
174
219
  - Custom domains require verification in Google Cloud Console
175
220
 
176
221
  ## 📊 **Monitoring & Analytics**
177
222
 
178
223
  ### **Health Checks**
224
+
179
225
  - **Endpoint**: `/health` - Returns 200 OK
180
226
  - **Auto-restart**: Failed instances restart automatically
181
227
  - **Logging**: Cloud Run logs available in Google Cloud Console
182
228
 
183
229
  ### **Performance Metrics**
230
+
184
231
  - **Response time**: < 200ms average
185
232
  - **Uptime**: 99.9% SLA with Cloud Run
186
233
  - **Availability**: Multi-zone deployment
@@ -190,6 +237,7 @@ components.aitronos.com → freddy-storybook-prod-147074626467.europe-west6.run.
190
237
  ### **Common Issues**
191
238
 
192
239
  **Build Failures:**
240
+
193
241
  ```bash
194
242
  # Check TypeScript errors
195
243
  yarn vue-tsc --noEmit
@@ -199,6 +247,7 @@ yarn build-storybook
199
247
  ```
200
248
 
201
249
  **Deployment Issues:**
250
+
202
251
  ```bash
203
252
  # Check GitHub Actions logs
204
253
  # Verify GCP_SA_KEY secret is set
@@ -206,6 +255,7 @@ yarn build-storybook
206
255
  ```
207
256
 
208
257
  **Domain Issues:**
258
+
209
259
  - Verify DNS propagation (can take 24-48 hours)
210
260
  - Check custom domain verification in Google Cloud Console
211
261
  - Ensure CNAME records are correct
@@ -1 +1 @@
1
- :root{font-family:system-ui,Avenir,Helvetica,Arial,sans-serif;line-height:1.5;font-weight:400;color-scheme:light dark;color:#ffffffde;background-color:#242424;font-synthesis:none;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}a{font-weight:500;text-decoration:inherit}body{margin:0;display:flex;place-items:center;min-width:320px;min-height:100vh;font-family:Inter,sans-serif}h1{font-size:3.2em;line-height:1.1}button{border-radius:8px;border:1px solid transparent;padding:.6em 1.2em;font-size:1em;font-weight:500;font-family:inherit;background-color:#1a1a1a;cursor:pointer;transition:border-color .25s}.card{padding:2em}@media (prefers-color-scheme: light){:root{color:#213547;background-color:#fff}}.BaseIcon{width:40px;height:40px}.MediumIcon{width:80px;height:80px}.red{color:red}.green{color:green}.black{color:#000}.white{color:#fff}.stroke-2{stroke-width:2}.stroke-1-25{stroke-width:1.25}.stroke-1-3{stroke-width:1.3}.stroke-1{stroke-width:1}.stroke-3{stroke-width:3}.stroke-6{stroke-width:6}.base-fallback-style{width:16px;height:16px;stroke-width:1.5}@keyframes float-68ec5307{0%,to{transform:translateY(0)}50%{transform:translateY(-10px)}}@keyframes rotate-68ec5307{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.spaceman-logo[data-v-68ec5307]{animation:float-68ec5307 3s ease-in-out infinite}.spaceman-logo #planet[data-v-68ec5307]{animation:rotate-68ec5307 20s linear infinite}.spaceman-logo #stars[data-v-68ec5307]{animation:float-68ec5307 4s ease-in-out infinite reverse}.tooltip-wrapper[data-v-6df39f10]{display:inline-block;position:relative}.tooltip-content[data-v-6df39f10]{position:absolute;z-index:1000;background:#212529;color:#fff;font-size:13px;padding:8px 12px;border-radius:6px;white-space:normal;max-width:300px;pointer-events:none;opacity:.95;box-shadow:0 4px 12px #00000026;left:50%;transform:translate(-50%);bottom:120%;line-height:1.4;min-width:200px;word-wrap:break-word;word-break:break-word}.tooltip-content.bottom[data-v-6df39f10]{top:120%;bottom:auto}.tooltip-content.left[data-v-6df39f10]{left:auto;right:120%;top:50%;bottom:auto;transform:translateY(-50%)}.tooltip-content.right[data-v-6df39f10]{left:120%;top:50%;bottom:auto;transform:translateY(-50%)}.tooltip-content.force-bottom[data-v-6df39f10]{top:120%;bottom:auto}.fade-enter-active[data-v-6df39f10],.fade-leave-active[data-v-6df39f10]{transition:opacity .15s}.fade-enter-from[data-v-6df39f10],.fade-leave-to[data-v-6df39f10]{opacity:0}.freddy-button[data-v-e7669851]{display:inline-flex;align-items:center;justify-content:center;gap:8px;border:none;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,sans-serif;cursor:pointer;transition:all .2s ease;box-sizing:border-box;color:#031525;border:1px solid #e5e7eb;--button-height: 44px}.freddy-button.freddy-button--primary[data-v-e7669851]{background:#7ba8ef!important;color:#fff!important;border:1px solid #7ba8ef!important}.freddy-button.freddy-button--primary.freddy-button--destructive[data-v-e7669851]{background:#ef4444!important;color:#fff!important;border:1px solid #ef4444!important}.freddy-button.freddy-button--primary[data-v-e7669851]:hover:not(.freddy-button--disabled):not(.freddy-button--loading){background:#1d4ed8;border-color:#1d4ed8}.freddy-button.freddy-button--primary.freddy-button--destructive[data-v-e7669851]:hover:not(.freddy-button--disabled):not(.freddy-button--loading){background:#dc2626;border-color:#dc2626}.freddy-button.freddy-button--primary[data-v-e7669851]:active:not(.freddy-button--disabled):not(.freddy-button--loading){background:#1742af;border-color:#1742af}.freddy-button.freddy-button--primary.freddy-button--destructive[data-v-e7669851]:active:not(.freddy-button--disabled):not(.freddy-button--loading){background:#b91c1c;border-color:#b91c1c}.freddy-button.freddy-button--secondary[data-v-e7669851]{background:transparent!important;color:#7ba8ef!important;border:1px solid #7ba8ef!important}.freddy-button.freddy-button--secondary.freddy-button--destructive[data-v-e7669851]{background:transparent!important;color:#ef4444!important;border:1px solid #ef4444!important}.freddy-button.freddy-button--secondary[data-v-e7669851]:hover:not(.freddy-button--disabled):not(.freddy-button--loading){background:#e0e7ff}.freddy-button.freddy-button--secondary.freddy-button--destructive[data-v-e7669851]:hover:not(.freddy-button--disabled):not(.freddy-button--loading){background:#fef2f2}.freddy-button.freddy-button--secondary[data-v-e7669851]:active:not(.freddy-button--disabled):not(.freddy-button--loading){background:#c7d2fe}.freddy-button.freddy-button--secondary.freddy-button--destructive[data-v-e7669851]:active:not(.freddy-button--disabled):not(.freddy-button--loading){background:#fee2e2}.freddy-button.freddy-button--tertiary[data-v-e7669851]{background:transparent!important;color:#4b5563!important;border:1px solid #9ca3af!important}.freddy-button.freddy-button--tertiary.freddy-button--destructive[data-v-e7669851]{background:transparent!important;color:#ef4444!important;border:1px solid #ef4444!important}.freddy-button.freddy-button--tertiary[data-v-e7669851]:hover:not(.freddy-button--disabled):not(.freddy-button--loading){background:#f3f4f6}.freddy-button.freddy-button--tertiary.freddy-button--destructive[data-v-e7669851]:hover:not(.freddy-button--disabled):not(.freddy-button--loading){background:#fef2f2}.freddy-button.freddy-button--tertiary[data-v-e7669851]:active:not(.freddy-button--disabled):not(.freddy-button--loading){background:#e5e7eb}.freddy-button.freddy-button--tertiary.freddy-button--destructive[data-v-e7669851]:active:not(.freddy-button--disabled):not(.freddy-button--loading){background:#fee2e2}.freddy-button.freddy-button--text[data-v-e7669851]{background:none!important;color:#2563eb!important;border:none!important;box-shadow:none!important;padding:0!important;margin:0!important;min-width:0!important;min-height:0!important;gap:4px}.freddy-button.freddy-button--text.freddy-button--destructive[data-v-e7669851]{color:#ef4444!important}.freddy-button.freddy-button--text[data-v-e7669851]:hover:not(.freddy-button--disabled):not(.freddy-button--loading),.freddy-button.freddy-button--text.freddy-button--destructive[data-v-e7669851]:hover:not(.freddy-button--disabled):not(.freddy-button--loading),.freddy-button.freddy-button--text[data-v-e7669851]:active:not(.freddy-button--disabled):not(.freddy-button--loading),.freddy-button.freddy-button--text.freddy-button--destructive[data-v-e7669851]:active:not(.freddy-button--disabled):not(.freddy-button--loading){background:none!important;border:none!important}.freddy-button.freddy-button--success[data-v-e7669851]{background:#22c55e!important;color:#fff!important;border:1px solid #22c55e!important}.freddy-button.freddy-button--success.freddy-button--destructive[data-v-e7669851]{background:#fff!important;color:#ef4444!important;border:1px solid #ef4444!important}.freddy-button.freddy-button--success[data-v-e7669851]:hover:not(.freddy-button--disabled):not(.freddy-button--loading){background:#16a34a;border-color:#16a34a}.freddy-button.freddy-button--success.freddy-button--destructive[data-v-e7669851]:hover:not(.freddy-button--disabled):not(.freddy-button--loading){background:#fef2f2}.freddy-button.freddy-button--success[data-v-e7669851]:active:not(.freddy-button--disabled):not(.freddy-button--loading){background:#15803d;border-color:#15803d}.freddy-button.freddy-button--success.freddy-button--destructive[data-v-e7669851]:active:not(.freddy-button--disabled):not(.freddy-button--loading){background:#fee2e2}.freddy-button--s[data-v-e7669851]{height:20px;min-width:20px;font-size:14px;font-weight:600;gap:4px;border-radius:4px;padding:0 8px;--button-height: 20px}.freddy-button--sm[data-v-e7669851]{height:28px;min-width:28px;font-size:16px;font-weight:600;gap:6px;border-radius:8px;padding:0 12px;--button-height: 28px}.freddy-button--md[data-v-e7669851]{height:44px;min-width:44px;font-size:16px;font-weight:600;gap:8px;border-radius:8px;padding:0 16px;--button-height: 44px}.freddy-button--lg[data-v-e7669851]{height:44px;min-width:44px;font-size:16px;font-weight:600;gap:8px;border-radius:8px;padding:0 20px;--button-height: 44px}.freddy-button--xl[data-v-e7669851]{height:48px;min-width:48px;font-size:16px;font-weight:600;gap:10px;border-radius:8px;padding:0 24px;--button-height: 48px}.freddy-button[data-v-e7669851]:hover:not(.freddy-button--disabled):not(.freddy-button--loading){background:#f9fafb;border-color:#d1d5db;transform:translateY(-1px);box-shadow:0 2px 4px #0000001a}.freddy-button[data-v-e7669851]:focus-visible{outline:none;box-shadow:0 0 0 2px #fff,0 0 0 4px #00aeef;background:#f0f9ff}.freddy-button.freddy-button--text[data-v-e7669851]:focus-visible{box-shadow:0 0 0 2px #fff,0 0 0 4px #2563eb}.freddy-button.freddy-button--destructive[data-v-e7669851]:focus-visible{box-shadow:0 0 0 2px #fff,0 0 0 4px #ef4444}.freddy-button.freddy-button--success[data-v-e7669851]:focus-visible{box-shadow:0 0 0 2px #fff,0 0 0 4px #22c55e}.freddy-button[data-v-e7669851]:active:not(.freddy-button--disabled):not(.freddy-button--loading){transform:translateY(0);box-shadow:0 1px 2px #0000001a;background:#e0f2fe}.freddy-button--disabled[data-v-e7669851]{opacity:.6;cursor:not-allowed;transform:none!important;box-shadow:none!important;background:#f3f4f6;color:#9ca3af;border-color:#e5e7eb}.freddy-button--disabled[data-v-e7669851]:hover{transform:none!important;box-shadow:none!important;background:#f3f4f6;border-color:#e5e7eb}.freddy-button--loading[data-v-e7669851]{cursor:wait;position:relative}.freddy-button--loading[data-v-e7669851]:hover{transform:none!important;box-shadow:none!important;background:#fff;border-color:#e5e7eb}.button-icon[data-v-e7669851]{flex-shrink:0;color:currentColor;display:flex;align-items:center;justify-content:center}.button-hover-icon[data-v-e7669851]{cursor:pointer;transition:color .2s ease}.button-hover-icon[data-v-e7669851]:hover{color:#ef4444}.freddy-button--s .button-icon[data-v-e7669851]{width:16px;height:16px}.freddy-button--s .button-icon svg[data-v-e7669851]{width:16px;height:16px}.freddy-button--sm .button-icon[data-v-e7669851]{width:20px;height:20px}.freddy-button--sm .button-icon svg[data-v-e7669851]{width:20px;height:20px}.freddy-button--md .button-icon[data-v-e7669851]{width:20px;height:20px}.freddy-button--md .button-icon svg[data-v-e7669851]{width:20px;height:20px}.freddy-button--lg .button-icon[data-v-e7669851]{width:20px;height:20px}.freddy-button--lg .button-icon svg[data-v-e7669851]{width:20px;height:20px}.freddy-button--xl .button-icon[data-v-e7669851]{width:22px;height:22px}.freddy-button--xl .button-icon svg[data-v-e7669851]{width:22px;height:22px}.button-label[data-v-e7669851]{display:flex;align-items:center;white-space:nowrap}.button-spinner[data-v-e7669851]{display:inline-block;width:1em;height:1em;min-width:16px;min-height:16px;border:2px solid rgba(0,0,0,.08);border-top:2px solid #1a237e;border-radius:50%;animation:spin 1s linear infinite;margin-right:8px;vertical-align:middle;background:#00000008}.freddy-button--icon-only[data-v-e7669851]{justify-content:center;align-items:center;padding:0;gap:0;width:var(--button-height)!important;min-width:var(--button-height)!important;aspect-ratio:1}.button-icon-center[data-v-e7669851]{margin:0;display:flex;align-items:center;justify-content:center;width:100%;height:100%}.button-custom-content[data-v-e7669851]{display:flex;align-items:center;justify-content:center;width:100%;height:100%}.icon-linear{display:flex;flex-direction:row;align-items:center;justify-content:flex-end;font-size:14px;color:#b1a8a8}.freddy-plugins-user-avatar-base[data-v-720c99ab]{width:100px;height:20px;object-fit:cover}.icon-progress-complete,.icon-progress-going,.icon-radio,.icon-radio-fill{display:flex;flex-direction:row;align-items:center;justify-content:flex-end;font-size:14px;color:#b1a8a8}.base-checkbox[data-v-ba9cd543]{position:relative;display:inline-flex;align-items:center;justify-content:center;width:16px;height:16px;border-radius:4px;border:1px solid currentColor;cursor:pointer;transition:background-color .15s ease-in-out,border-color .15s ease-in-out;-webkit-user-select:none;user-select:none}.checked[data-v-ba9cd543]{background-color:#fff;border-color:transparent}.checked-blue[data-v-ba9cd543]{background-color:#7ba8ef;border-color:transparent}.not-checked[data-v-ba9cd543]{background-color:transparent;border-color:currentColor}.checkbox-input[data-v-ba9cd543]{position:absolute;opacity:0;pointer-events:none}.checkbox-dash[data-v-ba9cd543]{width:8px;height:2px;background-color:#fff;border-radius:1px}.checkbox-icon[data-v-ba9cd543]{width:16px;height:16px;pointer-events:none}.is-disabled[data-v-ba9cd543]{opacity:.5;cursor:not-allowed}.switch[data-v-b509be1d]{position:relative;border:none;background:none;padding:0;cursor:pointer;outline:none;display:inline-flex;align-items:center;transition:opacity .2s}.switch--s[data-v-b509be1d]{width:28px;height:16px}.switch--sm[data-v-b509be1d]{width:32px;height:18px}.switch--md[data-v-b509be1d]{width:40px;height:22px}.switch--lg[data-v-b509be1d]{width:48px;height:26px}.switch--xl[data-v-b509be1d]{width:56px;height:30px}.switch--disabled[data-v-b509be1d]{opacity:.5;cursor:not-allowed}.switch__track[data-v-b509be1d]{position:absolute;left:0;top:0;width:100%;height:100%;background:#e5e5ea;border-radius:999px;transition:background .2s}.switch--on .switch__track[data-v-b509be1d]{background:#5c3bce}.switch__thumb[data-v-b509be1d]{position:absolute;background:#fff;border-radius:50%;box-shadow:0 1px 3px #00000026;transition:left .2s}.switch--s .switch__thumb[data-v-b509be1d]{top:1px;left:1px;width:14px;height:14px}.switch--s.switch--on .switch__thumb[data-v-b509be1d]{left:13px}.switch--sm .switch__thumb[data-v-b509be1d]{top:1px;left:1px;width:16px;height:16px}.switch--sm.switch--on .switch__thumb[data-v-b509be1d]{left:15px}.switch--md .switch__thumb[data-v-b509be1d]{top:2px;left:2px;width:18px;height:18px}.switch--md.switch--on .switch__thumb[data-v-b509be1d]{left:20px}.switch--lg .switch__thumb[data-v-b509be1d]{top:2px;left:2px;width:22px;height:22px}.switch--lg.switch--on .switch__thumb[data-v-b509be1d]{left:24px}.switch--xl .switch__thumb[data-v-b509be1d]{top:3px;left:3px;width:24px;height:24px}.switch--xl.switch--on .switch__thumb[data-v-b509be1d]{left:29px}.dropdown-wrapper{position:relative;display:inline-block}.dropdown-chevron{width:16px;height:16px}.dropdown-menu{position:absolute;left:0;min-width:200px;width:fit-content;max-width:360px;border:1px solid #ccc;border-radius:8px;box-shadow:0 2px 8px #00000014;z-index:1000;padding:4px 0;overflow:visible;background:#fff;pointer-events:auto}.dropdown-menu--down{top:100%;margin-top:4px}.dropdown-menu--up{bottom:100%;margin-bottom:4px}.dropdown-search-bar{width:100%;max-width:100%;box-sizing:border-box;padding:4px 8px;border-bottom:1px solid #eee}.dropdown-search-input{width:100%;max-width:100%;box-sizing:border-box;padding:4px 6px;border:1px solid #ccc;border-radius:4px;font-size:13px}.dropdown-options{list-style:none;margin:0;padding:0;max-height:280px;overflow-y:auto}.dropdown-option{display:flex;align-items:center;justify-content:space-between;gap:6px;padding:6px 12px;cursor:pointer;font-size:14px;border-radius:4px;transition:all .2s ease;background:#fff!important;pointer-events:auto;-webkit-user-select:none;user-select:none;color:#000;border:1px solid transparent}.dropdown-option-label{display:flex;align-items:center;gap:6px;flex:1 1 0;min-width:0;white-space:normal;word-break:break-word}.dropdown-option-icon{width:16px;height:16px;flex-shrink:0}.dropdown-option-icon--right{margin-left:auto}.dropdown-option-shortcut{margin-left:auto;font-size:12px;color:#888;background:#0000000a;border-radius:4px;padding:1px 6px;font-family:monospace}.dropdown-option:hover{background:#f8fafc!important;border-color:#e2e8f0;box-shadow:0 1px 3px #0000001a;transform:translateY(-1px)}.dropdown-no-options{padding:8px 12px;color:#888;font-size:13px}.dropdown-toggle-checkbox{width:16px;height:16px;border:1px solid #ccc;border-radius:4px;display:flex;align-items:center;justify-content:center;cursor:pointer}.dropdown-toggle-inner{width:12px;height:12px;background-color:#fff;border-radius:2px}.checked{background-color:#007bff;border-color:#007bff}.checked .dropdown-toggle-inner{display:none}.dropdown-option>.switch{flex-shrink:0}.input-field-wrapper[data-v-583bb24a]{display:flex;flex-direction:column;gap:.5rem;width:100%}.input-field-label[data-v-583bb24a]{font-size:.875rem;font-weight:500;line-height:1.25rem}.input-field-label--freddy[data-v-583bb24a]{color:#cbd6e3}.input-field-label--contentplate[data-v-583bb24a]{color:#374151}.required-asterisk[data-v-583bb24a]{color:#ef4444;margin-left:.125rem}.input-field-container[data-v-583bb24a]{position:relative;display:flex;align-items:center;transition:all .2s ease;cursor:text}.input-field-container--freddy[data-v-583bb24a]{background-color:#1e293b;border:1px solid #475569}.input-field-container--freddy[data-v-583bb24a]:hover:not(.input-field-container--disabled){border-color:#64748b}.input-field-container--freddy.input-field-container--focused[data-v-583bb24a]{border-color:#3b82f6;box-shadow:0 0 0 1px #3b82f6}.input-field-container--freddy.input-field-container--destructive[data-v-583bb24a]{border-color:#ef4444}.input-field-container--freddy.input-field-container--destructive[data-v-583bb24a]:hover{border-color:#f87171}.input-field-container--contentplate[data-v-583bb24a]{background-color:#fff;border:1px solid #d1d5db}.input-field-container--contentplate[data-v-583bb24a]:hover:not(.input-field-container--disabled){border-color:#9ca3af}.input-field-container--contentplate.input-field-container--focused[data-v-583bb24a]{border-color:#3b82f6;box-shadow:0 0 0 1px #3b82f6}.input-field-container--contentplate.input-field-container--destructive[data-v-583bb24a]{border-color:#ef4444}.input-field-container--contentplate.input-field-container--destructive[data-v-583bb24a]:hover{border-color:#f87171}.input-field-container[data-v-583bb24a]:hover:not(.input-field-container--disabled){border-color:#64748b}.input-field-container--focused[data-v-583bb24a]{border-color:#3b82f6;box-shadow:0 0 0 1px #3b82f6}.input-field-container--destructive[data-v-583bb24a]{border-color:#ef4444}.input-field-container--destructive[data-v-583bb24a]:hover{border-color:#f87171}.input-field-container--disabled[data-v-583bb24a]{opacity:.5;cursor:not-allowed}.input-field-container--sm[data-v-583bb24a]{height:40px;border-radius:8px}.input-field-container--md[data-v-583bb24a]{height:44px;border-radius:12px}.input-field-container--lg[data-v-583bb24a]{height:48px;border-radius:16px}.input-leading-dropdown[data-v-583bb24a],.input-leading-text[data-v-583bb24a]{display:flex;align-items:center;gap:.25rem;padding:0 .75rem;font-size:.875rem;font-weight:500;cursor:pointer;transition:color .2s ease}.input-leading-dropdown--freddy[data-v-583bb24a],.input-leading-text--freddy[data-v-583bb24a]{border-right:1px solid #475569;color:#94a3b8}.input-leading-dropdown--contentplate[data-v-583bb24a],.input-leading-text--contentplate[data-v-583bb24a]{border-right:1px solid #d1d5db;color:#6b7280}.input-leading-dropdown--freddy[data-v-583bb24a]:hover{color:#cbd6e3}.input-leading-dropdown--contentplate[data-v-583bb24a]:hover{color:#374151}.dropdown-text[data-v-583bb24a]{font-size:.875rem;font-weight:500}.dropdown-icon[data-v-583bb24a]{width:1rem;height:1rem;stroke:currentColor}.input-leading-icon[data-v-583bb24a]{width:1.25rem;height:1.25rem;margin-left:.75rem}.input-leading-icon--freddy[data-v-583bb24a]{stroke:#94a3b8}.input-leading-icon--contentplate[data-v-583bb24a]{stroke:#6b7280}.input-leading-text--freddy[data-v-583bb24a]{color:#94a3b8}.input-leading-text--contentplate[data-v-583bb24a]{color:#6b7280}.input-field[data-v-583bb24a]{flex:1;background:transparent;border:none;outline:none;font-size:.875rem;font-weight:500;line-height:1.25rem;padding:0 .75rem;height:100%}.input-field--freddy[data-v-583bb24a]{color:#cbd6e3}.input-field--contentplate[data-v-583bb24a]{color:#374151}.input-field--freddy[data-v-583bb24a]::placeholder{color:#94a3b8;opacity:.7}.input-field--contentplate[data-v-583bb24a]::placeholder{color:#9ca3af;opacity:.7}.input-field--disabled[data-v-583bb24a]{cursor:not-allowed}.input-field--freddy.input-field--destructive[data-v-583bb24a]{color:#ef4444}.input-field--freddy.input-field--destructive[data-v-583bb24a]::placeholder{color:#f87171}.input-field--contentplate.input-field--destructive[data-v-583bb24a]{color:#ef4444}.input-field--contentplate.input-field--destructive[data-v-583bb24a]::placeholder{color:#f87171}.input-trailing-dropdown[data-v-583bb24a]{display:flex;align-items:center;gap:.25rem;padding:0 .75rem;font-size:.875rem;font-weight:500;cursor:pointer;transition:color .2s ease}.input-trailing-dropdown--freddy[data-v-583bb24a]{border-left:1px solid #475569;color:#94a3b8}.input-trailing-dropdown--contentplate[data-v-583bb24a]{border-left:1px solid #d1d5db;color:#6b7280}.input-trailing-dropdown--freddy[data-v-583bb24a]:hover{color:#cbd6e3}.input-trailing-dropdown--contentplate[data-v-583bb24a]:hover{color:#374151}.input-trailing-button[data-v-583bb24a]{display:flex;align-items:center;padding:0 .75rem;background:transparent;color:#3b82f6;font-size:.875rem;font-weight:500;cursor:pointer;transition:color .2s ease}.input-trailing-button--freddy[data-v-583bb24a]{border-left:1px solid #475569}.input-trailing-button--contentplate[data-v-583bb24a]{border-left:1px solid #d1d5db}.input-trailing-button[data-v-583bb24a]:hover{color:#60a5fa}.input-clear-button[data-v-583bb24a]{display:flex;align-items:center;justify-content:center;width:2rem;height:2rem;margin-right:.5rem;background:transparent;border:none;cursor:pointer;border-radius:.25rem;transition:all .2s ease}.input-clear-button--freddy[data-v-583bb24a]{color:#94a3b8}.input-clear-button--contentplate[data-v-583bb24a]{color:#6b7280}.input-clear-button--freddy[data-v-583bb24a]:hover{background-color:#374151;color:#cbd6e3}.input-clear-button--contentplate[data-v-583bb24a]:hover{background-color:#f3f4f6;color:#374151}.clear-icon[data-v-583bb24a]{width:1rem;height:1rem;stroke:currentColor}.input-help-icon[data-v-583bb24a]{width:1.25rem;height:1.25rem;margin-right:.75rem;cursor:help;transition:stroke .2s ease}.input-help-icon--freddy[data-v-583bb24a]{stroke:#94a3b8}.input-help-icon--contentplate[data-v-583bb24a]{stroke:#6b7280}.input-help-icon--freddy[data-v-583bb24a]:hover{stroke:#cbd6e3}.input-help-icon--contentplate[data-v-583bb24a]:hover{stroke:#374151}.input-hint-text[data-v-583bb24a]{font-size:.75rem;line-height:1rem;margin:0}.input-hint-text--freddy[data-v-583bb24a]{color:#94a3b8}.input-hint-text--contentplate[data-v-583bb24a]{color:#6b7280}.input-field-container--payment .input-field[data-v-583bb24a]{font-family:Courier New,monospace;letter-spacing:.05em}.input-field-container--freddy-input[data-v-583bb24a]{background-color:#0f172a;border-color:#334155}.input-field-container--freddy-input .input-field[data-v-583bb24a]{color:#f1f5f9}.input-field-container--freddy-input .input-field[data-v-583bb24a]::placeholder{color:#64748b}.logo-container[data-v-f79c78a5]{display:flex;align-items:center;gap:.75rem}.logo-container--sm[data-v-f79c78a5]{gap:.5rem}.logo-container--lg[data-v-f79c78a5]{gap:1rem}.logo-image[data-v-f79c78a5]{object-fit:contain;height:auto}.logo-image--sm[data-v-f79c78a5]{width:64px;height:64px}.logo-image--md[data-v-f79c78a5]{width:96px;height:96px}.logo-image--lg[data-v-f79c78a5]{width:128px;height:128px}.logo-image--brand-no-title.logo-image--lg[data-v-f79c78a5]{width:180px;height:54px}.logo-image[data-v-f79c78a5]{max-width:100%;height:auto;aspect-ratio:200/60}.logo-title[data-v-f79c78a5]{margin:0;font-weight:600;color:#374151}.logo-title--sm[data-v-f79c78a5]{font-size:1rem}.logo-title--md[data-v-f79c78a5]{font-size:1.25rem}.logo-title--lg[data-v-f79c78a5]{font-size:1.5rem}.freddy-modal-overlay{position:fixed;top:0;left:0;z-index:9998;width:100%;height:100%;background:#1d2e47e6;display:flex;justify-content:center;align-items:center}.freddy-modal-container{background-color:#0f172a;padding:2rem;border-radius:2.5rem;overflow:hidden;color:#fff}.freddy-modal-large{width:90%;max-width:900px}@media (max-width: 1280px){.freddy-modal-large{max-width:900px}}@media (max-width: 1024px){.freddy-modal-large{max-width:900px}}@media (max-width: 768px){.freddy-modal-large{max-width:730px}}@media (max-width: 640px){.freddy-modal-large{max-width:500px}}@media (max-width: 480px){.freddy-modal-large{width:auto;max-width:90%}}.freddy-modal-header,.freddy-modal-body,.freddy-modal-footer{margin-bottom:1rem}.modal-enter-active,.modal-leave-active{transition:opacity .3s}.modal-enter,.modal-leave-to{opacity:0}.freddy-modal-overlay{position:fixed;top:0;left:0;width:100vw;height:100vh;display:flex;align-items:center;justify-content:center;background-color:#031525c4;-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);z-index:1000;overflow:auto}.freddy-modal-content{background-color:#031525;border-radius:40px;box-shadow:0 0 10px 2px #ffffff40;padding:30px;position:relative;margin:auto;min-width:370px;max-width:90%;width:auto}.freddy-modal-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:28px;gap:8px}.freddy-modal-title{font-size:29px;line-height:35px;font-weight:600;margin:0}.freddy-modal-close{background:none;border:none;font-size:35px;font-weight:400;color:#fff;padding:0;line-height:1;cursor:pointer}.freddy-modal-close-icon{width:16px;height:16px;stroke-width:2px}.freddy-pagination-nav{width:100%;display:flex;gap:.25rem;justify-content:space-between}.freddy-pagination-number-button{display:flex;align-items:center;justify-content:center;border-radius:4px;color:#6b7280;cursor:pointer;padding:.5rem .75rem;height:auto;background:transparent;border:none;transition:background-color .2s,color .2s}.freddy-pagination-number-button.active,.freddy-pagination-number-button.bg-white{background-color:#ffffff1a;color:#fff}.freddy-pagination-dynamic-container{display:flex;gap:.25rem}.freddy-pagination-end-button{margin-left:16px;display:flex;align-items:center;justify-content:center;padding:0 1rem;height:2.5rem;margin-inline-start:0;line-height:1.25rem;color:#6b7280;background-color:#031525;border:1px solid rgba(255,255,255,.2);border-radius:.5rem;cursor:pointer;transition:background-color .2s,color .2s}.freddy-pagination-hover-enabled:hover{background-color:#ffffff1a;color:#cbd6e3;cursor:pointer}.freddy-plugin-spinner{width:20px;height:20px;border:2px solid #f3f3f3;border-top-color:transparent;border-radius:50%;animation:spin 1s linear infinite}@keyframes spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.freddy-search-wrapper{display:flex;box-sizing:border-box;align-items:flex-start;gap:.5rem;height:37px;width:100%;border:1px solid #333741;padding-left:.875rem;padding-right:.875rem;border-radius:.5rem;cursor:text}.freddy-search-icon{flex-shrink:0;width:1.25rem;height:1.25rem;align-self:center;stroke:#fff6}.freddy-search-input{flex:1 1 auto;width:100%;font-size:14px;font-weight:500;line-height:16px;background:transparent;border:none;outline:none;color:#cbd6e3;align-self:center}.freddy-search-input::placeholder{color:#fff6;opacity:.7}.freddy-search-spinner{width:21px!important;align-self:center}.chat-bar-send-btn[data-v-97cd4e5d]{background:#00aeef;border:none;padding:0;margin-bottom:4px;cursor:pointer;border-radius:50%;display:flex;align-items:center;justify-content:center;color:#fff;transition:color .2s,background .2s}.chat-bar-send-btn--s[data-v-97cd4e5d]{width:24px;height:24px}.chat-bar-send-btn--sm[data-v-97cd4e5d]{width:28px;height:28px}.chat-bar-send-btn--md[data-v-97cd4e5d]{width:32px;height:32px}.chat-bar-send-btn--lg[data-v-97cd4e5d]{width:36px;height:36px}.chat-bar-send-btn--xl[data-v-97cd4e5d]{width:40px;height:40px}.chat-bar-send-btn.active[data-v-97cd4e5d]{color:#cbd6e3}.chat-bar-send-btn[data-v-97cd4e5d]:disabled{background:#ccc;cursor:not-allowed;color:#aaa}.chat-bar-send-icon[data-v-97cd4e5d]{width:20px;height:20px}.chat-bar-send-btn--s .chat-bar-send-icon[data-v-97cd4e5d]{width:14px;height:14px}.chat-bar-send-btn--sm .chat-bar-send-icon[data-v-97cd4e5d]{width:16px;height:16px}.chat-bar-send-btn--lg .chat-bar-send-icon[data-v-97cd4e5d]{width:22px;height:22px}.chat-bar-send-btn--xl .chat-bar-send-icon[data-v-97cd4e5d]{width:24px;height:24px}.skeleton-card[data-v-e5337fdf]{background-color:#1c2b3aa8;padding:1rem;border:1px solid #ffffff0a;border-radius:.5rem;box-shadow:4px 7px 27px -13px #fdfdff0f;display:flex;flex-direction:column;gap:1rem}.skeleton-paragraph[data-v-e5337fdf],.skeleton-single-box[data-v-e5337fdf],.skeleton-single-paragraph[data-v-e5337fdf]{padding:1rem;border:1px solid #ffffff0a;border-radius:.75rem;background-color:#1c2b3aa8;box-shadow:4px 7px 27px -13px #fdfdff0f;display:flex;flex-direction:column;gap:.5rem}.skeleton-single-box[data-v-e5337fdf]{padding:8px}.skeleton-table[data-v-e5337fdf]{background-color:#1c2b3aa8;padding:1rem;border:1px solid #ffffff0a;border-radius:.5rem;overflow:hidden;box-shadow:4px 7px 27px -13px #fdfdff0f;display:flex;flex-direction:column;gap:1rem}.skeleton-wave[data-v-e5337fdf]{position:relative;overflow:hidden;background-color:#031525}.skeleton-wave[data-v-e5337fdf]:after{content:"";position:absolute;top:0;left:-150%;height:100%;width:150%;background:linear-gradient(90deg,#fff0,#ffffffb3,#fff0);animation:wave-e5337fdf 3s ease-in-out infinite}@keyframes wave-e5337fdf{0%{left:-150%}50%{left:100%}to{left:100%}}.skeleton-line[data-v-e5337fdf]{background-color:#ffffff17;border-radius:.25rem}.skeleton-h-4[data-v-e5337fdf]{height:1rem}.skeleton-h-6[data-v-e5337fdf]{height:1.5rem}.skeleton-h-8[data-v-e5337fdf]{height:2rem}.skeleton-w-full[data-v-e5337fdf]{width:100%}.skeleton-w-5-6[data-v-e5337fdf]{width:83.333333%}.skeleton-w-3-4[data-v-e5337fdf]{width:75%}.skeleton-w-40[data-v-e5337fdf]{width:10rem}.skeleton-w-32[data-v-e5337fdf]{width:8rem}.table-full[data-v-e5337fdf]{min-width:100%;border-collapse:collapse}.td-padding[data-v-e5337fdf]{padding:.5rem 1.5rem}@keyframes fade-in-right-819849ab{0%{opacity:0;transform:translate(100%)}to{opacity:1;transform:translate(0)}}.freddy-plugin-snackbar-container[data-v-819849ab]{position:fixed;right:1.25rem;bottom:.5rem;padding-bottom:17px;z-index:50}.freddy-plugin-snackbar-container--side70[data-v-819849ab]{width:78%}.freddy-plugin-snackbar-container--half[data-v-819849ab]{width:50%}.freddy-plugin-snackbar-container--full[data-v-819849ab]{width:100%;padding-left:2.5rem}.freddy-plugin-snackbar[data-v-819849ab]{margin-top:.75rem;padding:1rem;border-radius:1.5rem;background-color:#031525;animation:fade-in-right-819849ab .5s ease-out}.freddy-plugin-snackbar--info[data-v-819849ab]{border:2px solid #ffffff;box-shadow:0 0 0 1px #fff}.freddy-plugin-snackbar--danger[data-v-819849ab]{border:2px solid #f79009;box-shadow:0 0 0 1px #f79009}.freddy-plugin-snackbar--success[data-v-819849ab]{border:2px solid #12b76a;box-shadow:0 0 0 1px #12b76a}.freddy-plugin-snackbar-content[data-v-819849ab]{display:flex;justify-content:space-between;align-items:center;position:relative}.freddy-plugin-snackbar-left[data-v-819849ab]{display:flex;gap:1rem}.freddy-plugin-snackbar-icon[data-v-819849ab]{height:16px;width:16px;stroke-width:2;color:#fff;border-radius:9999px;padding:.25rem;border:4px solid transparent;box-sizing:content-box}.freddy-plugin-snackbar-icon--info[data-v-819849ab]{border-color:#fff3;background-color:#ffffff17}.freddy-plugin-snackbar-icon--danger[data-v-819849ab]{border-color:#f79009;background-color:#fdb022}.freddy-plugin-snackbar-icon--success[data-v-819849ab]{border-color:#12b76a;background-color:#68c57c}.freddy-plugin-snackbar-text[data-v-819849ab]{display:flex;flex-direction:column;gap:.375rem;color:#fff}.freddy-plugin-snackbar-title[data-v-819849ab]{font-size:.875rem;font-weight:600;margin:0;color:#fff}.freddy-plugin-snackbar-message[data-v-819849ab]{font-size:.875rem;font-weight:500;line-height:normal;margin:0;color:#fff}.freddy-plugin-snackbar-close-btn[data-v-819849ab]{position:absolute;right:.5rem;top:0;background:none;border:none;cursor:pointer}.freddy-plugin-snackbar-close-icon[data-v-819849ab]{height:10px;width:10px;stroke-width:1.67;color:#fff}.freddy-plugin-nav-bar{display:flex;width:100%;gap:24px;border-bottom:1px solid rgba(255,255,255,.09);padding-right:10px;font-family:Inter,sans-serif;font-size:.875rem;font-weight:600}.freddy-plugin-menu-button{all:unset;display:flex;flex-direction:column;padding-top:8px;cursor:pointer}.freddy-plugin-active-tab{width:100%;background-color:#fff;height:2px;border-top-left-radius:.375rem;border-top-right-radius:.375rem}.toast-wrapper[data-v-a89a07b6]{position:fixed;right:10px;bottom:10px;display:flex;flex-direction:column;gap:.5rem}.toast-item[data-v-a89a07b6]{display:flex;align-items:center;padding:.625rem;gap:.625rem;border-radius:10px;box-shadow:0 1px 3px #0000001a;animation:fadeIn-a89a07b6 .3s ease}.toast-success[data-v-a89a07b6]{background-color:#099250;--toast-icon-color: #099250}.toast-danger[data-v-a89a07b6]{background-color:#e71d41;--toast-icon-color: #e71d41}.toast-info[data-v-a89a07b6]{background-color:#3182ce;--toast-icon-color: #3182ce}.toast-icon-wrapper[data-v-a89a07b6]{width:1.25rem;height:1.25rem;background-color:#fff;border-radius:9999px;display:flex;align-items:center;justify-content:center;flex-shrink:0}.toast-icon[data-v-a89a07b6]{width:100%;height:100%;padding:.25rem;color:var(--toast-icon-color)}.toast-message[data-v-a89a07b6]{min-width:16rem;max-width:420px;flex:1 1 auto;font-size:1rem;font-weight:500;color:#fff}.toast-close-button[data-v-a89a07b6]{width:1rem;height:1rem;background:transparent;border:none;display:flex;align-items:center;justify-content:center;flex-shrink:0}.toast-close-icon[data-v-a89a07b6]{width:100%;height:100%;padding:.125rem;color:#fff}@keyframes fadeIn-a89a07b6{0%{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}
1
+ :root{font-family:system-ui,Avenir,Helvetica,Arial,sans-serif;line-height:1.5;font-weight:400;color-scheme:light dark;color:#ffffffde;background-color:#242424;font-synthesis:none;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}a{font-weight:500;text-decoration:inherit}body{margin:0;display:flex;place-items:center;min-width:320px;min-height:100vh;font-family:Inter,sans-serif}h1{font-size:3.2em;line-height:1.1}button{border-radius:8px;border:1px solid transparent;padding:.6em 1.2em;font-size:1em;font-weight:500;font-family:inherit;background-color:#1a1a1a;cursor:pointer;transition:border-color .25s}.card{padding:2em}@media (prefers-color-scheme: light){:root{color:#213547;background-color:#fff}}.BaseIcon{width:40px;height:40px}.MediumIcon{width:80px;height:80px}.red{color:red}.green{color:green}.black{color:#000}.white{color:#fff}.stroke-2{stroke-width:2}.stroke-1-25{stroke-width:1.25}.stroke-1-3{stroke-width:1.3}.stroke-1{stroke-width:1}.stroke-3{stroke-width:3}.stroke-6{stroke-width:6}.base-fallback-style{width:16px;height:16px;stroke-width:1.5}@keyframes float-68ec5307{0%,to{transform:translateY(0)}50%{transform:translateY(-10px)}}@keyframes rotate-68ec5307{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.spaceman-logo[data-v-68ec5307]{animation:float-68ec5307 3s ease-in-out infinite}.spaceman-logo #planet[data-v-68ec5307]{animation:rotate-68ec5307 20s linear infinite}.spaceman-logo #stars[data-v-68ec5307]{animation:float-68ec5307 4s ease-in-out infinite reverse}.tooltip-wrapper[data-v-6df39f10]{display:inline-block;position:relative}.tooltip-content[data-v-6df39f10]{position:absolute;z-index:1000;background:#212529;color:#fff;font-size:13px;padding:8px 12px;border-radius:6px;white-space:normal;max-width:300px;pointer-events:none;opacity:.95;box-shadow:0 4px 12px #00000026;left:50%;transform:translate(-50%);bottom:120%;line-height:1.4;min-width:200px;word-wrap:break-word;word-break:break-word}.tooltip-content.bottom[data-v-6df39f10]{top:120%;bottom:auto}.tooltip-content.left[data-v-6df39f10]{left:auto;right:120%;top:50%;bottom:auto;transform:translateY(-50%)}.tooltip-content.right[data-v-6df39f10]{left:120%;top:50%;bottom:auto;transform:translateY(-50%)}.tooltip-content.force-bottom[data-v-6df39f10]{top:120%;bottom:auto}.fade-enter-active[data-v-6df39f10],.fade-leave-active[data-v-6df39f10]{transition:opacity .15s}.fade-enter-from[data-v-6df39f10],.fade-leave-to[data-v-6df39f10]{opacity:0}.freddy-button[data-v-e7669851]{display:inline-flex;align-items:center;justify-content:center;gap:8px;border:none;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,sans-serif;cursor:pointer;transition:all .2s ease;box-sizing:border-box;color:#031525;border:1px solid #e5e7eb;--button-height: 44px}.freddy-button.freddy-button--primary[data-v-e7669851]{background:#7ba8ef!important;color:#fff!important;border:1px solid #7ba8ef!important}.freddy-button.freddy-button--primary.freddy-button--destructive[data-v-e7669851]{background:#ef4444!important;color:#fff!important;border:1px solid #ef4444!important}.freddy-button.freddy-button--primary[data-v-e7669851]:hover:not(.freddy-button--disabled):not(.freddy-button--loading){background:#1d4ed8;border-color:#1d4ed8}.freddy-button.freddy-button--primary.freddy-button--destructive[data-v-e7669851]:hover:not(.freddy-button--disabled):not(.freddy-button--loading){background:#dc2626;border-color:#dc2626}.freddy-button.freddy-button--primary[data-v-e7669851]:active:not(.freddy-button--disabled):not(.freddy-button--loading){background:#1742af;border-color:#1742af}.freddy-button.freddy-button--primary.freddy-button--destructive[data-v-e7669851]:active:not(.freddy-button--disabled):not(.freddy-button--loading){background:#b91c1c;border-color:#b91c1c}.freddy-button.freddy-button--secondary[data-v-e7669851]{background:transparent!important;color:#7ba8ef!important;border:1px solid #7ba8ef!important}.freddy-button.freddy-button--secondary.freddy-button--destructive[data-v-e7669851]{background:transparent!important;color:#ef4444!important;border:1px solid #ef4444!important}.freddy-button.freddy-button--secondary[data-v-e7669851]:hover:not(.freddy-button--disabled):not(.freddy-button--loading){background:#e0e7ff}.freddy-button.freddy-button--secondary.freddy-button--destructive[data-v-e7669851]:hover:not(.freddy-button--disabled):not(.freddy-button--loading){background:#fef2f2}.freddy-button.freddy-button--secondary[data-v-e7669851]:active:not(.freddy-button--disabled):not(.freddy-button--loading){background:#c7d2fe}.freddy-button.freddy-button--secondary.freddy-button--destructive[data-v-e7669851]:active:not(.freddy-button--disabled):not(.freddy-button--loading){background:#fee2e2}.freddy-button.freddy-button--tertiary[data-v-e7669851]{background:transparent!important;color:#4b5563!important;border:1px solid #9ca3af!important}.freddy-button.freddy-button--tertiary.freddy-button--destructive[data-v-e7669851]{background:transparent!important;color:#ef4444!important;border:1px solid #ef4444!important}.freddy-button.freddy-button--tertiary[data-v-e7669851]:hover:not(.freddy-button--disabled):not(.freddy-button--loading){background:#f3f4f6}.freddy-button.freddy-button--tertiary.freddy-button--destructive[data-v-e7669851]:hover:not(.freddy-button--disabled):not(.freddy-button--loading){background:#fef2f2}.freddy-button.freddy-button--tertiary[data-v-e7669851]:active:not(.freddy-button--disabled):not(.freddy-button--loading){background:#e5e7eb}.freddy-button.freddy-button--tertiary.freddy-button--destructive[data-v-e7669851]:active:not(.freddy-button--disabled):not(.freddy-button--loading){background:#fee2e2}.freddy-button.freddy-button--text[data-v-e7669851]{background:none!important;color:#2563eb!important;border:none!important;box-shadow:none!important;padding:0!important;margin:0!important;min-width:0!important;min-height:0!important;gap:4px}.freddy-button.freddy-button--text.freddy-button--destructive[data-v-e7669851]{color:#ef4444!important}.freddy-button.freddy-button--text[data-v-e7669851]:hover:not(.freddy-button--disabled):not(.freddy-button--loading),.freddy-button.freddy-button--text.freddy-button--destructive[data-v-e7669851]:hover:not(.freddy-button--disabled):not(.freddy-button--loading),.freddy-button.freddy-button--text[data-v-e7669851]:active:not(.freddy-button--disabled):not(.freddy-button--loading),.freddy-button.freddy-button--text.freddy-button--destructive[data-v-e7669851]:active:not(.freddy-button--disabled):not(.freddy-button--loading){background:none!important;border:none!important}.freddy-button.freddy-button--success[data-v-e7669851]{background:#22c55e!important;color:#fff!important;border:1px solid #22c55e!important}.freddy-button.freddy-button--success.freddy-button--destructive[data-v-e7669851]{background:#fff!important;color:#ef4444!important;border:1px solid #ef4444!important}.freddy-button.freddy-button--success[data-v-e7669851]:hover:not(.freddy-button--disabled):not(.freddy-button--loading){background:#16a34a;border-color:#16a34a}.freddy-button.freddy-button--success.freddy-button--destructive[data-v-e7669851]:hover:not(.freddy-button--disabled):not(.freddy-button--loading){background:#fef2f2}.freddy-button.freddy-button--success[data-v-e7669851]:active:not(.freddy-button--disabled):not(.freddy-button--loading){background:#15803d;border-color:#15803d}.freddy-button.freddy-button--success.freddy-button--destructive[data-v-e7669851]:active:not(.freddy-button--disabled):not(.freddy-button--loading){background:#fee2e2}.freddy-button--s[data-v-e7669851]{height:20px;min-width:20px;font-size:14px;font-weight:600;gap:4px;border-radius:4px;padding:0 8px;--button-height: 20px}.freddy-button--sm[data-v-e7669851]{height:28px;min-width:28px;font-size:16px;font-weight:600;gap:6px;border-radius:8px;padding:0 12px;--button-height: 28px}.freddy-button--md[data-v-e7669851]{height:44px;min-width:44px;font-size:16px;font-weight:600;gap:8px;border-radius:8px;padding:0 16px;--button-height: 44px}.freddy-button--lg[data-v-e7669851]{height:44px;min-width:44px;font-size:16px;font-weight:600;gap:8px;border-radius:8px;padding:0 20px;--button-height: 44px}.freddy-button--xl[data-v-e7669851]{height:48px;min-width:48px;font-size:16px;font-weight:600;gap:10px;border-radius:8px;padding:0 24px;--button-height: 48px}.freddy-button[data-v-e7669851]:hover:not(.freddy-button--disabled):not(.freddy-button--loading){background:#f9fafb;border-color:#d1d5db;transform:translateY(-1px);box-shadow:0 2px 4px #0000001a}.freddy-button[data-v-e7669851]:focus-visible{outline:none;box-shadow:0 0 0 2px #fff,0 0 0 4px #00aeef;background:#f0f9ff}.freddy-button.freddy-button--text[data-v-e7669851]:focus-visible{box-shadow:0 0 0 2px #fff,0 0 0 4px #2563eb}.freddy-button.freddy-button--destructive[data-v-e7669851]:focus-visible{box-shadow:0 0 0 2px #fff,0 0 0 4px #ef4444}.freddy-button.freddy-button--success[data-v-e7669851]:focus-visible{box-shadow:0 0 0 2px #fff,0 0 0 4px #22c55e}.freddy-button[data-v-e7669851]:active:not(.freddy-button--disabled):not(.freddy-button--loading){transform:translateY(0);box-shadow:0 1px 2px #0000001a;background:#e0f2fe}.freddy-button--disabled[data-v-e7669851]{opacity:.6;cursor:not-allowed;transform:none!important;box-shadow:none!important;background:#f3f4f6;color:#9ca3af;border-color:#e5e7eb}.freddy-button--disabled[data-v-e7669851]:hover{transform:none!important;box-shadow:none!important;background:#f3f4f6;border-color:#e5e7eb}.freddy-button--loading[data-v-e7669851]{cursor:wait;position:relative}.freddy-button--loading[data-v-e7669851]:hover{transform:none!important;box-shadow:none!important;background:#fff;border-color:#e5e7eb}.button-icon[data-v-e7669851]{flex-shrink:0;color:currentColor;display:flex;align-items:center;justify-content:center}.button-hover-icon[data-v-e7669851]{cursor:pointer;transition:color .2s ease}.button-hover-icon[data-v-e7669851]:hover{color:#ef4444}.freddy-button--s .button-icon[data-v-e7669851]{width:16px;height:16px}.freddy-button--s .button-icon svg[data-v-e7669851]{width:16px;height:16px}.freddy-button--sm .button-icon[data-v-e7669851]{width:20px;height:20px}.freddy-button--sm .button-icon svg[data-v-e7669851]{width:20px;height:20px}.freddy-button--md .button-icon[data-v-e7669851]{width:20px;height:20px}.freddy-button--md .button-icon svg[data-v-e7669851]{width:20px;height:20px}.freddy-button--lg .button-icon[data-v-e7669851]{width:20px;height:20px}.freddy-button--lg .button-icon svg[data-v-e7669851]{width:20px;height:20px}.freddy-button--xl .button-icon[data-v-e7669851]{width:22px;height:22px}.freddy-button--xl .button-icon svg[data-v-e7669851]{width:22px;height:22px}.button-label[data-v-e7669851]{display:flex;align-items:center;white-space:nowrap}.button-spinner[data-v-e7669851]{display:inline-block;width:1em;height:1em;min-width:16px;min-height:16px;border:2px solid rgba(0,0,0,.08);border-top:2px solid #1a237e;border-radius:50%;animation:spin 1s linear infinite;margin-right:8px;vertical-align:middle;background:#00000008}.freddy-button--icon-only[data-v-e7669851]{justify-content:center;align-items:center;padding:0;gap:0;width:var(--button-height)!important;min-width:var(--button-height)!important;aspect-ratio:1}.button-icon-center[data-v-e7669851]{margin:0;display:flex;align-items:center;justify-content:center;width:100%;height:100%}.button-custom-content[data-v-e7669851]{display:flex;align-items:center;justify-content:center;width:100%;height:100%}.icon-linear{display:flex;flex-direction:row;align-items:center;justify-content:flex-end;font-size:14px;color:#b1a8a8}.freddy-plugins-user-avatar-base[data-v-720c99ab]{width:100px;height:20px;object-fit:cover}.icon-progress-complete,.icon-progress-going,.icon-radio,.icon-radio-fill{display:flex;flex-direction:row;align-items:center;justify-content:flex-end;font-size:14px;color:#b1a8a8}.base-checkbox[data-v-ba9cd543]{position:relative;display:inline-flex;align-items:center;justify-content:center;width:16px;height:16px;border-radius:4px;border:1px solid currentColor;cursor:pointer;transition:background-color .15s ease-in-out,border-color .15s ease-in-out;-webkit-user-select:none;user-select:none}.checked[data-v-ba9cd543]{background-color:#fff;border-color:transparent}.checked-blue[data-v-ba9cd543]{background-color:#7ba8ef;border-color:transparent}.not-checked[data-v-ba9cd543]{background-color:transparent;border-color:currentColor}.checkbox-input[data-v-ba9cd543]{position:absolute;opacity:0;pointer-events:none}.checkbox-dash[data-v-ba9cd543]{width:8px;height:2px;background-color:#fff;border-radius:1px}.checkbox-icon[data-v-ba9cd543]{width:16px;height:16px;pointer-events:none}.is-disabled[data-v-ba9cd543]{opacity:.5;cursor:not-allowed}.switch[data-v-b509be1d]{position:relative;border:none;background:none;padding:0;cursor:pointer;outline:none;display:inline-flex;align-items:center;transition:opacity .2s}.switch--s[data-v-b509be1d]{width:28px;height:16px}.switch--sm[data-v-b509be1d]{width:32px;height:18px}.switch--md[data-v-b509be1d]{width:40px;height:22px}.switch--lg[data-v-b509be1d]{width:48px;height:26px}.switch--xl[data-v-b509be1d]{width:56px;height:30px}.switch--disabled[data-v-b509be1d]{opacity:.5;cursor:not-allowed}.switch__track[data-v-b509be1d]{position:absolute;left:0;top:0;width:100%;height:100%;background:#e5e5ea;border-radius:999px;transition:background .2s}.switch--on .switch__track[data-v-b509be1d]{background:#5c3bce}.switch__thumb[data-v-b509be1d]{position:absolute;background:#fff;border-radius:50%;box-shadow:0 1px 3px #00000026;transition:left .2s}.switch--s .switch__thumb[data-v-b509be1d]{top:1px;left:1px;width:14px;height:14px}.switch--s.switch--on .switch__thumb[data-v-b509be1d]{left:13px}.switch--sm .switch__thumb[data-v-b509be1d]{top:1px;left:1px;width:16px;height:16px}.switch--sm.switch--on .switch__thumb[data-v-b509be1d]{left:15px}.switch--md .switch__thumb[data-v-b509be1d]{top:2px;left:2px;width:18px;height:18px}.switch--md.switch--on .switch__thumb[data-v-b509be1d]{left:20px}.switch--lg .switch__thumb[data-v-b509be1d]{top:2px;left:2px;width:22px;height:22px}.switch--lg.switch--on .switch__thumb[data-v-b509be1d]{left:24px}.switch--xl .switch__thumb[data-v-b509be1d]{top:3px;left:3px;width:24px;height:24px}.switch--xl.switch--on .switch__thumb[data-v-b509be1d]{left:29px}.dropdown-wrapper{position:relative;display:inline-block}.dropdown-chevron{width:16px;height:16px}.dropdown-menu{position:absolute;left:0;min-width:200px;width:fit-content;max-width:360px;border:1px solid #ccc;border-radius:8px;box-shadow:0 2px 8px #00000014;z-index:1000;padding:4px 0;overflow:visible;background:#fff;pointer-events:auto}.dropdown-menu--down{top:100%;margin-top:4px}.dropdown-menu--up{bottom:100%;margin-bottom:4px}.dropdown-search-bar{width:100%;max-width:100%;box-sizing:border-box;padding:4px 8px;border-bottom:1px solid #eee}.dropdown-search-input{width:100%;max-width:100%;box-sizing:border-box;padding:4px 6px;border:1px solid #ccc;border-radius:4px;font-size:13px}.dropdown-options{list-style:none;margin:0;padding:0;max-height:280px;overflow-y:auto}.dropdown-option{display:flex;align-items:center;justify-content:space-between;gap:6px;padding:6px 12px;cursor:pointer;font-size:14px;border-radius:4px;transition:all .2s ease;background:#fff!important;pointer-events:auto;-webkit-user-select:none;user-select:none;color:#000;border:1px solid transparent}.dropdown-option-label{display:flex;align-items:center;gap:6px;flex:1 1 0;min-width:0;white-space:normal;word-break:break-word}.dropdown-option-icon{width:16px;height:16px;flex-shrink:0}.dropdown-option-icon--right{margin-left:auto}.dropdown-option-shortcut{margin-left:auto;font-size:12px;color:#888;background:#0000000a;border-radius:4px;padding:1px 6px;font-family:monospace}.dropdown-option:hover{background:#f8fafc!important;border-color:#e2e8f0;box-shadow:0 1px 3px #0000001a;transform:translateY(-1px)}.dropdown-no-options{padding:8px 12px;color:#888;font-size:13px}.dropdown-toggle-checkbox{width:16px;height:16px;border:1px solid #ccc;border-radius:4px;display:flex;align-items:center;justify-content:center;cursor:pointer}.dropdown-toggle-inner{width:12px;height:12px;background-color:#fff;border-radius:2px}.checked{background-color:#007bff;border-color:#007bff}.checked .dropdown-toggle-inner{display:none}.dropdown-option>.switch{flex-shrink:0}.input-field-wrapper[data-v-583bb24a]{display:flex;flex-direction:column;gap:.5rem;width:100%}.input-field-label[data-v-583bb24a]{font-size:.875rem;font-weight:500;line-height:1.25rem}.input-field-label--freddy[data-v-583bb24a]{color:#cbd6e3}.input-field-label--contentplate[data-v-583bb24a]{color:#374151}.required-asterisk[data-v-583bb24a]{color:#ef4444;margin-left:.125rem}.input-field-container[data-v-583bb24a]{position:relative;display:flex;align-items:center;transition:all .2s ease;cursor:text}.input-field-container--freddy[data-v-583bb24a]{background-color:#1e293b;border:1px solid #475569}.input-field-container--freddy[data-v-583bb24a]:hover:not(.input-field-container--disabled){border-color:#64748b}.input-field-container--freddy.input-field-container--focused[data-v-583bb24a]{border-color:#3b82f6;box-shadow:0 0 0 1px #3b82f6}.input-field-container--freddy.input-field-container--destructive[data-v-583bb24a]{border-color:#ef4444}.input-field-container--freddy.input-field-container--destructive[data-v-583bb24a]:hover{border-color:#f87171}.input-field-container--contentplate[data-v-583bb24a]{background-color:#fff;border:1px solid #d1d5db}.input-field-container--contentplate[data-v-583bb24a]:hover:not(.input-field-container--disabled){border-color:#9ca3af}.input-field-container--contentplate.input-field-container--focused[data-v-583bb24a]{border-color:#3b82f6;box-shadow:0 0 0 1px #3b82f6}.input-field-container--contentplate.input-field-container--destructive[data-v-583bb24a]{border-color:#ef4444}.input-field-container--contentplate.input-field-container--destructive[data-v-583bb24a]:hover{border-color:#f87171}.input-field-container[data-v-583bb24a]:hover:not(.input-field-container--disabled){border-color:#64748b}.input-field-container--focused[data-v-583bb24a]{border-color:#3b82f6;box-shadow:0 0 0 1px #3b82f6}.input-field-container--destructive[data-v-583bb24a]{border-color:#ef4444}.input-field-container--destructive[data-v-583bb24a]:hover{border-color:#f87171}.input-field-container--disabled[data-v-583bb24a]{opacity:.5;cursor:not-allowed}.input-field-container--sm[data-v-583bb24a]{height:40px;border-radius:8px}.input-field-container--md[data-v-583bb24a]{height:44px;border-radius:12px}.input-field-container--lg[data-v-583bb24a]{height:48px;border-radius:16px}.input-leading-dropdown[data-v-583bb24a],.input-leading-text[data-v-583bb24a]{display:flex;align-items:center;gap:.25rem;padding:0 .75rem;font-size:.875rem;font-weight:500;cursor:pointer;transition:color .2s ease}.input-leading-dropdown--freddy[data-v-583bb24a],.input-leading-text--freddy[data-v-583bb24a]{border-right:1px solid #475569;color:#94a3b8}.input-leading-dropdown--contentplate[data-v-583bb24a],.input-leading-text--contentplate[data-v-583bb24a]{border-right:1px solid #d1d5db;color:#6b7280}.input-leading-dropdown--freddy[data-v-583bb24a]:hover{color:#cbd6e3}.input-leading-dropdown--contentplate[data-v-583bb24a]:hover{color:#374151}.dropdown-text[data-v-583bb24a]{font-size:.875rem;font-weight:500}.dropdown-icon[data-v-583bb24a]{width:1rem;height:1rem;stroke:currentColor}.input-leading-icon[data-v-583bb24a]{width:1.25rem;height:1.25rem;margin-left:.75rem}.input-leading-icon--freddy[data-v-583bb24a]{stroke:#94a3b8}.input-leading-icon--contentplate[data-v-583bb24a]{stroke:#6b7280}.input-leading-text--freddy[data-v-583bb24a]{color:#94a3b8}.input-leading-text--contentplate[data-v-583bb24a]{color:#6b7280}.input-field[data-v-583bb24a]{flex:1;background:transparent;border:none;outline:none;font-size:.875rem;font-weight:500;line-height:1.25rem;padding:0 .75rem;height:100%}.input-field--freddy[data-v-583bb24a]{color:#cbd6e3}.input-field--contentplate[data-v-583bb24a]{color:#374151}.input-field--freddy[data-v-583bb24a]::placeholder{color:#94a3b8;opacity:.7}.input-field--contentplate[data-v-583bb24a]::placeholder{color:#9ca3af;opacity:.7}.input-field--disabled[data-v-583bb24a]{cursor:not-allowed}.input-field--freddy.input-field--destructive[data-v-583bb24a]{color:#ef4444}.input-field--freddy.input-field--destructive[data-v-583bb24a]::placeholder{color:#f87171}.input-field--contentplate.input-field--destructive[data-v-583bb24a]{color:#ef4444}.input-field--contentplate.input-field--destructive[data-v-583bb24a]::placeholder{color:#f87171}.input-trailing-dropdown[data-v-583bb24a]{display:flex;align-items:center;gap:.25rem;padding:0 .75rem;font-size:.875rem;font-weight:500;cursor:pointer;transition:color .2s ease}.input-trailing-dropdown--freddy[data-v-583bb24a]{border-left:1px solid #475569;color:#94a3b8}.input-trailing-dropdown--contentplate[data-v-583bb24a]{border-left:1px solid #d1d5db;color:#6b7280}.input-trailing-dropdown--freddy[data-v-583bb24a]:hover{color:#cbd6e3}.input-trailing-dropdown--contentplate[data-v-583bb24a]:hover{color:#374151}.input-trailing-button[data-v-583bb24a]{display:flex;align-items:center;padding:0 .75rem;background:transparent;color:#3b82f6;font-size:.875rem;font-weight:500;cursor:pointer;transition:color .2s ease}.input-trailing-button--freddy[data-v-583bb24a]{border-left:1px solid #475569}.input-trailing-button--contentplate[data-v-583bb24a]{border-left:1px solid #d1d5db}.input-trailing-button[data-v-583bb24a]:hover{color:#60a5fa}.input-clear-button[data-v-583bb24a]{display:flex;align-items:center;justify-content:center;width:2rem;height:2rem;margin-right:.5rem;background:transparent;border:none;cursor:pointer;border-radius:.25rem;transition:all .2s ease}.input-clear-button--freddy[data-v-583bb24a]{color:#94a3b8}.input-clear-button--contentplate[data-v-583bb24a]{color:#6b7280}.input-clear-button--freddy[data-v-583bb24a]:hover{background-color:#374151;color:#cbd6e3}.input-clear-button--contentplate[data-v-583bb24a]:hover{background-color:#f3f4f6;color:#374151}.clear-icon[data-v-583bb24a]{width:1rem;height:1rem;stroke:currentColor}.input-help-icon[data-v-583bb24a]{width:1.25rem;height:1.25rem;margin-right:.75rem;cursor:help;transition:stroke .2s ease}.input-help-icon--freddy[data-v-583bb24a]{stroke:#94a3b8}.input-help-icon--contentplate[data-v-583bb24a]{stroke:#6b7280}.input-help-icon--freddy[data-v-583bb24a]:hover{stroke:#cbd6e3}.input-help-icon--contentplate[data-v-583bb24a]:hover{stroke:#374151}.input-hint-text[data-v-583bb24a]{font-size:.75rem;line-height:1rem;margin:0}.input-hint-text--freddy[data-v-583bb24a]{color:#94a3b8}.input-hint-text--contentplate[data-v-583bb24a]{color:#6b7280}.input-field-container--payment .input-field[data-v-583bb24a]{font-family:Courier New,monospace;letter-spacing:.05em}.input-field-container--freddy-input[data-v-583bb24a]{background-color:#0f172a;border-color:#334155}.input-field-container--freddy-input .input-field[data-v-583bb24a]{color:#f1f5f9}.input-field-container--freddy-input .input-field[data-v-583bb24a]::placeholder{color:#64748b}.logo-container[data-v-f79c78a5]{display:flex;align-items:center;gap:.75rem}.logo-container--sm[data-v-f79c78a5]{gap:.5rem}.logo-container--lg[data-v-f79c78a5]{gap:1rem}.logo-image[data-v-f79c78a5]{object-fit:contain;height:auto}.logo-image--sm[data-v-f79c78a5]{width:64px;height:64px}.logo-image--md[data-v-f79c78a5]{width:96px;height:96px}.logo-image--lg[data-v-f79c78a5]{width:128px;height:128px}.logo-image--brand-no-title.logo-image--lg[data-v-f79c78a5]{width:180px;height:54px}.logo-image[data-v-f79c78a5]{max-width:100%;height:auto;aspect-ratio:200/60}.logo-title[data-v-f79c78a5]{margin:0;font-weight:600;color:#374151}.logo-title--sm[data-v-f79c78a5]{font-size:1rem}.logo-title--md[data-v-f79c78a5]{font-size:1.25rem}.logo-title--lg[data-v-f79c78a5]{font-size:1.5rem}.bg-modalBackgroundBlur{background-color:#1d2e47e6;-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px)}.bg-background{background-color:#0f172a}.modal-header,.modal-body,.modal-footer{margin-bottom:1rem}.modal-header:last-child,.modal-body:last-child,.modal-footer:last-child{margin-bottom:0}.modal-enter-active,.modal-leave-active{transition:all .3s ease}.modal-enter-from,.modal-leave-to{opacity:0;transform:scale(.9)}.modal-enter-to,.modal-leave-from{opacity:1;transform:scale(1)}@media (min-width: 1280px){.modal-container-large{width:56.25rem}}@media (max-width: 1279px) and (min-width: 1024px){.modal-container-large{width:56.25rem}}@media (max-width: 1023px) and (min-width: 768px){.modal-container-large{width:56.25rem}}@media (max-width: 767px) and (min-width: 640px){.modal-container-large{width:45.625rem}}@media (max-width: 639px) and (min-width: 480px){.modal-container-large{width:31.25rem}}@media (max-width: 479px){.modal-container-large{width:auto;max-width:90%}}.freddy-modal-overlay{position:fixed;top:0;left:0;width:100vw;height:100vh;display:flex;align-items:center;justify-content:center;background-color:#031525c4;-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);z-index:1000;overflow:auto}.freddy-modal-content{background-color:#031525;border-radius:40px;box-shadow:0 0 10px 2px #ffffff40;padding:30px;position:relative;margin:auto;min-width:370px;max-width:90%;width:auto}.freddy-modal-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:28px;gap:8px}.freddy-modal-title{font-size:29px;line-height:35px;font-weight:600;margin:0}.freddy-modal-close{background:none;border:none;font-size:35px;font-weight:400;color:#fff;padding:0;line-height:1;cursor:pointer}.freddy-modal-close-icon{width:16px;height:16px;stroke-width:2px}.freddy-pagination-nav{width:100%;display:flex;gap:.25rem;justify-content:space-between}.freddy-pagination-number-button{display:flex;align-items:center;justify-content:center;border-radius:4px;color:#6b7280;cursor:pointer;padding:.5rem .75rem;height:auto;background:transparent;border:none;transition:background-color .2s,color .2s}.freddy-pagination-number-button.active,.freddy-pagination-number-button.bg-white{background-color:#ffffff1a;color:#fff}.freddy-pagination-dynamic-container{display:flex;gap:.25rem}.freddy-pagination-end-button{margin-left:16px;display:flex;align-items:center;justify-content:center;padding:0 1rem;height:2.5rem;margin-inline-start:0;line-height:1.25rem;color:#6b7280;background-color:#031525;border:1px solid rgba(255,255,255,.2);border-radius:.5rem;cursor:pointer;transition:background-color .2s,color .2s}.freddy-pagination-hover-enabled:hover{background-color:#ffffff1a;color:#cbd6e3;cursor:pointer}.freddy-plugin-spinner{width:20px;height:20px;border:2px solid #f3f3f3;border-top-color:transparent;border-radius:50%;animation:spin 1s linear infinite}@keyframes spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.freddy-search-wrapper{display:flex;box-sizing:border-box;align-items:flex-start;gap:.5rem;height:37px;width:100%;border:1px solid #333741;padding-left:.875rem;padding-right:.875rem;border-radius:.5rem;cursor:text}.freddy-search-icon{flex-shrink:0;width:1.25rem;height:1.25rem;align-self:center;stroke:#fff6}.freddy-search-input{flex:1 1 auto;width:100%;font-size:14px;font-weight:500;line-height:16px;background:transparent;border:none;outline:none;color:#cbd6e3;align-self:center}.freddy-search-input::placeholder{color:#fff6;opacity:.7}.freddy-search-spinner{width:21px!important;align-self:center}.chat-bar-send-btn[data-v-97cd4e5d]{background:#00aeef;border:none;padding:0;margin-bottom:4px;cursor:pointer;border-radius:50%;display:flex;align-items:center;justify-content:center;color:#fff;transition:color .2s,background .2s}.chat-bar-send-btn--s[data-v-97cd4e5d]{width:24px;height:24px}.chat-bar-send-btn--sm[data-v-97cd4e5d]{width:28px;height:28px}.chat-bar-send-btn--md[data-v-97cd4e5d]{width:32px;height:32px}.chat-bar-send-btn--lg[data-v-97cd4e5d]{width:36px;height:36px}.chat-bar-send-btn--xl[data-v-97cd4e5d]{width:40px;height:40px}.chat-bar-send-btn.active[data-v-97cd4e5d]{color:#cbd6e3}.chat-bar-send-btn[data-v-97cd4e5d]:disabled{background:#ccc;cursor:not-allowed;color:#aaa}.chat-bar-send-icon[data-v-97cd4e5d]{width:20px;height:20px}.chat-bar-send-btn--s .chat-bar-send-icon[data-v-97cd4e5d]{width:14px;height:14px}.chat-bar-send-btn--sm .chat-bar-send-icon[data-v-97cd4e5d]{width:16px;height:16px}.chat-bar-send-btn--lg .chat-bar-send-icon[data-v-97cd4e5d]{width:22px;height:22px}.chat-bar-send-btn--xl .chat-bar-send-icon[data-v-97cd4e5d]{width:24px;height:24px}.skeleton-card[data-v-e5337fdf]{background-color:#1c2b3aa8;padding:1rem;border:1px solid #ffffff0a;border-radius:.5rem;box-shadow:4px 7px 27px -13px #fdfdff0f;display:flex;flex-direction:column;gap:1rem}.skeleton-paragraph[data-v-e5337fdf],.skeleton-single-box[data-v-e5337fdf],.skeleton-single-paragraph[data-v-e5337fdf]{padding:1rem;border:1px solid #ffffff0a;border-radius:.75rem;background-color:#1c2b3aa8;box-shadow:4px 7px 27px -13px #fdfdff0f;display:flex;flex-direction:column;gap:.5rem}.skeleton-single-box[data-v-e5337fdf]{padding:8px}.skeleton-table[data-v-e5337fdf]{background-color:#1c2b3aa8;padding:1rem;border:1px solid #ffffff0a;border-radius:.5rem;overflow:hidden;box-shadow:4px 7px 27px -13px #fdfdff0f;display:flex;flex-direction:column;gap:1rem}.skeleton-wave[data-v-e5337fdf]{position:relative;overflow:hidden;background-color:#031525}.skeleton-wave[data-v-e5337fdf]:after{content:"";position:absolute;top:0;left:-150%;height:100%;width:150%;background:linear-gradient(90deg,#fff0,#ffffffb3,#fff0);animation:wave-e5337fdf 3s ease-in-out infinite}@keyframes wave-e5337fdf{0%{left:-150%}50%{left:100%}to{left:100%}}.skeleton-line[data-v-e5337fdf]{background-color:#ffffff17;border-radius:.25rem}.skeleton-h-4[data-v-e5337fdf]{height:1rem}.skeleton-h-6[data-v-e5337fdf]{height:1.5rem}.skeleton-h-8[data-v-e5337fdf]{height:2rem}.skeleton-w-full[data-v-e5337fdf]{width:100%}.skeleton-w-5-6[data-v-e5337fdf]{width:83.333333%}.skeleton-w-3-4[data-v-e5337fdf]{width:75%}.skeleton-w-40[data-v-e5337fdf]{width:10rem}.skeleton-w-32[data-v-e5337fdf]{width:8rem}.table-full[data-v-e5337fdf]{min-width:100%;border-collapse:collapse}.td-padding[data-v-e5337fdf]{padding:.5rem 1.5rem}@keyframes fade-in-right-819849ab{0%{opacity:0;transform:translate(100%)}to{opacity:1;transform:translate(0)}}.freddy-plugin-snackbar-container[data-v-819849ab]{position:fixed;right:1.25rem;bottom:.5rem;padding-bottom:17px;z-index:50}.freddy-plugin-snackbar-container--side70[data-v-819849ab]{width:78%}.freddy-plugin-snackbar-container--half[data-v-819849ab]{width:50%}.freddy-plugin-snackbar-container--full[data-v-819849ab]{width:100%;padding-left:2.5rem}.freddy-plugin-snackbar[data-v-819849ab]{margin-top:.75rem;padding:1rem;border-radius:1.5rem;background-color:#031525;animation:fade-in-right-819849ab .5s ease-out}.freddy-plugin-snackbar--info[data-v-819849ab]{border:2px solid #ffffff;box-shadow:0 0 0 1px #fff}.freddy-plugin-snackbar--danger[data-v-819849ab]{border:2px solid #f79009;box-shadow:0 0 0 1px #f79009}.freddy-plugin-snackbar--success[data-v-819849ab]{border:2px solid #12b76a;box-shadow:0 0 0 1px #12b76a}.freddy-plugin-snackbar-content[data-v-819849ab]{display:flex;justify-content:space-between;align-items:center;position:relative}.freddy-plugin-snackbar-left[data-v-819849ab]{display:flex;gap:1rem}.freddy-plugin-snackbar-icon[data-v-819849ab]{height:16px;width:16px;stroke-width:2;color:#fff;border-radius:9999px;padding:.25rem;border:4px solid transparent;box-sizing:content-box}.freddy-plugin-snackbar-icon--info[data-v-819849ab]{border-color:#fff3;background-color:#ffffff17}.freddy-plugin-snackbar-icon--danger[data-v-819849ab]{border-color:#f79009;background-color:#fdb022}.freddy-plugin-snackbar-icon--success[data-v-819849ab]{border-color:#12b76a;background-color:#68c57c}.freddy-plugin-snackbar-text[data-v-819849ab]{display:flex;flex-direction:column;gap:.375rem;color:#fff}.freddy-plugin-snackbar-title[data-v-819849ab]{font-size:.875rem;font-weight:600;margin:0;color:#fff}.freddy-plugin-snackbar-message[data-v-819849ab]{font-size:.875rem;font-weight:500;line-height:normal;margin:0;color:#fff}.freddy-plugin-snackbar-close-btn[data-v-819849ab]{position:absolute;right:.5rem;top:0;background:none;border:none;cursor:pointer}.freddy-plugin-snackbar-close-icon[data-v-819849ab]{height:10px;width:10px;stroke-width:1.67;color:#fff}.freddy-plugin-nav-bar{display:flex;width:100%;gap:24px;border-bottom:1px solid rgba(255,255,255,.09);padding-right:10px;font-family:Inter,sans-serif;font-size:.875rem;font-weight:600}.freddy-plugin-menu-button{all:unset;display:flex;flex-direction:column;padding-top:8px;cursor:pointer}.freddy-plugin-active-tab{width:100%;background-color:#fff;height:2px;border-top-left-radius:.375rem;border-top-right-radius:.375rem}.toast-wrapper[data-v-a89a07b6]{position:fixed;right:10px;bottom:10px;display:flex;flex-direction:column;gap:.5rem}.toast-item[data-v-a89a07b6]{display:flex;align-items:center;padding:.625rem;gap:.625rem;border-radius:10px;box-shadow:0 1px 3px #0000001a;animation:fadeIn-a89a07b6 .3s ease}.toast-success[data-v-a89a07b6]{background-color:#099250;--toast-icon-color: #099250}.toast-danger[data-v-a89a07b6]{background-color:#e71d41;--toast-icon-color: #e71d41}.toast-info[data-v-a89a07b6]{background-color:#3182ce;--toast-icon-color: #3182ce}.toast-icon-wrapper[data-v-a89a07b6]{width:1.25rem;height:1.25rem;background-color:#fff;border-radius:9999px;display:flex;align-items:center;justify-content:center;flex-shrink:0}.toast-icon[data-v-a89a07b6]{width:100%;height:100%;padding:.25rem;color:var(--toast-icon-color)}.toast-message[data-v-a89a07b6]{min-width:16rem;max-width:420px;flex:1 1 auto;font-size:1rem;font-weight:500;color:#fff}.toast-close-button[data-v-a89a07b6]{width:1rem;height:1rem;background:transparent;border:none;display:flex;align-items:center;justify-content:center;flex-shrink:0}.toast-close-icon[data-v-a89a07b6]{width:100%;height:100%;padding:.125rem;color:#fff}@keyframes fadeIn-a89a07b6{0%{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}