@puckeditor/plugin-pages 0.6.1-canary.18d3d70e

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/dist/index.css ADDED
@@ -0,0 +1,1899 @@
1
+ /* css-module:/home/runner/work/platform/platform/packages/platform-client/components/Toast/Toast.module.css/#css-module-data */
2
+ ._Viewport_13rvx_1 {
3
+ position: fixed;
4
+ width: 250px;
5
+ margin: 0 auto;
6
+ bottom: 1rem;
7
+ right: 1rem;
8
+ left: auto;
9
+ top: auto;
10
+ @media (min-width: 500px) {
11
+ bottom: 2rem;
12
+ right: 2rem;
13
+ width: 300px;
14
+ }
15
+ }
16
+ ._Toast_13rvx_17 {
17
+ --gap: 0.75rem;
18
+ --offset-y: calc( var(--toast-offset-y) * -1 + (var(--toast-index) * var(--gap) * -1) + var(--toast-swipe-movement-y) );
19
+ position: absolute;
20
+ right: 0;
21
+ margin: 0 auto;
22
+ box-sizing: border-box;
23
+ background: var(--puck-color-white);
24
+ color: var(--puck-color-grey-01);
25
+ border: 1px solid var(--puck-color-grey-09);
26
+ padding: 1rem;
27
+ width: 100%;
28
+ box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
29
+ background-clip: padding-box;
30
+ border-radius: 0.5rem;
31
+ bottom: 0;
32
+ left: auto;
33
+ margin-right: 0;
34
+ -webkit-user-select: none;
35
+ user-select: none;
36
+ transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s;
37
+ cursor: default;
38
+ z-index: calc(1000 - var(--toast-index));
39
+ transform: translateX(var(--toast-swipe-movement-x)) translateY(calc(var(--toast-swipe-movement-y) + (min(var(--toast-index), 10) * -20%))) scale(calc(max(0, 1 - (var(--toast-index) * 0.1))));
40
+ &::after {
41
+ content: "";
42
+ position: absolute;
43
+ width: 100%;
44
+ top: 100%;
45
+ left: 0;
46
+ height: calc(var(--gap) + 1px);
47
+ }
48
+ &[data-expanded] {
49
+ transform: translateX(var(--toast-swipe-movement-x)) translateY(var(--offset-y));
50
+ }
51
+ &[data-starting-style],
52
+ &[data-ending-style] {
53
+ transform: translateY(150%);
54
+ }
55
+ &[data-limited] {
56
+ opacity: 0;
57
+ }
58
+ &[data-ending-style] {
59
+ opacity: 0;
60
+ &[data-swipe-direction=up] {
61
+ transform: translateY(calc(var(--toast-swipe-movement-y) - 150%));
62
+ }
63
+ &[data-swipe-direction=left] {
64
+ transform: translateX(calc(var(--toast-swipe-movement-x) - 150%)) translateY(var(--offset-y));
65
+ }
66
+ &[data-swipe-direction=right] {
67
+ transform: translateX(calc(var(--toast-swipe-movement-x) + 150%)) translateY(var(--offset-y));
68
+ }
69
+ &[data-swipe-direction=down] {
70
+ transform: translateY(calc(var(--toast-swipe-movement-y) + 150%));
71
+ }
72
+ }
73
+ }
74
+ ._Title_13rvx_95 {
75
+ font-weight: 500;
76
+ font-size: 0.975rem;
77
+ line-height: 1.25rem;
78
+ margin: 0;
79
+ }
80
+ ._Description_13rvx_102 {
81
+ font-size: 0.925rem;
82
+ line-height: 1.25rem;
83
+ margin: 0;
84
+ margin-top: 0.25rem;
85
+ }
86
+ ._Action_13rvx_109 {
87
+ appearance: none;
88
+ background: var(--puck-color-azure-04);
89
+ border: 1px solid transparent;
90
+ border-radius: 8px;
91
+ color: var(--puck-color-white);
92
+ display: inline-flex;
93
+ align-items: center;
94
+ gap: 8px;
95
+ letter-spacing: 0.05ch;
96
+ font-family: var(--puck-font-family);
97
+ font-size: 14px;
98
+ font-weight: 400;
99
+ box-sizing: border-box;
100
+ line-height: 1;
101
+ text-align: center;
102
+ text-decoration: none;
103
+ transition: background-color 50ms ease-in;
104
+ cursor: pointer;
105
+ white-space: nowrap;
106
+ margin: 8px 0 0;
107
+ padding: 8px 12px;
108
+ }
109
+ @media (hover: hover) and (pointer: fine) {
110
+ ._Action_13rvx_109:hover {
111
+ background-color: var(--puck-color-azure-03);
112
+ }
113
+ }
114
+ ._Action_13rvx_109:active {
115
+ background-color: var(--puck-color-azure-02);
116
+ }
117
+ ._Close_13rvx_143 {
118
+ position: absolute;
119
+ top: 0.5rem;
120
+ right: 0.5rem;
121
+ border: none;
122
+ background: transparent;
123
+ width: 1.25rem;
124
+ height: 1.25rem;
125
+ display: flex;
126
+ align-items: center;
127
+ justify-content: center;
128
+ border-radius: 0.25rem;
129
+ }
130
+ @media (hover: hover) and (pointer: fine) {
131
+ ._Close_13rvx_143:hover {
132
+ background-color: var(--puck-color-grey-11);
133
+ }
134
+ }
135
+ ._Icon_13rvx_163 {
136
+ width: 1rem;
137
+ height: 1rem;
138
+ }
139
+
140
+ /* ../platform-client/styles/color.css */
141
+ :root {
142
+ --puck-color-rose-01: #4a001c;
143
+ --puck-color-rose-02: #670833;
144
+ --puck-color-rose-03: #87114c;
145
+ --puck-color-rose-04: #a81a66;
146
+ --puck-color-rose-05: #bc5089;
147
+ --puck-color-rose-06: #cc7ca5;
148
+ --puck-color-rose-07: #d89aba;
149
+ --puck-color-rose-08: #e3b8cf;
150
+ --puck-color-rose-09: #efd6e3;
151
+ --puck-color-rose-10: #f6eaf1;
152
+ --puck-color-rose-11: #faf4f8;
153
+ --puck-color-rose-12: #fef8fc;
154
+ --puck-color-azure-01: #00175d;
155
+ --puck-color-azure-02: #002c77;
156
+ --puck-color-azure-03: #014292;
157
+ --puck-color-azure-04: #0158ad;
158
+ --puck-color-azure-05: #3479be;
159
+ --puck-color-azure-06: #6499cf;
160
+ --puck-color-azure-07: #88b0da;
161
+ --puck-color-azure-08: #abc7e5;
162
+ --puck-color-azure-09: #cfdff0;
163
+ --puck-color-azure-10: #e7eef7;
164
+ --puck-color-azure-11: #f3f6fb;
165
+ --puck-color-azure-12: #f7faff;
166
+ --puck-color-green-01: #002000;
167
+ --puck-color-green-02: #043604;
168
+ --puck-color-green-03: #084e08;
169
+ --puck-color-green-04: #0c680c;
170
+ --puck-color-green-05: #1d882f;
171
+ --puck-color-green-06: #2faa53;
172
+ --puck-color-green-07: #56c16f;
173
+ --puck-color-green-08: #7dd78b;
174
+ --puck-color-green-09: #b8e8bf;
175
+ --puck-color-green-10: #ddf3e0;
176
+ --puck-color-green-11: #eff8f0;
177
+ --puck-color-green-12: #f3fcf4;
178
+ --puck-color-yellow-01: #211000;
179
+ --puck-color-yellow-02: #362700;
180
+ --puck-color-yellow-03: #4c4000;
181
+ --puck-color-yellow-04: #645a00;
182
+ --puck-color-yellow-05: #877614;
183
+ --puck-color-yellow-06: #ab9429;
184
+ --puck-color-yellow-07: #bfac4e;
185
+ --puck-color-yellow-08: #d4c474;
186
+ --puck-color-yellow-09: #e6deb1;
187
+ --puck-color-yellow-10: #f3efd9;
188
+ --puck-color-yellow-11: #f9f7ed;
189
+ --puck-color-yellow-12: #fcfaf0;
190
+ --puck-color-red-01: #4c0000;
191
+ --puck-color-red-02: #6a0a10;
192
+ --puck-color-red-03: #8a1422;
193
+ --puck-color-red-04: #ac1f35;
194
+ --puck-color-red-05: #bf5366;
195
+ --puck-color-red-06: #ce7e8e;
196
+ --puck-color-red-07: #d99ca8;
197
+ --puck-color-red-08: #e4b9c2;
198
+ --puck-color-red-09: #efd7db;
199
+ --puck-color-red-10: #f6eaec;
200
+ --puck-color-red-11: #faf4f5;
201
+ --puck-color-red-12: #fff9fa;
202
+ --puck-color-grey-01: #181818;
203
+ --puck-color-grey-02: #292929;
204
+ --puck-color-grey-03: #404040;
205
+ --puck-color-grey-04: #5a5a5a;
206
+ --puck-color-grey-05: #767676;
207
+ --puck-color-grey-06: #949494;
208
+ --puck-color-grey-07: #ababab;
209
+ --puck-color-grey-08: #c3c3c3;
210
+ --puck-color-grey-09: #dcdcdc;
211
+ --puck-color-grey-10: #efefef;
212
+ --puck-color-grey-11: #f5f5f5;
213
+ --puck-color-grey-12: #fafafa;
214
+ --puck-color-black: #000000;
215
+ --puck-color-white: #ffffff;
216
+ }
217
+
218
+ /* ../platform-client/styles/typography.css */
219
+ :root {
220
+ --space-m-unitless: 24;
221
+ --puck-font-size-scale-base-unitless: 12;
222
+ --puck-font-size-xxxs-unitless: 12;
223
+ --puck-font-size-xxs-unitless: 14;
224
+ --puck-font-size-xs-unitless: 16;
225
+ --puck-font-size-s-unitless: 18;
226
+ --puck-font-size-m-unitless: 21;
227
+ --puck-font-size-l-unitless: 24;
228
+ --puck-font-size-xl-unitless: 28;
229
+ --puck-font-size-xxl-unitless: 36;
230
+ --puck-font-size-xxxl-unitless: 48;
231
+ --puck-font-size-xxxxl-unitless: 56;
232
+ --puck-font-size-xxxs: calc(1rem * var(--puck-font-size-xxxs-unitless) / 16);
233
+ --puck-font-size-xxs: calc(1rem * var(--puck-font-size-xxs-unitless) / 16);
234
+ --puck-font-size-xs: calc(1rem * var(--puck-font-size-xs-unitless) / 16);
235
+ --puck-font-size-s: calc(1rem * var(--puck-font-size-s-unitless) / 16);
236
+ --puck-font-size-m: calc(1rem * var(--puck-font-size-m-unitless) / 16);
237
+ --puck-font-size-l: calc(1rem * var(--puck-font-size-l-unitless) / 16);
238
+ --puck-font-size-xl: calc(1rem * var(--puck-font-size-xl-unitless) / 16);
239
+ --puck-font-size-xxl: calc(1rem * var(--puck-font-size-xxl-unitless) / 16);
240
+ --puck-font-size-xxxl: calc(1rem * var(--puck-font-size-xxxl-unitless) / 16);
241
+ --puck-font-size-xxxxl: calc( 1rem * var(--puck-font-size-xxxxl-unitless) / 16 );
242
+ --puck-font-size-base: var(--puck-font-size-xs);
243
+ --line-height-reset: 1;
244
+ --line-height-xs: calc( var(--space-m-unitless) / var(--puck-font-size-m-unitless) );
245
+ --line-height-s: calc( var(--space-m-unitless) / var(--puck-font-size-s-unitless) );
246
+ --line-height-m: calc( var(--space-m-unitless) / var(--puck-font-size-xs-unitless) );
247
+ --line-height-l: calc( var(--space-m-unitless) / var(--puck-font-size-xxs-unitless) );
248
+ --line-height-xl: calc( var(--space-m-unitless) / var(--puck-font-size-scale-base-unitless) );
249
+ --line-height-base: var(--line-height-m);
250
+ --fallback-font-stack:
251
+ -apple-system,
252
+ BlinkMacSystemFont,
253
+ Segoe UI,
254
+ Helvetica Neue,
255
+ sans-serif,
256
+ Apple Color Emoji,
257
+ Segoe UI Emoji,
258
+ Segoe UI Symbol;
259
+ --puck-font-family: "Inter Fallback", var(--fallback-font-stack);
260
+ --puck-font-family-monospaced:
261
+ ui-monospace,
262
+ "Cascadia Code",
263
+ "Source Code Pro",
264
+ Menlo,
265
+ Consolas,
266
+ "DejaVu Sans Mono",
267
+ monospace;
268
+ }
269
+ @supports (font-variation-settings: normal) {
270
+ :root {
271
+ --puck-font-family: Inter, var(--fallback-font-stack);
272
+ }
273
+ }
274
+
275
+ /* ../platform-client/styles.css */
276
+ body {
277
+ font-family: var(--puck-font-family);
278
+ }
279
+ p {
280
+ margin: 0;
281
+ }
282
+
283
+ /* css-module:/home/runner/work/platform/platform/packages/platform-client/components/ActionModal/ActionModal.module.css/#css-module-data */
284
+ ._ActionModal_r3pvy_1 {
285
+ display: block;
286
+ min-width: 356px;
287
+ }
288
+ ._ActionModal-header_r3pvy_6 {
289
+ color: var(--puck-color-grey-02);
290
+ display: flex;
291
+ justify-content: center;
292
+ text-align: center;
293
+ flex-direction: column;
294
+ gap: 4px;
295
+ padding: 24px;
296
+ padding-bottom: 16px;
297
+ }
298
+ ._ActionModal-body_r3pvy_17 {
299
+ padding: 24px;
300
+ padding-top: 8px;
301
+ }
302
+ ._ActionModal-footer_r3pvy_22 {
303
+ border-top: 1px solid var(--puck-color-grey-09);
304
+ background-color: var(--puck-color-grey-12);
305
+ display: flex;
306
+ justify-content: flex-end;
307
+ padding: 16px 24px;
308
+ }
309
+
310
+ /* css-module:/home/runner/work/platform/platform/packages/platform-client/components/Modal/Modal.module.css/#css-module-data */
311
+ ._Modal-background_1bedq_1 {
312
+ align-items: center;
313
+ display: flex;
314
+ justify-content: center;
315
+ background: #00000050;
316
+ position: fixed;
317
+ top: 0;
318
+ left: 0;
319
+ right: 0;
320
+ bottom: 0;
321
+ z-index: 2;
322
+ opacity: 0;
323
+ pointer-events: none;
324
+ }
325
+ ._Modal--visible_1bedq_16 ._Modal-background_1bedq_1 {
326
+ opacity: 1;
327
+ transition: opacity ease 100ms;
328
+ pointer-events: auto;
329
+ }
330
+ ._Modal-modal_1bedq_22 {
331
+ background: white;
332
+ border-radius: 16px;
333
+ display: block;
334
+ max-height: calc(100vh - 24px);
335
+ margin-inline: 24px;
336
+ overflow: auto;
337
+ }
338
+
339
+ /* css-module:/home/runner/work/platform/platform/packages/platform-client/components/Button/Button.module.css/#css-module-data */
340
+ ._Button_1tog0_1 {
341
+ appearance: none;
342
+ background: none;
343
+ border: 1px solid transparent;
344
+ border-radius: 8px;
345
+ color: var(--puck-color-white);
346
+ display: inline-flex;
347
+ align-items: center;
348
+ gap: 8px;
349
+ letter-spacing: 0.05ch;
350
+ font-family: var(--puck-font-family);
351
+ font-size: 14px;
352
+ font-weight: 400;
353
+ box-sizing: border-box;
354
+ line-height: 1;
355
+ text-align: center;
356
+ text-decoration: none;
357
+ transition: background-color 50ms ease-in;
358
+ cursor: pointer;
359
+ white-space: nowrap;
360
+ margin: 0;
361
+ }
362
+ ._Button_1tog0_1:hover,
363
+ ._Button_1tog0_1:active {
364
+ transition: none;
365
+ }
366
+ ._Button_1tog0_1:focus-visible {
367
+ outline: 2px solid var(--puck-color-azure-05);
368
+ outline-offset: 2px;
369
+ }
370
+ ._Button--medium_1tog0_34 {
371
+ min-height: 34px;
372
+ padding-bottom: 7px;
373
+ padding-left: 15px;
374
+ padding-right: 15px;
375
+ padding-top: 7px;
376
+ }
377
+ ._Button--large_1tog0_42 {
378
+ padding-bottom: 11px;
379
+ padding-left: 19px;
380
+ padding-right: 19px;
381
+ padding-top: 11px;
382
+ }
383
+ ._Button--brand_1tog0_49 {
384
+ background-image:
385
+ linear-gradient(
386
+ 210deg,
387
+ var(--puck-color-azure-01) 0%,
388
+ var(--puck-color-azure-03) 30%,
389
+ var(--puck-color-red-05) 130%);
390
+ border: none;
391
+ }
392
+ @media (hover: hover) and (pointer: fine) {
393
+ ._Button--brand_1tog0_49:hover {
394
+ opacity: 0.8;
395
+ }
396
+ }
397
+ ._Button--brand_1tog0_49:active {
398
+ opacity: 0.8;
399
+ }
400
+ ._Button--primary_1tog0_69 {
401
+ background: var(--puck-color-azure-04);
402
+ }
403
+ @media (hover: hover) and (pointer: fine) {
404
+ ._Button--primary_1tog0_69:hover {
405
+ background-color: var(--puck-color-azure-03);
406
+ }
407
+ }
408
+ ._Button--primary_1tog0_69:active {
409
+ background-color: var(--puck-color-azure-02);
410
+ }
411
+ ._Button--secondary_1tog0_83 {
412
+ border: 1px solid currentColor;
413
+ color: currentColor;
414
+ }
415
+ @media (hover: hover) and (pointer: fine) {
416
+ ._Button--secondary_1tog0_83:hover {
417
+ background-color: var(--puck-color-azure-12);
418
+ color: var(--puck-color-black);
419
+ }
420
+ }
421
+ ._Button--secondary_1tog0_83:active {
422
+ background-color: var(--puck-color-azure-11);
423
+ color: var(--puck-color-black);
424
+ }
425
+ ._Button--danger_1tog0_100 {
426
+ background: var(--puck-color-red-04);
427
+ }
428
+ @media (hover: hover) and (pointer: fine) {
429
+ ._Button--danger_1tog0_100:hover {
430
+ background-color: var(--puck-color-red-03);
431
+ }
432
+ }
433
+ ._Button--danger_1tog0_100:active {
434
+ background-color: var(--puck-color-red-02);
435
+ }
436
+ ._Button--flush_1tog0_114 {
437
+ border-radius: 0;
438
+ }
439
+ ._Button--ghost_1tog0_118 {
440
+ align-items: center;
441
+ background-color: transparent;
442
+ border: none;
443
+ border-radius: 8px;
444
+ color: var(--puck-color-azure-04);
445
+ display: flex;
446
+ }
447
+ @media (hover: hover) and (pointer: fine) {
448
+ ._Button--ghost_1tog0_118:hover {
449
+ background-color: var(--puck-color-grey-11);
450
+ color: var(--puck-color-azure-04);
451
+ cursor: pointer;
452
+ }
453
+ }
454
+ ._Button--disabled_1tog0_135,
455
+ ._Button--disabled_1tog0_135:hover,
456
+ ._Button--secondary_1tog0_83._Button--disabled_1tog0_135,
457
+ ._Button--secondary_1tog0_83._Button--disabled_1tog0_135:hover {
458
+ background-color: var(--puck-color-grey-12);
459
+ border-color: var(--puck-color-grey-08);
460
+ color: var(--puck-color-grey-07);
461
+ cursor: not-allowed;
462
+ }
463
+ ._Button--fullWidth_1tog0_145 {
464
+ justify-content: center;
465
+ width: 100%;
466
+ }
467
+ ._Button-spinner_1tog0_150 {
468
+ padding-left: 8px;
469
+ }
470
+
471
+ /* css-module:/home/runner/work/platform/platform/packages/platform-client/components/Loader/styles.module.css/#css-module-data */
472
+ @keyframes _loader-animation_nacdm_1 {
473
+ 0% {
474
+ transform: rotate(0deg) scale(1);
475
+ }
476
+ 50% {
477
+ transform: rotate(180deg) scale(0.8);
478
+ }
479
+ 100% {
480
+ transform: rotate(360deg) scale(1);
481
+ }
482
+ }
483
+ ._Loader_nacdm_13 {
484
+ background: transparent;
485
+ border-radius: 100%;
486
+ border: 2px solid currentColor;
487
+ border-bottom-color: transparent;
488
+ display: inline-block;
489
+ animation: _loader-animation_nacdm_1 1s 0s infinite linear;
490
+ animation-fill-mode: both;
491
+ }
492
+
493
+ /* css-module:/home/runner/work/platform/platform/packages/platform-client/components/Heading/Heading.module.css/#css-module-data */
494
+ ._Heading_1sfil_1 {
495
+ display: block;
496
+ font-family: var(--heading-font-family, var(--puck-font-family));
497
+ font-weight: 700;
498
+ margin: 0;
499
+ }
500
+ ._Heading_1sfil_1 b {
501
+ font-weight: 700;
502
+ }
503
+ ._Heading--brand_1sfil_12,
504
+ ._Heading--brand_1sfil_12 * {
505
+ font-weight: 500;
506
+ letter-spacing: -7%;
507
+ line-height: 1;
508
+ }
509
+ ._Heading--brand_1sfil_12 b {
510
+ font-weight: 700;
511
+ }
512
+ ._Heading--xxxxl_1sfil_23 {
513
+ font-size: var(--puck-font-size-xxxl);
514
+ }
515
+ ._Heading--xxxl_1sfil_27 {
516
+ font-size: var(--puck-font-size-xxl);
517
+ }
518
+ ._Heading--xxl_1sfil_31 {
519
+ font-size: var(--puck-font-size-xl);
520
+ }
521
+ ._Heading--xl_1sfil_35 {
522
+ font-size: var(--puck-font-size-l);
523
+ }
524
+ ._Heading--l_1sfil_39 {
525
+ font-size: var(--puck-font-size-m);
526
+ }
527
+ ._Heading--m_1sfil_43 {
528
+ font-size: var(--puck-font-size-s);
529
+ }
530
+ ._Heading--s_1sfil_47 {
531
+ font-size: var(--puck-font-size-xs);
532
+ }
533
+ ._Heading--xs_1sfil_51 {
534
+ font-size: var(--puck-font-size-xxs);
535
+ }
536
+ ._Heading--xxs_1sfil_55 {
537
+ font-size: var(--puck-font-size-xxs);
538
+ }
539
+ @media (min-width: 768px) {
540
+ ._Heading--xxxxl_1sfil_23 {
541
+ font-size: var(--puck-font-size-xxxxl);
542
+ }
543
+ ._Heading--xxxl_1sfil_27 {
544
+ font-size: var(--puck-font-size-xxxl);
545
+ }
546
+ ._Heading--xxl_1sfil_31 {
547
+ font-size: var(--puck-font-size-xxl);
548
+ }
549
+ ._Heading--xl_1sfil_35 {
550
+ font-size: var(--puck-font-size-xl);
551
+ }
552
+ ._Heading--l_1sfil_39 {
553
+ font-size: var(--puck-font-size-l);
554
+ }
555
+ ._Heading--m_1sfil_43 {
556
+ font-size: var(--puck-font-size-m);
557
+ }
558
+ ._Heading--s_1sfil_47 {
559
+ font-size: var(--puck-font-size-s);
560
+ }
561
+ ._Heading--xs_1sfil_51 {
562
+ font-size: var(--puck-font-size-xs);
563
+ }
564
+ ._Heading--xxs_1sfil_55 {
565
+ font-size: var(--puck-font-size-xxs);
566
+ }
567
+ }
568
+
569
+ /* css-module:/home/runner/work/platform/platform/packages/platform-client/components/Align/Align.module.css/#css-module-data */
570
+ ._Align_oewlu_1 {
571
+ align-items: flex-start;
572
+ display: flex;
573
+ flex-direction: column;
574
+ }
575
+ ._Align--horizontalCenter_oewlu_7 {
576
+ align-items: center;
577
+ }
578
+ ._Align--horizontalRight_oewlu_11 {
579
+ align-items: flex-end;
580
+ }
581
+ ._Align--verticalBottom_oewlu_15 {
582
+ height: 100%;
583
+ justify-content: flex-end;
584
+ }
585
+ ._Align--verticalCenter_oewlu_20 {
586
+ height: 100%;
587
+ justify-content: center;
588
+ }
589
+ ._Align-item_oewlu_25 {
590
+ position: relative;
591
+ }
592
+
593
+ /* css-module:/home/runner/work/platform/platform/packages/platform-client/components/AutoForm/AutoForm.module.css/#css-module-data */
594
+ ._AutoForm_1vmh9_1 {
595
+ display: flex;
596
+ gap: 16px;
597
+ flex-direction: column;
598
+ }
599
+ ._AutoForm_1vmh9_1 ._Input_3pq3z_1 {
600
+ box-sizing: border-box;
601
+ padding: 0px !important;
602
+ }
603
+
604
+ /* css-module:/home/runner/work/platform/platform/packages/platform-client/components/Card/Card.module.css/#css-module-data */
605
+ ._Card_rpnal_1 {
606
+ background-color: white;
607
+ border: 1px solid var(--puck-color-grey-08);
608
+ border-radius: 16px;
609
+ color: var(--puck-color-black);
610
+ display: block;
611
+ text-decoration: none;
612
+ }
613
+ ._Card_rpnal_1:hover {
614
+ cursor: pointer;
615
+ background: var(--puck-color-azure-11);
616
+ border-color: currentColor;
617
+ color: var(--puck-color-azure-04);
618
+ }
619
+ ._Card-body_rpnal_17 {
620
+ align-items: center;
621
+ display: flex;
622
+ padding: 16px;
623
+ }
624
+ ._Card-title_rpnal_23 {
625
+ margin-bottom: 4px;
626
+ }
627
+ ._Card-subtitle_rpnal_27 {
628
+ margin: 0;
629
+ text-wrap: wrap;
630
+ }
631
+ ._Card-chevron_rpnal_32 {
632
+ align-items: center;
633
+ display: none;
634
+ margin-left: auto;
635
+ }
636
+ ._Card--showChevron_rpnal_38 ._Card-chevron_rpnal_32 {
637
+ display: flex;
638
+ }
639
+ ._Card--isActive_rpnal_42 {
640
+ border-color: var(--puck-color-azure-04);
641
+ color: var(--puck-color-azure-04);
642
+ }
643
+
644
+ /* css-module:/home/runner/work/platform/platform/packages/platform-client/components/CardSelector/styles.module.css/#css-module-data */
645
+ ._CardSelector_1ogry_1 {
646
+ display: grid;
647
+ gap: 16px;
648
+ }
649
+ @media (min-width: 768px) {
650
+ ._CardSelector_1ogry_1 {
651
+ grid-template-columns: 1fr 1fr;
652
+ }
653
+ }
654
+ ._CardSelectorOption_1ogry_12 {
655
+ display: flex;
656
+ flex-direction: column;
657
+ background-color: white;
658
+ padding: 16px;
659
+ text-align: left;
660
+ max-width: 640px;
661
+ border: 1px solid var(--puck-color-grey-09);
662
+ border-radius: 16px;
663
+ }
664
+ ._CardSelectorOption--isSelected_1ogry_23 {
665
+ border-color: var(--puck-color-azure-04);
666
+ }
667
+ ._CardSelectorOption--disabled_1ogry_27 {
668
+ color: var(--puck-color-grey-05);
669
+ }
670
+ ._CardSelectorOption-description_1ogry_31 {
671
+ font-size: var(--puck-font-size-xs);
672
+ }
673
+ ._CardSelectorOption-body_1ogry_35 {
674
+ margin-top: 12px;
675
+ }
676
+ ._CardSelectorOption_1ogry_12:hover:not(._CardSelectorOption--isSelected_1ogry_23):not(._CardSelectorOption--disabled_1ogry_27) {
677
+ background-color: var(--puck-color-azure-12);
678
+ border-color: var(--puck-color-azure-04);
679
+ cursor: pointer;
680
+ }
681
+
682
+ /* css-module:/home/runner/work/platform/platform/packages/platform-client/components/Code/Code.module.css/#css-module-data */
683
+ ._Code_d4378_1 {
684
+ border-radius: 8px;
685
+ position: relative;
686
+ overflow: hidden;
687
+ border: 1px solid var(--puck-color-grey-09);
688
+ }
689
+ ._Code-body_d4378_8 pre {
690
+ margin: 0;
691
+ }
692
+ ._Code-body_d4378_8 code {
693
+ display: block;
694
+ font-size: var(--puck-font-size-xs);
695
+ padding-block: 16px;
696
+ overflow-y: auto;
697
+ }
698
+ ._Code--light_d4378_19 {
699
+ background-color: white;
700
+ }
701
+ ._Code-body_d4378_8 code > span {
702
+ padding-left: 16px;
703
+ padding-right: 64px;
704
+ }
705
+ @media (min-width: 768px) {
706
+ ._Code-body_d4378_8 code > span {
707
+ padding-right: 16px;
708
+ }
709
+ }
710
+ ._Code-header_d4378_34 {
711
+ align-items: center;
712
+ background-color: #24292e;
713
+ border-bottom: 1px solid var(--puck-color-grey-03);
714
+ color: white;
715
+ display: flex;
716
+ padding-left: 12px;
717
+ padding-right: 12px;
718
+ overflow-y: auto;
719
+ }
720
+ ._Code--light_d4378_19 ._Code-header_d4378_34 {
721
+ background-color: white;
722
+ border-bottom-color: var(--puck-color-grey-09);
723
+ color: var(--puck-color-grey-03);
724
+ }
725
+ ._Code-corner_d4378_51 {
726
+ background-color: #24292e80;
727
+ border-bottom-left-radius: 4px;
728
+ color: white;
729
+ display: none;
730
+ position: absolute;
731
+ padding: 12px 16px;
732
+ pointer-events: none;
733
+ right: 0;
734
+ }
735
+ ._Code_d4378_1:hover ._Code-corner_d4378_51 {
736
+ display: flex;
737
+ }
738
+ ._Code--light_d4378_19 ._Code-corner_d4378_51 {
739
+ background-color: #ffffff80;
740
+ color: var(--puck-color-grey-03);
741
+ }
742
+ ._Code-actions_d4378_71 {
743
+ margin-left: auto;
744
+ pointer-events: auto;
745
+ }
746
+ ._Code--lineNumbers_d4378_76 ._Code-body_d4378_8 code {
747
+ counter-reset: step;
748
+ counter-increment: step 0;
749
+ }
750
+ ._Code--lineNumbers_d4378_76 ._Code-body_d4378_8 code .line::before {
751
+ content: counter(step);
752
+ counter-increment: step;
753
+ width: 1rem;
754
+ margin-right: 1.5rem;
755
+ display: inline-block;
756
+ text-align: right;
757
+ color: rgba(115, 138, 148, 0.4);
758
+ }
759
+ ._Code-tabs_d4378_91 {
760
+ display: flex;
761
+ list-style: none;
762
+ padding: 0;
763
+ margin: 0;
764
+ padding-right: 8px;
765
+ }
766
+ ._Tab_d4378_99 {
767
+ border-block: 3px solid transparent;
768
+ padding: 4px 2px;
769
+ }
770
+ ._Tab--isActive_d4378_104 {
771
+ border-bottom-color: white;
772
+ }
773
+ ._Tab--light_d4378_108._Tab--isActive_d4378_104 {
774
+ border-bottom-color: var(--puck-color-grey-03);
775
+ }
776
+ ._Tab-button_d4378_112 {
777
+ background-color: transparent;
778
+ border: none;
779
+ border-radius: 8px;
780
+ color: var(--puck-color-grey-08);
781
+ font-size: var(--puck-font-size-xxs);
782
+ padding: 8px;
783
+ cursor: pointer;
784
+ white-space: nowrap;
785
+ }
786
+ ._Tab--light_d4378_108 ._Tab-button_d4378_112 {
787
+ color: var(--puck-color-grey-06);
788
+ }
789
+ ._Tab--isActive_d4378_104 ._Tab-button_d4378_112 {
790
+ color: white;
791
+ }
792
+ ._Tab--light_d4378_108._Tab--isActive_d4378_104 ._Tab-button_d4378_112 {
793
+ color: var(--puck-color-grey-01);
794
+ }
795
+ ._Tab-button_d4378_112:hover {
796
+ background: var(--puck-color-grey-03);
797
+ }
798
+ ._Tab--light_d4378_108 ._Tab-button_d4378_112:hover {
799
+ background: var(--puck-color-grey-11);
800
+ }
801
+
802
+ /* css-module:/home/runner/work/platform/platform/packages/platform-client/components/IconButton/IconButton.module.css/#css-module-data */
803
+ ._IconButton_thegm_1 {
804
+ align-items: center;
805
+ background: transparent;
806
+ border: none;
807
+ border-radius: 4px;
808
+ color: currentColor;
809
+ display: flex;
810
+ font-family: var(--puck-font-family);
811
+ justify-content: center;
812
+ padding: 4px;
813
+ transition: background-color 50ms ease-in, color 50ms ease-in;
814
+ }
815
+ ._IconButton_thegm_1:focus-visible {
816
+ outline: 2px solid var(--puck-color-azure-05);
817
+ outline-offset: -2px;
818
+ }
819
+ @media (hover: hover) and (pointer: fine) {
820
+ ._IconButton_thegm_1:hover:not(._IconButton--disabled_thegm_20) {
821
+ background: var(--puck-color-azure-10);
822
+ cursor: pointer;
823
+ transition: none;
824
+ }
825
+ ._IconButton--dark_thegm_26:hover:not(._IconButton--disabled_thegm_20) {
826
+ background: var(--puck-color-grey-04);
827
+ color: var(--puck-color-azure-10);
828
+ }
829
+ }
830
+ ._IconButton_thegm_1:active {
831
+ background: var(--puck-color-azure-11);
832
+ transition: none;
833
+ }
834
+ ._IconButton-title_thegm_37 {
835
+ clip: rect(0 0 0 0);
836
+ clip-path: inset(100%);
837
+ height: 1px;
838
+ overflow: hidden;
839
+ position: absolute;
840
+ white-space: nowrap;
841
+ width: 1px;
842
+ }
843
+ ._IconButton--disabled_thegm_20 {
844
+ color: var(--puck-color-grey-07);
845
+ }
846
+
847
+ /* css-module:/home/runner/work/platform/platform/packages/platform-client/components/InfoBar/InfoBar.module.css/#css-module-data */
848
+ ._InfoBar_kchdj_1 {
849
+ border: 1px solid var(--puck-color-grey-10);
850
+ border-radius: 8px;
851
+ color: var(--puck-color-grey-03);
852
+ display: flex;
853
+ font-size: var(--puck-font-size-xxs);
854
+ margin-left: auto;
855
+ margin-right: auto;
856
+ overflow: hidden;
857
+ }
858
+ ._Info_kchdj_1 {
859
+ background-color: var(--puck-color-grey-12);
860
+ display: flex;
861
+ gap: 8px;
862
+ font-family: var(--puck-font-family-monospaced);
863
+ border-right: 1px solid var(--puck-color-grey-10);
864
+ padding: 12px 16px;
865
+ }
866
+ ._Info-title_kchdj_21 {
867
+ font-weight: 600;
868
+ }
869
+
870
+ /* css-module:/home/runner/work/platform/platform/packages/platform-client/components/Inline/Inline.module.css/#css-module-data */
871
+ ._Inline_6o5on_3 {
872
+ display: block;
873
+ }
874
+ ._Inline-inner_6o5on_7 {
875
+ display: flex;
876
+ flex-flow: row wrap;
877
+ }
878
+ ._Inline--noWrap_6o5on_12 > ._Inline-inner_6o5on_7 {
879
+ flex-flow: nowrap;
880
+ }
881
+ ._Inline--sizeNONE_6o5on_16 > ._Inline-inner_6o5on_7 {
882
+ gap: 0;
883
+ }
884
+ ._Inline--sizeXXS_6o5on_20 > ._Inline-inner_6o5on_7 {
885
+ gap: 4px;
886
+ }
887
+ ._Inline--sizeXS_6o5on_24 > ._Inline-inner_6o5on_7 {
888
+ gap: 6px;
889
+ }
890
+ ._Inline--sizeS_6o5on_28 > ._Inline-inner_6o5on_7 {
891
+ gap: 8px;
892
+ }
893
+ ._Inline--sizeM_6o5on_32 > ._Inline-inner_6o5on_7 {
894
+ gap: 16px;
895
+ }
896
+ ._Inline--sizeL_6o5on_36 > ._Inline-inner_6o5on_7 {
897
+ gap: 32px;
898
+ }
899
+ ._Inline--center_6o5on_40 > ._Inline-inner_6o5on_7 {
900
+ align-items: center;
901
+ }
902
+ ._Inline--centerH_6o5on_44 > ._Inline-inner_6o5on_7 {
903
+ justify-content: center;
904
+ }
905
+ ._Inline--grow_6o5on_48 > ._Inline-inner_6o5on_7 > * {
906
+ flex-basis: 0;
907
+ flex-grow: 1;
908
+ }
909
+
910
+ /* css-module:/home/runner/work/platform/platform/packages/platform-client/components/Link/Link.module.css/#css-module-data */
911
+ ._Link_1j70m_1 {
912
+ color: var(--puck-color-azure-04);
913
+ text-decoration: none;
914
+ }
915
+ ._Link_1j70m_1:hover {
916
+ color: var(--puck-color-azure-05);
917
+ }
918
+
919
+ /* css-module:/home/runner/work/platform/platform/packages/platform-client/components/Menu/styles.module.css/#css-module-data */
920
+ ._Menu_1tu16_1 {
921
+ display: flex;
922
+ position: relative;
923
+ }
924
+ ._Menu-content_1tu16_6 {
925
+ outline: none;
926
+ z-index: 1;
927
+ }
928
+ ._Menu-sections_1tu16_11 {
929
+ background-color: white;
930
+ border: 1px solid var(--puck-color-grey-09);
931
+ border-radius: 8px;
932
+ box-sizing: border-box;
933
+ box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
934
+ min-width: 128px;
935
+ padding-bottom: 4px;
936
+ padding-top: 4px;
937
+ }
938
+ ._Menu-action_1tu16_22 {
939
+ background: none;
940
+ border: none;
941
+ margin-left: auto;
942
+ padding: 0;
943
+ }
944
+ ._Menu-action_1tu16_22:hover:not(:disabled) {
945
+ cursor: pointer;
946
+ opacity: 0.8;
947
+ }
948
+ ._Menu-action_1tu16_22:disabled {
949
+ cursor: not-allowed;
950
+ opacity: 0.5;
951
+ }
952
+ ._Menu-action_1tu16_22:focus-visible {
953
+ outline: 2px solid var(--puck-color-azure-05);
954
+ outline-offset: 2px;
955
+ }
956
+ ._Menu-list_1tu16_44 {
957
+ list-style: none;
958
+ margin: 0;
959
+ padding: 0;
960
+ }
961
+ ._Menu-list_1tu16_44 + ._Menu-list_1tu16_44 {
962
+ border-top: 1px solid var(--puck-color-grey-09);
963
+ margin-top: 4px;
964
+ }
965
+ ._Menu-item_1tu16_55 {
966
+ align-items: center;
967
+ background: none;
968
+ border: none;
969
+ box-sizing: border-box;
970
+ color: var(--puck-color-grey-02);
971
+ display: flex;
972
+ font-size: var(--puck-font-size-xxs);
973
+ font-weight: 500;
974
+ gap: 8px;
975
+ padding: 8px 12px;
976
+ text-align: start;
977
+ text-decoration: none;
978
+ white-space: nowrap;
979
+ width: 100%;
980
+ }
981
+ a._Menu-item_1tu16_55,
982
+ button._Menu-item_1tu16_55 {
983
+ cursor: pointer;
984
+ }
985
+ a._Menu-item_1tu16_55:hover,
986
+ button._Menu-item_1tu16_55:hover {
987
+ background-color: var(--puck-color-azure-11);
988
+ color: var(--puck-color-azure-04);
989
+ }
990
+ ._Menu-item--disabled_1tu16_83 {
991
+ cursor: not-allowed;
992
+ opacity: 0.5;
993
+ }
994
+
995
+ /* css-module:/home/runner/work/platform/platform/packages/platform-client/components/Page/Page.module.css/#css-module-data */
996
+ ._Page_nkzj9_1 {
997
+ display: flex;
998
+ flex-direction: column;
999
+ height: 100%;
1000
+ overflow: hidden;
1001
+ }
1002
+ ._Page-masthead_nkzj9_8 {
1003
+ align-items: center;
1004
+ display: flex;
1005
+ gap: 16px;
1006
+ padding: 16px 24px;
1007
+ box-sizing: border-box;
1008
+ border-bottom: 1px solid var(--puck-color-grey-10);
1009
+ min-height: 64px;
1010
+ }
1011
+ ._Page-crumbs_nkzj9_18 {
1012
+ display: flex;
1013
+ gap: 32px;
1014
+ }
1015
+ ._Page-crumb_nkzj9_18 {
1016
+ color: var(--puck-color-grey-05);
1017
+ position: relative;
1018
+ white-space: nowrap;
1019
+ }
1020
+ ._Page-crumbLink_nkzj9_29 {
1021
+ color: var(--puck-color-grey-05);
1022
+ text-decoration: none;
1023
+ }
1024
+ ._Page-crumbLink_nkzj9_29:hover {
1025
+ color: var(--puck-color-azure-04);
1026
+ }
1027
+ ._Page-crumb_nkzj9_18:last-of-type {
1028
+ color: var(--puck-color-grey-01);
1029
+ font-weight: 600;
1030
+ }
1031
+ ._Page-crumb_nkzj9_18::before {
1032
+ position: absolute;
1033
+ content: "/";
1034
+ left: -19px;
1035
+ color: var(--puck-color-grey-09);
1036
+ font-weight: 400;
1037
+ }
1038
+ ._Page-crumb_nkzj9_18:first-of-type::before {
1039
+ display: none;
1040
+ }
1041
+ ._Page-crumb_nkzj9_18 {
1042
+ color: var(--puck-color-grey-05);
1043
+ position: relative;
1044
+ text-decoration: none;
1045
+ }
1046
+ ._Page-actions_nkzj9_61 {
1047
+ margin-left: auto;
1048
+ }
1049
+ ._Page-footer_nkzj9_65 {
1050
+ border-top: 1px solid var(--puck-color-grey-10);
1051
+ padding: 16px 24px;
1052
+ }
1053
+
1054
+ /* css-module:/home/runner/work/platform/platform/packages/platform-client/components/Pagination/Pagination.module.css/#css-module-data */
1055
+ ._Pagination_1okv2_1 {
1056
+ align-items: baseline;
1057
+ display: flex;
1058
+ gap: 4px;
1059
+ }
1060
+ ._PaginationButton_1okv2_8 {
1061
+ align-items: center;
1062
+ border-radius: 4px;
1063
+ color: var(--puck-color-grey-05);
1064
+ display: flex;
1065
+ justify-content: center;
1066
+ text-decoration: none;
1067
+ min-width: 40px;
1068
+ height: 40px;
1069
+ }
1070
+ ._PaginationButton--isActive_1okv2_20 {
1071
+ background-color: var(--puck-color-azure-11);
1072
+ color: var(--puck-color-azure-04);
1073
+ }
1074
+ ._PaginationButton_1okv2_8:hover {
1075
+ background-color: var(--puck-color-azure-11);
1076
+ color: var(--puck-color-azure-04);
1077
+ }
1078
+ ._Pagination-ellipsis_1okv2_30 {
1079
+ color: var(--puck-color-grey-05);
1080
+ }
1081
+
1082
+ /* css-module:/home/runner/work/platform/platform/packages/platform-client/components/PlanGrid/styles.module.css/#css-module-data */
1083
+ ._PlanGrid--loading_97rn7_1 {
1084
+ opacity: 0;
1085
+ }
1086
+ ._PlanGrid-grid_97rn7_5 {
1087
+ color: var(--puck-color-grey-02);
1088
+ display: grid;
1089
+ gap: 16px;
1090
+ text-align: left;
1091
+ @media (min-width: 768px) {
1092
+ grid-template-columns: 1fr 1fr 1fr;
1093
+ }
1094
+ }
1095
+ ._PlanGrid-enterprise_97rn7_16 {
1096
+ color: var(--puck-color-grey-04);
1097
+ font-size: var(--puck-font-size-xxs);
1098
+ margin-left: auto;
1099
+ margin-right: auto;
1100
+ padding-inline: 4px;
1101
+ padding-top: 20px;
1102
+ text-align: center;
1103
+ }
1104
+ ._PlanGrid-enterprise_97rn7_16 a {
1105
+ color: var(--puck-color-azure-04);
1106
+ cursor: pointer;
1107
+ font-weight: 500;
1108
+ }
1109
+
1110
+ /* css-module:/home/runner/work/platform/platform/packages/platform-client/components/PlanCard/styles.module.css/#css-module-data */
1111
+ ._PlanCard_16zmu_1 {
1112
+ border: 1px solid var(--puck-color-grey-09);
1113
+ border-radius: 16px;
1114
+ display: flex;
1115
+ gap: 8px;
1116
+ flex-direction: column;
1117
+ min-width: 256px;
1118
+ padding: 8px;
1119
+ position: relative;
1120
+ }
1121
+ ._PlanCard--enterprise_16zmu_12 {
1122
+ flex-direction: row;
1123
+ grid-column: span 3;
1124
+ }
1125
+ ._PlanCard-title_16zmu_17 {
1126
+ display: flex;
1127
+ gap: 8px;
1128
+ justify-content: space-between;
1129
+ font-size: var(--puck-font-size-xs);
1130
+ font-weight: 700;
1131
+ white-space: nowrap;
1132
+ }
1133
+ ._PlanCard-header_16zmu_26 {
1134
+ box-sizing: border-box;
1135
+ display: flex;
1136
+ flex-direction: column;
1137
+ gap: 4px;
1138
+ padding: 12px 16px;
1139
+ width: 100%;
1140
+ }
1141
+ ._PlanCard-features_16zmu_35 {
1142
+ display: grid;
1143
+ gap: 4px;
1144
+ list-style: none;
1145
+ margin: 0;
1146
+ padding: 0;
1147
+ }
1148
+ ._PlanCard-feature_16zmu_35 {
1149
+ align-items: center;
1150
+ display: flex;
1151
+ gap: 4px;
1152
+ color: var(--puck-color-grey-05);
1153
+ font-size: var(--puck-font-size-xxs);
1154
+ }
1155
+ ._PlanCard-featureIcon_16zmu_51 {
1156
+ align-self: flex-start;
1157
+ margin-top: 5px;
1158
+ }
1159
+ ._PlanCard-featureTitle_16zmu_56 {
1160
+ color: var(--puck-color-grey-04);
1161
+ font-weight: 600;
1162
+ }
1163
+ ._PlanCard-priceValue_16zmu_61 {
1164
+ font-size: var(--puck-font-size-m);
1165
+ }
1166
+ ._PlanCard-priceInterval_16zmu_65 {
1167
+ color: var(--puck-color-grey-05);
1168
+ }
1169
+ ._PlanCard-body_16zmu_69 {
1170
+ background-color: var(--puck-color-grey-12);
1171
+ border: 1px solid var(--puck-color-grey-11);
1172
+ border-radius: 8px;
1173
+ padding: 16px;
1174
+ flex-grow: 1;
1175
+ }
1176
+ ._PlanCard--enterprise_16zmu_12 ._PlanCard-body_16zmu_69 {
1177
+ display: flex;
1178
+ gap: 8px;
1179
+ width: 100%;
1180
+ }
1181
+ ._PlanCard-section_16zmu_83 {
1182
+ padding-bottom: 16px;
1183
+ min-width: 192px;
1184
+ }
1185
+ ._PlanCard-section_16zmu_83:last-of-type {
1186
+ padding-bottom: 0;
1187
+ }
1188
+ ._PlanCard-section_16zmu_83 + ._PlanCard-section_16zmu_83 {
1189
+ border-top: 1px solid var(--puck-color-grey-09);
1190
+ padding-top: 16px;
1191
+ }
1192
+ ._PlanCard--enterprise_16zmu_12 {
1193
+ ._PlanCard-section_16zmu_83 + ._PlanCard-section_16zmu_83 {
1194
+ border-left: 1px solid var(--puck-color-grey-09);
1195
+ border-top: none;
1196
+ padding-left: 16px;
1197
+ padding-top: 0;
1198
+ }
1199
+ }
1200
+ ._PlanCard-sectionTitle_16zmu_106 {
1201
+ font-size: var(--puck-font-size-xs);
1202
+ font-weight: 500;
1203
+ margin-bottom: 8px;
1204
+ }
1205
+ ._PlanCard-sectionBody_16zmu_112 + ._PlanCard-sectionTitle_16zmu_106 {
1206
+ border-top: 1px solid var(--puck-color-grey-09);
1207
+ margin-top: 16px;
1208
+ padding-top: 16px;
1209
+ }
1210
+ ._PlanCard-sectionBody_16zmu_112 {
1211
+ color: var(--puck-color-grey-03);
1212
+ font-size: var(--puck-font-size-xxs);
1213
+ display: grid;
1214
+ gap: 2px;
1215
+ }
1216
+ ._PlanCard-usageItem_16zmu_125 {
1217
+ display: flex;
1218
+ gap: 8px;
1219
+ font-size: var(--puck-font-size-xxs);
1220
+ }
1221
+ ._PlanCard-usageLabel_16zmu_131 {
1222
+ color: var(--puck-color-grey-04);
1223
+ font-weight: 500;
1224
+ }
1225
+ ._PlanCard-usageValue_16zmu_136 {
1226
+ color: var(--puck-color-grey-05);
1227
+ font-family: var(--puck-font-family-monospaced);
1228
+ margin-left: auto;
1229
+ }
1230
+ ._PlanCard-action_16zmu_142 {
1231
+ align-items: flex-end;
1232
+ display: flex;
1233
+ justify-content: flex-end;
1234
+ width: 100%;
1235
+ }
1236
+ ._PlanCard-description_16zmu_149 {
1237
+ color: var(--puck-color-grey-03);
1238
+ margin-top: 8px;
1239
+ }
1240
+ ._PlanCard--highlight_16zmu_154 {
1241
+ border: transparent;
1242
+ }
1243
+ ._PlanCard--highlight_16zmu_154::before {
1244
+ content: "";
1245
+ position: absolute;
1246
+ inset: 0;
1247
+ padding: 1px;
1248
+ border-radius: inherit;
1249
+ background-image:
1250
+ linear-gradient(
1251
+ 210deg,
1252
+ var(--puck-color-azure-01) 0%,
1253
+ var(--puck-color-azure-03) 40%,
1254
+ var(--puck-color-red-05) 100%);
1255
+ background-size: cover;
1256
+ background-position: center;
1257
+ -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
1258
+ -webkit-mask-composite: xor;
1259
+ mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
1260
+ mask-composite: exclude;
1261
+ pointer-events: none;
1262
+ }
1263
+ ._PlanCard-highlightText_16zmu_184 {
1264
+ @supports (background-clip: text) or (-webkit-background-clip: text) {
1265
+ color: transparent;
1266
+ background-clip: text;
1267
+ -webkit-background-clip: text;
1268
+ background-image:
1269
+ linear-gradient(
1270
+ 210deg,
1271
+ var(--puck-color-azure-01) 0%,
1272
+ var(--puck-color-azure-03) 40%,
1273
+ var(--puck-color-red-05) 100%);
1274
+ background-size: cover;
1275
+ background-position: center;
1276
+ }
1277
+ }
1278
+ ._PlanCard--fullWidth_16zmu_200 {
1279
+ flex-direction: row;
1280
+ grid-column: 1 / -1;
1281
+ }
1282
+ ._PlanCard--fullWidth_16zmu_200 ._PlanCard-header_16zmu_26 {
1283
+ max-width: 312px;
1284
+ }
1285
+ ._PlanCard--fullWidth_16zmu_200 ._PlanCard-action_16zmu_142 {
1286
+ max-width: 256px;
1287
+ }
1288
+ ._PlanCard--fullWidth_16zmu_200 ._PlanCard-sectionBody_16zmu_112 {
1289
+ display: grid;
1290
+ grid-template-rows: 1fr 1fr 1fr 1fr;
1291
+ grid-auto-flow: column;
1292
+ }
1293
+
1294
+ /* css-module:/home/runner/work/platform/platform/packages/platform-client/components/Section/Section.module.css/#css-module-data */
1295
+ ._Section-inner_1uwo0_1 {
1296
+ margin-left: auto;
1297
+ margin-right: auto;
1298
+ max-width: 1280px;
1299
+ padding: 16px;
1300
+ }
1301
+ ._Section--flush_1uwo0_8 ._Section-inner_1uwo0_1 {
1302
+ padding-bottom: 0;
1303
+ padding-top: 0;
1304
+ }
1305
+ ._Section_1uwo0_1 + ._Section_1uwo0_1 {
1306
+ border-top: 1px solid var(--puck-color-grey-09);
1307
+ }
1308
+ ._Section--full_1uwo0_17 ._Section-inner_1uwo0_1 {
1309
+ max-width: unset;
1310
+ }
1311
+
1312
+ /* css-module:/home/runner/work/platform/platform/packages/platform-client/components/Tag/Tag.module.css/#css-module-data */
1313
+ ._Tag_s2h0n_1 {
1314
+ align-items: center;
1315
+ display: flex;
1316
+ text-transform: uppercase;
1317
+ font-family: var(--puck-font-family-monospaced);
1318
+ font-weight: 600;
1319
+ font-size: var(--puck-font-size-xxxs);
1320
+ gap: 6px;
1321
+ border-radius: 4px;
1322
+ border: 1px solid currentColor;
1323
+ color: var(--puck-color-grey-05);
1324
+ padding: 4px 8px;
1325
+ white-space: nowrap;
1326
+ line-height: 1;
1327
+ position: relative;
1328
+ z-index: 0;
1329
+ }
1330
+ ._Tag--borderless_s2h0n_21 {
1331
+ border: none;
1332
+ }
1333
+ ._Tag--colorBlue_s2h0n_25 {
1334
+ color: var(--puck-color-azure-05);
1335
+ }
1336
+ ._Tag--colorGreen_s2h0n_29 {
1337
+ color: var(--puck-color-green-06);
1338
+ }
1339
+ ._Tag--colorRed_s2h0n_33 {
1340
+ color: var(--puck-color-red-04);
1341
+ }
1342
+ ._Tag--colorMuted_s2h0n_37 {
1343
+ color: var(--puck-color-grey-06);
1344
+ }
1345
+ ._Tag-sprite_s2h0n_41 {
1346
+ display: flex;
1347
+ }
1348
+ ._Tag--pulse_s2h0n_45 {
1349
+ ._Tag-sprite_s2h0n_41 {
1350
+ background: currentColor;
1351
+ border-radius: 50%;
1352
+ height: 5px;
1353
+ position: relative;
1354
+ width: 5px;
1355
+ }
1356
+ ._Tag-sprite_s2h0n_41::before {
1357
+ animation: _pulse_s2h0n_1 1s 0s infinite alternate;
1358
+ animation-fill-mode: both;
1359
+ background-color: color-mix(in srgb, currentColor 25%, transparent);
1360
+ border-radius: 50%;
1361
+ content: "";
1362
+ top: 0;
1363
+ left: 0;
1364
+ right: 0;
1365
+ bottom: 0;
1366
+ position: absolute;
1367
+ transform: scale(0);
1368
+ z-index: -1;
1369
+ }
1370
+ }
1371
+ @keyframes _pulse_s2h0n_1 {
1372
+ 0% {
1373
+ transform: scale(1);
1374
+ }
1375
+ 100% {
1376
+ transform: scale(2);
1377
+ }
1378
+ }
1379
+ ._Tag-label_s2h0n_79 {
1380
+ margin-top: 1px;
1381
+ }
1382
+
1383
+ /* css-module:/home/runner/work/platform/platform/packages/platform-client/components/Table/Table.module.css/#css-module-data */
1384
+ ._Table_o345u_1 {
1385
+ color: black;
1386
+ display: flex;
1387
+ flex-direction: column;
1388
+ flex-grow: 1;
1389
+ overflow-y: auto;
1390
+ }
1391
+ ._Table-filters_o345u_9 {
1392
+ margin: 16px;
1393
+ }
1394
+ ._Table-inner_o345u_13 {
1395
+ text-align: left;
1396
+ }
1397
+ ._Table-table_o345u_17 {
1398
+ color: var(--puck-color-grey-02);
1399
+ font-size: var(--puck-font-size-xxs);
1400
+ position: relative;
1401
+ width: 100%;
1402
+ }
1403
+ ._Table_o345u_1 thead {
1404
+ background: white;
1405
+ font-size: var(--puck-font-size-xxs);
1406
+ position: sticky;
1407
+ top: 0;
1408
+ white-space: nowrap;
1409
+ z-index: 1;
1410
+ }
1411
+ ._Table_o345u_1 thead::after {
1412
+ content: "";
1413
+ position: absolute;
1414
+ height: 1px;
1415
+ width: 100%;
1416
+ background-color: var(--puck-color-grey-10);
1417
+ }
1418
+ ._Table--hideHeader_o345u_41 thead {
1419
+ display: none;
1420
+ }
1421
+ ._Table_o345u_1 tbody tr {
1422
+ z-index: 0;
1423
+ }
1424
+ ._Table_o345u_1 th {
1425
+ background: var(--puck-color-grey-12);
1426
+ font-weight: 400;
1427
+ padding-left: 24px;
1428
+ padding-right: 24px;
1429
+ padding-bottom: 12px;
1430
+ padding-top: 12px;
1431
+ }
1432
+ @media (--standard-viewport) {
1433
+ ._Table_o345u_1 th {
1434
+ padding-left: 32px;
1435
+ padding-right: 32px;
1436
+ }
1437
+ }
1438
+ ._Table_o345u_1 td {
1439
+ border-bottom: 1px solid var(--puck-color-grey-10);
1440
+ padding-left: 24px;
1441
+ padding-right: 24px;
1442
+ padding-bottom: 16px;
1443
+ padding-top: 16px;
1444
+ white-space: nowrap;
1445
+ }
1446
+ ._Table_o345u_1 td:not(:first-of-type) {
1447
+ color: var(--puck-color-grey-05);
1448
+ }
1449
+ ._Table_o345u_1 tbody tr:last-of-type td {
1450
+ border-bottom: none;
1451
+ }
1452
+ @media (--standard-viewport) {
1453
+ ._Table_o345u_1 td {
1454
+ padding-left: 32px;
1455
+ padding-right: 32px;
1456
+ }
1457
+ }
1458
+ ._Table-footer_o345u_89 {
1459
+ border-top: 1px solid var(--puck-color-grey-09);
1460
+ }
1461
+ ._Table--clickableRows_o345u_93 tbody tr:hover {
1462
+ background: var(--puck-color-azure-12);
1463
+ cursor: pointer;
1464
+ }
1465
+ ._Table-placeholder_o345u_98 {
1466
+ align-items: center;
1467
+ color: var(--puck-color-grey-04);
1468
+ justify-content: center;
1469
+ display: flex;
1470
+ gap: 8px;
1471
+ flex-direction: column;
1472
+ width: 100%;
1473
+ height: 100%;
1474
+ text-align: center;
1475
+ }
1476
+ ._Table-loader_o345u_110 {
1477
+ padding: 16px 24px;
1478
+ }
1479
+ ._TableRow--highlightRow_o345u_114 {
1480
+ background-color: var(--puck-color-grey-12);
1481
+ }
1482
+
1483
+ /* css-module:/home/runner/work/platform/platform/packages/platform-client/components/VerticalSpace/VerticalSpace.module.css/#css-module-data */
1484
+ ._VerticalSpace_16t6j_1 {
1485
+ padding-top: 24px;
1486
+ }
1487
+ ._VerticalSpace--size4_16t6j_5 {
1488
+ padding-top: 4px;
1489
+ }
1490
+ ._VerticalSpace--size8_16t6j_9 {
1491
+ padding-top: 8px;
1492
+ }
1493
+ ._VerticalSpace--size16_16t6j_13 {
1494
+ padding-top: 16px;
1495
+ }
1496
+ ._VerticalSpace--size32_16t6j_17 {
1497
+ padding-top: 32px;
1498
+ }
1499
+ ._VerticalSpace--size40_16t6j_21 {
1500
+ padding-top: 40px;
1501
+ }
1502
+ ._VerticalSpace--size48_16t6j_25 {
1503
+ padding-top: 48px;
1504
+ }
1505
+ ._VerticalSpace--size56_16t6j_29 {
1506
+ padding-top: 56px;
1507
+ }
1508
+ ._VerticalSpace--size96_16t6j_33 {
1509
+ padding-top: 96px;
1510
+ }
1511
+ ._VerticalSpace--size128_16t6j_37 {
1512
+ padding-top: 128px;
1513
+ }
1514
+ @media (max-width: 767px) {
1515
+ ._VerticalSpace--size40_16t6j_21 {
1516
+ padding-top: 40px;
1517
+ }
1518
+ ._VerticalSpace--size48_16t6j_25 {
1519
+ padding-top: 48px;
1520
+ }
1521
+ ._VerticalSpace--size56_16t6j_29 {
1522
+ padding-top: 56px;
1523
+ }
1524
+ ._VerticalSpace--size96_16t6j_33 {
1525
+ padding-top: 72px;
1526
+ }
1527
+ ._VerticalSpace--size128_16t6j_37 {
1528
+ padding-top: 96px;
1529
+ }
1530
+ }
1531
+
1532
+ /* css-module:/home/runner/work/platform/platform/packages/platform-client/components/Viewport/styles.module.css/#css-module-data */
1533
+ ._Viewport_1vvhm_3 {
1534
+ }
1535
+ ._Viewport--standard_1vvhm_6,
1536
+ ._Viewport--inline_1vvhm_7._Viewport--standard_1vvhm_6 {
1537
+ display: none;
1538
+ }
1539
+ ._Viewport--narrow_1vvhm_11 {
1540
+ display: block;
1541
+ }
1542
+ ._Viewport--inline_1vvhm_7._Viewport--narrow_1vvhm_11 {
1543
+ display: inline;
1544
+ }
1545
+ ._Viewport--flex_1vvhm_19._Viewport--narrow_1vvhm_11 {
1546
+ display: flex;
1547
+ }
1548
+ @media (min-width: 768px) {
1549
+ ._Viewport--narrow_1vvhm_11,
1550
+ ._Viewport--inline_1vvhm_7._Viewport--narrow_1vvhm_11,
1551
+ ._Viewport--flex_1vvhm_19._Viewport--narrow_1vvhm_11 {
1552
+ display: none;
1553
+ }
1554
+ }
1555
+ @media (min-width: 768px) {
1556
+ ._Viewport--standard_1vvhm_6 {
1557
+ display: block;
1558
+ }
1559
+ ._Viewport--inline_1vvhm_7._Viewport--standard_1vvhm_6 {
1560
+ display: inline;
1561
+ }
1562
+ ._Viewport--flex_1vvhm_19._Viewport--standard_1vvhm_6 {
1563
+ display: flex;
1564
+ }
1565
+ }
1566
+
1567
+ /* css-module:/home/runner/work/platform/platform/packages/plugin-pages/src/components/PagePlugin/styles.module.css/#css-module-data */
1568
+ ._Pages_ey49w_5 {
1569
+ display: flex;
1570
+ flex-direction: column;
1571
+ height: 100%;
1572
+ padding: 16px;
1573
+ }
1574
+ ._Pages-addPage_ey49w_12 {
1575
+ margin-bottom: 16px;
1576
+ display: flex;
1577
+ gap: 8px;
1578
+ }
1579
+ ._Pages-loader_ey49w_18 {
1580
+ align-items: center;
1581
+ background-color: white;
1582
+ display: flex;
1583
+ justify-content: center;
1584
+ padding: 16px;
1585
+ }
1586
+ ._Pages-list_ey49w_26 {
1587
+ display: flex;
1588
+ flex-direction: column;
1589
+ border-radius: 8px;
1590
+ overflow-y: auto;
1591
+ flex-grow: 1;
1592
+ }
1593
+ ._Pages-search_ey49w_34 {
1594
+ flex-grow: 1;
1595
+ }
1596
+ ._Pages-searchInput_ey49w_38 {
1597
+ border: 1px solid var(--puck-color-grey-09);
1598
+ border-radius: 8px;
1599
+ background-color: var(--puck-color-white);
1600
+ box-sizing: border-box;
1601
+ color: var(--puck-color-grey-02);
1602
+ height: 36px;
1603
+ margin: 0;
1604
+ padding: 0 8px;
1605
+ width: 100%;
1606
+ }
1607
+ ._Pages-searchInput_ey49w_38:focus {
1608
+ outline: 2px solid var(--puck-color-azure-04);
1609
+ outline-offset: -1px;
1610
+ }
1611
+ ._PagesPage_ey49w_59 {
1612
+ border-left: 1px solid var(--puck-color-grey-10);
1613
+ border-right: 1px solid var(--puck-color-grey-10);
1614
+ border-bottom: 1px solid var(--puck-color-grey-10);
1615
+ display: flex;
1616
+ flex-direction: column;
1617
+ flex-shrink: 0;
1618
+ overflow: hidden;
1619
+ }
1620
+ ._PagesPage--expanded_ey49w_69 {
1621
+ min-height: calc(34px + 1px + 55px);
1622
+ }
1623
+ ._PagesPage--expanded_ey49w_69:has(._PagesPage-versions_ey49w_73 > :nth-child(2)) {
1624
+ min-height: calc(34px + 1px + 55px + 1px + 55px);
1625
+ }
1626
+ ._PagesPage--expanded_ey49w_69:has(._PagesPage-versions_ey49w_73 > :nth-child(3)) {
1627
+ min-height: calc(34px + 1px + 55px + 1px + 55px + 1px + 55px);
1628
+ }
1629
+ ._PagesPage--expanded_ey49w_69 {
1630
+ flex-shrink: 1;
1631
+ }
1632
+ ._PagesPage_ey49w_59:first-of-type {
1633
+ border-top: 1px solid var(--puck-color-grey-10);
1634
+ border-top-left-radius: 8px;
1635
+ border-top-right-radius: 8px;
1636
+ }
1637
+ ._PagesPage_ey49w_59:last-of-type {
1638
+ border-bottom-left-radius: 8px;
1639
+ border-bottom-right-radius: 8px;
1640
+ }
1641
+ ._PagesPage-header_ey49w_96 {
1642
+ align-items: center;
1643
+ background-color: white;
1644
+ font-family: var(--puck-font-family-monospaced);
1645
+ font-size: var(--puck-font-size-xxs);
1646
+ font-weight: 600;
1647
+ cursor: pointer;
1648
+ display: flex;
1649
+ justify-content: space-between;
1650
+ padding: 8px 12px;
1651
+ width: 100%;
1652
+ }
1653
+ ._PagesPage_ey49w_59:first-of-type ._PagesPage-header_ey49w_96 {
1654
+ border-top-left-radius: 8px;
1655
+ border-top-right-radius: 8px;
1656
+ }
1657
+ ._PagesPage_ey49w_59:last-of-type:not(._PagesPage--expanded_ey49w_69) ._PagesPage-header_ey49w_96 {
1658
+ border-bottom-left-radius: 8px;
1659
+ border-bottom-right-radius: 8px;
1660
+ }
1661
+ ._PagesPage-header_ey49w_96:focus-visible {
1662
+ outline: 2px solid var(--puck-color-azure-04);
1663
+ outline-offset: -2px;
1664
+ }
1665
+ ._PagesPage--active_ey49w_124 ._PagesPage-header_ey49w_96 {
1666
+ color: var(--puck-color-azure-04);
1667
+ }
1668
+ ._PagesPage--expanded_ey49w_69 ._PagesPage-header_ey49w_96 {
1669
+ border-bottom: 1px solid var(--puck-color-grey-10);
1670
+ }
1671
+ ._PagesPage-header_ey49w_96:hover {
1672
+ background: var(--puck-color-azure-11);
1673
+ color: var(--puck-color-azure-04);
1674
+ }
1675
+ ._PagesPage-headerMain_ey49w_137 {
1676
+ display: flex;
1677
+ gap: 4px;
1678
+ justify-content: space-between;
1679
+ width: 100%;
1680
+ }
1681
+ ._PagesPage-headerIcon_ey49w_144 {
1682
+ color: var(--puck-color-grey-04);
1683
+ }
1684
+ ._PagesPage-loader_ey49w_148 {
1685
+ align-items: center;
1686
+ background-color: white;
1687
+ display: none;
1688
+ justify-content: center;
1689
+ padding: 16px;
1690
+ height: 100%;
1691
+ }
1692
+ ._PagesPage--expanded_ey49w_69 ._PagesPage-loader_ey49w_148 {
1693
+ display: flex;
1694
+ }
1695
+ ._PagesPage-versions_ey49w_73 {
1696
+ display: none;
1697
+ overflow-y: auto;
1698
+ }
1699
+ ._PagesPage--expanded_ey49w_69 ._PagesPage-versions_ey49w_73 {
1700
+ display: block;
1701
+ }
1702
+ ._PagesVersion_ey49w_174 ._PagesVersion-inner_ey49w_174 {
1703
+ background-color: white;
1704
+ border-top: 1px solid var(--puck-color-grey-10);
1705
+ padding-bottom: 12px;
1706
+ padding-left: 24px;
1707
+ padding-right: 12px;
1708
+ padding-top: 8px;
1709
+ text-align: left;
1710
+ width: 100%;
1711
+ }
1712
+ ._PagesVersion_ey49w_174:first-of-type ._PagesVersion-inner_ey49w_174 {
1713
+ border-top: none;
1714
+ }
1715
+ ._PagesVersion--current_ey49w_189 ._PagesVersion-inner_ey49w_174 {
1716
+ border-right: 3px solid var(--puck-color-azure-04);
1717
+ }
1718
+ ._PagesVersion-inner_ey49w_174:hover {
1719
+ background-color: var(--puck-color-azure-11);
1720
+ color: var(--puck-color-azure-04);
1721
+ cursor: pointer;
1722
+ }
1723
+ ._PagesVersion-inner_ey49w_174:focus-visible {
1724
+ outline: 2px solid var(--puck-color-azure-04);
1725
+ outline-offset: -2px;
1726
+ }
1727
+ ._PagesVersion-header_ey49w_204 {
1728
+ align-items: center;
1729
+ display: flex;
1730
+ gap: 4px;
1731
+ }
1732
+ ._PagesVersion-version_ey49w_210 {
1733
+ font-family: var(--puck-font-family-monospaced);
1734
+ font-weight: 600;
1735
+ line-height: 1;
1736
+ }
1737
+ ._PagesVersion-date_ey49w_216 {
1738
+ color: var(--puck-color-grey-06);
1739
+ font-size: var(--puck-font-size-xxxs);
1740
+ font-weight: 500;
1741
+ line-height: 1;
1742
+ margin-top: 2px;
1743
+ margin-left: auto;
1744
+ white-space: nowrap;
1745
+ }
1746
+
1747
+ /* css-module:/home/runner/work/platform/platform/packages/plugin-pages/src/components/CreateForm/styles.module.css/#css-module-data */
1748
+ ._CreateForm_kkdt2_1 {
1749
+ width: 100%;
1750
+ }
1751
+ ._CreateForm-field_kkdt2_5 {
1752
+ display: flex;
1753
+ flex-direction: column;
1754
+ align-items: flex-start;
1755
+ gap: 0.25rem;
1756
+ width: 100%;
1757
+ }
1758
+ ._CreateForm-label_kkdt2_13 {
1759
+ font-size: 0.875rem;
1760
+ line-height: 1.25rem;
1761
+ font-weight: 500;
1762
+ color: var(--puck-color-grey-02);
1763
+ }
1764
+ ._CreateForm-input_kkdt2_20 {
1765
+ box-sizing: border-box;
1766
+ width: 100%;
1767
+ height: 2.5rem;
1768
+ margin: 0;
1769
+ padding: 0 0.875rem;
1770
+ border: 1px solid var(--puck-color-grey-10);
1771
+ border-radius: 0.375rem;
1772
+ background-color: var(--puck-color-white);
1773
+ color: var(--puck-color-grey-02);
1774
+ font-family: inherit;
1775
+ font-size: 1rem;
1776
+ }
1777
+ ._CreateForm-input_kkdt2_20:focus {
1778
+ outline: 2px solid var(--puck-color-azure-04);
1779
+ outline-offset: -1px;
1780
+ }
1781
+ ._CreateForm-input_kkdt2_20::placeholder {
1782
+ color: var(--puck-color-grey-06);
1783
+ }
1784
+ ._CreateForm-error_kkdt2_43 {
1785
+ width: 100%;
1786
+ margin-top: 16px;
1787
+ color: var(--puck-color-red-05);
1788
+ font-size: 0.875rem;
1789
+ line-height: 1.2;
1790
+ }
1791
+
1792
+ /* css-module:/home/runner/work/platform/platform/packages/plugin-pages/src/components/ConfirmModal/styles.module.css/#css-module-data */
1793
+ ._ConfirmModal_1r63q_1 {
1794
+ width: 100%;
1795
+ }
1796
+ ._ConfirmModal-button_1r63q_5 {
1797
+ display: inline-flex;
1798
+ }
1799
+ ._ConfirmModal-background_1r63q_9 {
1800
+ align-items: center;
1801
+ background: #00000050;
1802
+ bottom: 0;
1803
+ display: flex;
1804
+ justify-content: center;
1805
+ left: 0;
1806
+ position: fixed;
1807
+ right: 0;
1808
+ top: 0;
1809
+ z-index: 2;
1810
+ }
1811
+ ._ConfirmModal-modal_1r63q_22 {
1812
+ background: var(--puck-color-white);
1813
+ border-radius: 16px;
1814
+ display: flex;
1815
+ flex-direction: column;
1816
+ margin-inline: 24px;
1817
+ max-height: calc(100vh - 24px);
1818
+ min-width: 356px;
1819
+ overflow: auto;
1820
+ }
1821
+ ._ConfirmModal-header_1r63q_33 {
1822
+ align-items: center;
1823
+ color: var(--puck-color-grey-02);
1824
+ display: flex;
1825
+ gap: 16px;
1826
+ justify-content: space-between;
1827
+ padding: 24px 24px 16px;
1828
+ }
1829
+ ._ConfirmModal-close_1r63q_42 {
1830
+ align-items: center;
1831
+ appearance: none;
1832
+ background: transparent;
1833
+ border: none;
1834
+ border-radius: 8px;
1835
+ color: var(--puck-color-grey-04);
1836
+ cursor: pointer;
1837
+ display: inline-flex;
1838
+ justify-content: center;
1839
+ padding: 4px;
1840
+ }
1841
+ ._ConfirmModal-close_1r63q_42:hover {
1842
+ background: var(--puck-color-grey-11);
1843
+ color: var(--puck-color-grey-02);
1844
+ }
1845
+ ._ConfirmModal-close_1r63q_42:focus-visible {
1846
+ outline: 2px solid var(--puck-color-azure-05);
1847
+ outline-offset: 2px;
1848
+ }
1849
+ ._ConfirmModal-body_1r63q_65 {
1850
+ color: var(--puck-color-grey-03);
1851
+ line-height: 1.5;
1852
+ padding: 8px 24px 24px;
1853
+ }
1854
+ ._ConfirmModal-footer_1r63q_71 {
1855
+ background-color: var(--puck-color-grey-12);
1856
+ border-top: 1px solid var(--puck-color-grey-09);
1857
+ display: flex;
1858
+ gap: 12px;
1859
+ justify-content: flex-end;
1860
+ padding: 16px 24px;
1861
+ }
1862
+
1863
+ /* css-module:/home/runner/work/platform/platform/packages/plugin-pages/src/components/HeaderActions/styles.module.css/#css-module-data */
1864
+ ._HeaderActions-publish_7nzbl_1 {
1865
+ position: relative;
1866
+ display: inline-flex;
1867
+ align-items: stretch;
1868
+ }
1869
+ ._HeaderActions-trigger_7nzbl_7 {
1870
+ display: inline-flex;
1871
+ align-items: center;
1872
+ justify-content: center;
1873
+ min-height: 32px;
1874
+ padding: 0 12px;
1875
+ border-left: 0;
1876
+ border-radius: 0 8px 8px 0;
1877
+ background: var(--puck-color-white);
1878
+ color: var(--puck-color-grey-01);
1879
+ }
1880
+ ._HeaderActions-versionHeader_7nzbl_19 {
1881
+ align-items: center;
1882
+ display: flex;
1883
+ gap: 8px;
1884
+ height: 21px;
1885
+ }
1886
+ ._HeaderActions-versionLabel_7nzbl_26 {
1887
+ font-family: var(--puck-font-family-monospaced);
1888
+ font-size: var(--puck-font-size-xs);
1889
+ font-weight: 600;
1890
+ line-height: 1;
1891
+ }
1892
+ ._HeaderActions-versionDate_7nzbl_33 {
1893
+ color: var(--puck-color-grey-06);
1894
+ font-size: var(--puck-font-size-xxxs);
1895
+ font-weight: 500;
1896
+ line-height: 1;
1897
+ margin-top: 2px;
1898
+ white-space: nowrap;
1899
+ }