@funnelsgrove/cli 0.1.14 → 0.1.18
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/contracts/step-contract-v2.json +733 -0
- package/dist/analyticsOutput.d.ts +30 -15
- package/dist/analyticsOutput.js +45 -28
- package/dist/apiClient.d.ts +85 -0
- package/dist/apiClient.js +225 -8
- package/dist/cli.d.ts +149 -1
- package/dist/cli.js +1232 -71
- package/dist/diagnosticOutput.d.ts +42 -0
- package/dist/diagnosticOutput.js +83 -0
- package/dist/docsOutput.d.ts +19 -0
- package/dist/docsOutput.js +73 -0
- package/dist/docsTransaction.d.ts +81 -0
- package/dist/docsTransaction.js +1755 -0
- package/dist/funnelValidation.d.ts +14 -0
- package/dist/funnelValidation.js +297 -0
- package/dist/localSync.d.ts +79 -0
- package/dist/localSync.js +428 -53
- package/dist/projectValidator.d.ts +27 -0
- package/dist/projectValidator.js +208 -0
- package/dist/reskin.js +27 -1
- package/dist/stepContractMigration.d.ts +71 -0
- package/dist/stepContractMigration.js +1323 -0
- package/dist/templateDocs.js +8 -25
- package/docs-release-history.json +66 -0
- package/legacy-docs-catalog.json +1012 -0
- package/package.json +13 -4
- package/template_docs/.funnelsgrove-docs.json +144 -0
- package/template_docs/AGENTS.md +30 -58
- package/template_docs/CLAUDE.md +0 -2
- package/template_docs/docs/funnelsgrove/START-HERE.md +73 -0
- package/template_docs/docs/funnelsgrove/contracts/analytics-events.md +59 -0
- package/template_docs/docs/funnelsgrove/contracts/content-answers.md +44 -0
- package/template_docs/docs/funnelsgrove/contracts/flow-routing.md +41 -0
- package/template_docs/docs/funnelsgrove/contracts/payments.md +42 -0
- package/template_docs/docs/funnelsgrove/contracts/step-metadata.md +57 -0
- package/template_docs/docs/funnelsgrove/migrations/step-contract-v3.md +39 -0
- package/template_docs/docs/funnelsgrove/qa/analytics.md +43 -0
- package/template_docs/docs/funnelsgrove/qa/local.md +42 -0
- package/template_docs/docs/funnelsgrove/qa/paywall-checkout.md +55 -0
- package/template_docs/docs/funnelsgrove/qa/publish.md +32 -0
- package/template_docs/docs/funnelsgrove/recipes/add-experiment.md +34 -0
- package/template_docs/docs/funnelsgrove/recipes/add-step.md +33 -0
- package/template_docs/docs/funnelsgrove/recipes/edit-step.md +31 -0
- package/template_docs/docs/funnelsgrove/steps/INDEX.md +26 -0
- package/template_docs/docs/funnelsgrove/steps/cancellation_offer.md +112 -0
- package/template_docs/docs/funnelsgrove/steps/checkout.md +120 -0
- package/template_docs/docs/funnelsgrove/steps/form_input.md +115 -0
- package/template_docs/docs/funnelsgrove/steps/intro_hero.md +110 -0
- package/template_docs/docs/funnelsgrove/steps/multi_select_choice.md +123 -0
- package/template_docs/docs/funnelsgrove/steps/paywall_offer.md +115 -0
- package/template_docs/docs/funnelsgrove/steps/progress_interstitial.md +111 -0
- package/template_docs/docs/funnelsgrove/steps/purchase_completed.md +117 -0
- package/template_docs/docs/funnelsgrove/steps/single_step_choice.md +122 -0
- package/template_docs/docs/funnelsgrove/steps/single_step_choice_emoji.md +122 -0
- package/template_docs/docs/funnelsgrove/steps/social_proof.md +110 -0
- package/template_docs/docs/funnelsgrove/steps/subscription_handoff.md +113 -0
- package/template_docs/docs/funnelsgrove/steps/subscription_management.md +112 -0
- package/template_docs/docs/funnelsgrove/steps/summary_confirmation.md +110 -0
- package/template_docs/docs/funnelsgrove/steps/upsell_offer.md +112 -0
- package/template_docs/docs/funnelsgrove/steps/value_prop_story.md +110 -0
- package/template_docs/funnel-docs.config.json +43 -0
- package/template_scaffold/.env.example +41 -0
- package/template_scaffold/.funnelsgrove-contract-tools.json +19 -0
- package/template_scaffold/.funnelsgrove-docs.json +144 -0
- package/template_scaffold/.funnelsgrove-scaffold.json +1078 -0
- package/template_scaffold/AGENTS.md +42 -0
- package/template_scaffold/CLAUDE.md +1 -0
- package/template_scaffold/PLAN.md +81 -0
- package/template_scaffold/PRODUCT_SENSE.md +28 -0
- package/template_scaffold/context/build-context.md +34 -0
- package/template_scaffold/docs/AGENT_FUNNEL_IMPLEMENTATION_SPEC.md +5 -0
- package/template_scaffold/docs/ARCHITECTURE.md +5 -0
- package/template_scaffold/docs/FLOW_CONFIG_AND_ROUTING.md +5 -0
- package/template_scaffold/docs/PAYWALL_AND_PAYMENTS.md +5 -0
- package/template_scaffold/docs/README.md +5 -0
- package/template_scaffold/docs/funnelsgrove/START-HERE.md +73 -0
- package/template_scaffold/docs/funnelsgrove/contracts/analytics-events.md +59 -0
- package/template_scaffold/docs/funnelsgrove/contracts/content-answers.md +44 -0
- package/template_scaffold/docs/funnelsgrove/contracts/flow-routing.md +41 -0
- package/template_scaffold/docs/funnelsgrove/contracts/payments.md +42 -0
- package/template_scaffold/docs/funnelsgrove/contracts/step-metadata.md +57 -0
- package/template_scaffold/docs/funnelsgrove/migrations/step-contract-v3.md +39 -0
- package/template_scaffold/docs/funnelsgrove/qa/analytics.md +43 -0
- package/template_scaffold/docs/funnelsgrove/qa/local.md +42 -0
- package/template_scaffold/docs/funnelsgrove/qa/paywall-checkout.md +55 -0
- package/template_scaffold/docs/funnelsgrove/qa/publish.md +32 -0
- package/template_scaffold/docs/funnelsgrove/recipes/add-experiment.md +34 -0
- package/template_scaffold/docs/funnelsgrove/recipes/add-step.md +33 -0
- package/template_scaffold/docs/funnelsgrove/recipes/edit-step.md +31 -0
- package/template_scaffold/docs/funnelsgrove/steps/INDEX.md +26 -0
- package/template_scaffold/docs/funnelsgrove/steps/cancellation_offer.md +112 -0
- package/template_scaffold/docs/funnelsgrove/steps/checkout.md +120 -0
- package/template_scaffold/docs/funnelsgrove/steps/form_input.md +115 -0
- package/template_scaffold/docs/funnelsgrove/steps/intro_hero.md +110 -0
- package/template_scaffold/docs/funnelsgrove/steps/multi_select_choice.md +123 -0
- package/template_scaffold/docs/funnelsgrove/steps/paywall_offer.md +115 -0
- package/template_scaffold/docs/funnelsgrove/steps/progress_interstitial.md +111 -0
- package/template_scaffold/docs/funnelsgrove/steps/purchase_completed.md +117 -0
- package/template_scaffold/docs/funnelsgrove/steps/single_step_choice.md +122 -0
- package/template_scaffold/docs/funnelsgrove/steps/single_step_choice_emoji.md +122 -0
- package/template_scaffold/docs/funnelsgrove/steps/social_proof.md +110 -0
- package/template_scaffold/docs/funnelsgrove/steps/subscription_handoff.md +113 -0
- package/template_scaffold/docs/funnelsgrove/steps/subscription_management.md +112 -0
- package/template_scaffold/docs/funnelsgrove/steps/summary_confirmation.md +110 -0
- package/template_scaffold/docs/funnelsgrove/steps/upsell_offer.md +112 -0
- package/template_scaffold/docs/funnelsgrove/steps/value_prop_story.md +110 -0
- package/template_scaffold/docs/references/funnel-sdk-user-answers.md +5 -0
- package/template_scaffold/eslint.config.mjs +16 -0
- package/template_scaffold/funnel-agent-docs.test.ts +699 -0
- package/template_scaffold/funnel-docs.config.json +43 -0
- package/template_scaffold/funnel.config.json +5 -0
- package/template_scaffold/gitignore.template +5 -0
- package/template_scaffold/next-env.d.ts +6 -0
- package/template_scaffold/next.config.ts +53 -0
- package/template_scaffold/package-lock.json +7737 -0
- package/template_scaffold/package.json +37 -0
- package/template_scaffold/package.test.ts +23 -0
- package/template_scaffold/public/claimbee/bee.png +0 -0
- package/template_scaffold/public/claimbee/device-iphone.png +0 -0
- package/template_scaffold/public/claimbee/device-macbook.png +0 -0
- package/template_scaffold/public/claimbee/device-none.png +0 -0
- package/template_scaffold/public/claimbee/device-watch.png +0 -0
- package/template_scaffold/public/claimbee/glow.svg +3 -0
- package/template_scaffold/public/claimbee/steps-sprite-alt.png +0 -0
- package/template_scaffold/public/claimbee/steps-sprite-default.png +0 -0
- package/template_scaffold/public/claimbee/testimonial-avatar.png +0 -0
- package/template_scaffold/public/claimbee/testimonial-star.svg +3 -0
- package/template_scaffold/public/paywall/ai-claim-assistant.png +0 -0
- package/template_scaffold/public/paywall/claim-history.png +0 -0
- package/template_scaffold/public/paywall/clear-progress.png +0 -0
- package/template_scaffold/public/paywall/hero.png +0 -0
- package/template_scaffold/public/paywall/money-alerts.png +0 -0
- package/template_scaffold/public/paywall/money-back-badge.png +0 -0
- package/template_scaffold/public/paywall/paywall-image.png +0 -0
- package/template_scaffold/public/paywall/r1.png +0 -0
- package/template_scaffold/public/paywall/r2.png +0 -0
- package/template_scaffold/public/paywall/r3.png +0 -0
- package/template_scaffold/public/paywall/r4.png +0 -0
- package/template_scaffold/public/paywall/r5.png +0 -0
- package/template_scaffold/public/paywall/r6.png +0 -0
- package/template_scaffold/public/paywall/special-offer-gift.png +0 -0
- package/template_scaffold/public/please/bee.png +0 -0
- package/template_scaffold/public/please/device-iphone.png +0 -0
- package/template_scaffold/public/please/device-macbook.png +0 -0
- package/template_scaffold/public/please/device-none.png +0 -0
- package/template_scaffold/public/please/device-watch.png +0 -0
- package/template_scaffold/public/please/glow.svg +3 -0
- package/template_scaffold/public/please/steps-sprite-alt.png +0 -0
- package/template_scaffold/public/please/steps-sprite-default.png +0 -0
- package/template_scaffold/public/please/testimonial-avatar.png +0 -0
- package/template_scaffold/public/please/testimonial-star.svg +3 -0
- package/template_scaffold/public/upsell/upgrade-hero.png +0 -0
- package/template_scaffold/src/app/[stepId]/page.test.tsx +59 -0
- package/template_scaffold/src/app/[stepId]/page.tsx +62 -0
- package/template_scaffold/src/app/globals.css +49 -0
- package/template_scaffold/src/app/layout.test.ts +26 -0
- package/template_scaffold/src/app/layout.tsx +61 -0
- package/template_scaffold/src/app/page.tsx +8 -0
- package/template_scaffold/src/app/sdk/page.tsx +673 -0
- package/template_scaffold/src/app/subscription-dashboard/page.tsx +274 -0
- package/template_scaffold/src/assets/claimbee/bee.png +0 -0
- package/template_scaffold/src/assets/claimbee/device-iphone.png +0 -0
- package/template_scaffold/src/assets/claimbee/device-macbook.png +0 -0
- package/template_scaffold/src/assets/claimbee/device-none.png +0 -0
- package/template_scaffold/src/assets/claimbee/device-watch.png +0 -0
- package/template_scaffold/src/assets/claimbee/glow.svg +3 -0
- package/template_scaffold/src/assets/claimbee/steps-sprite-alt.png +0 -0
- package/template_scaffold/src/assets/claimbee/steps-sprite-default.png +0 -0
- package/template_scaffold/src/assets/claimbee/testimonial-avatar.png +0 -0
- package/template_scaffold/src/assets/claimbee/testimonial-star.svg +3 -0
- package/template_scaffold/src/components/FunnelEditorPanel.tsx +194 -0
- package/template_scaffold/src/components/FunnelFlow.test.tsx +17 -0
- package/template_scaffold/src/components/FunnelFlow.tsx +114 -0
- package/template_scaffold/src/components/FunnelStepImage.test.ts +15 -0
- package/template_scaffold/src/components/FunnelStepImage.tsx +28 -0
- package/template_scaffold/src/components/step/FunnelStepHeader.tsx +35 -0
- package/template_scaffold/src/config/billing.plans.test.ts +143 -0
- package/template_scaffold/src/config/billing.plans.ts +69 -0
- package/template_scaffold/src/config/billing.test.plans.ts +32 -0
- package/template_scaffold/src/config/experiments.generated.ts +4 -0
- package/template_scaffold/src/config/experiments.test.ts +12 -0
- package/template_scaffold/src/config/experiments.ts +9 -0
- package/template_scaffold/src/config/funnel.config.ts +12 -0
- package/template_scaffold/src/config/funnel.manifest.test.ts +166 -0
- package/template_scaffold/src/config/funnel.manifest.ts +139 -0
- package/template_scaffold/src/config/offer-sets.generated.ts +4 -0
- package/template_scaffold/src/contract/funnel-project.validation.test.ts +80 -0
- package/template_scaffold/src/contract/funnel-project.validation.ts +44 -0
- package/template_scaffold/src/contract/funnel-validator.vite.config.ts +11 -0
- package/template_scaffold/src/contract/golden/cancellation_offer.fixture.ts +29 -0
- package/template_scaffold/src/contract/golden/checkout.fixture.ts +37 -0
- package/template_scaffold/src/contract/golden/form_input.fixture.ts +28 -0
- package/template_scaffold/src/contract/golden/golden-fixtures.test.ts +190 -0
- package/template_scaffold/src/contract/golden/intro_hero.fixture.ts +27 -0
- package/template_scaffold/src/contract/golden/multi_select_choice.fixture.ts +37 -0
- package/template_scaffold/src/contract/golden/paywall_offer.fixture.ts +30 -0
- package/template_scaffold/src/contract/golden/progress_interstitial.fixture.ts +28 -0
- package/template_scaffold/src/contract/golden/purchase_completed.fixture.ts +33 -0
- package/template_scaffold/src/contract/golden/single_step_choice.fixture.ts +36 -0
- package/template_scaffold/src/contract/golden/single_step_choice_emoji.fixture.ts +36 -0
- package/template_scaffold/src/contract/golden/social_proof.fixture.ts +27 -0
- package/template_scaffold/src/contract/golden/subscription_handoff.fixture.ts +30 -0
- package/template_scaffold/src/contract/golden/subscription_management.fixture.ts +29 -0
- package/template_scaffold/src/contract/golden/summary_confirmation.fixture.ts +27 -0
- package/template_scaffold/src/contract/golden/upsell_offer.fixture.ts +29 -0
- package/template_scaffold/src/contract/golden/value_prop_story.fixture.ts +27 -0
- package/template_scaffold/src/contract/validate-funnel.cli.test.ts +180 -0
- package/template_scaffold/src/contract/validate-funnel.cli.ts +199 -0
- package/template_scaffold/src/runtime/checkout-runtime-config.test.ts +60 -0
- package/template_scaffold/src/runtime/checkout-runtime-config.ts +26 -0
- package/template_scaffold/src/runtime/funnel-runtime.test.ts +25 -0
- package/template_scaffold/src/runtime/funnel-runtime.ts +118 -0
- package/template_scaffold/src/runtime/step-content-context.test.ts +38 -0
- package/template_scaffold/src/runtime/step-content-context.ts +65 -0
- package/template_scaffold/src/runtime/step-registry.ts +66 -0
- package/template_scaffold/src/runtime/step-variable-values.ts +31 -0
- package/template_scaffold/src/runtime/use-funnel-flow-controller.integration.test.ts +203 -0
- package/template_scaffold/src/runtime/use-funnel-flow-controller.test.ts +76 -0
- package/template_scaffold/src/runtime/use-funnel-flow-controller.ts +53 -0
- package/template_scaffold/src/steps/content/email-capture.content.ts +29 -0
- package/template_scaffold/src/steps/content/manage-subscription.content.ts +62 -0
- package/template_scaffold/src/steps/content/paywall.content.ts +191 -0
- package/template_scaffold/src/steps/content/step-01.content.ts +23 -0
- package/template_scaffold/src/steps/content/step-02.content.ts +77 -0
- package/template_scaffold/src/steps/content/step-03.content.ts +40 -0
- package/template_scaffold/src/steps/content/step-04.content.ts +49 -0
- package/template_scaffold/src/steps/content/step-32-paywall.content.ts +352 -0
- package/template_scaffold/src/steps/content/subscription-started.content.ts +68 -0
- package/template_scaffold/src/steps/editor/email-capture.editor.ts +58 -0
- package/template_scaffold/src/steps/editor/manage-subscription.editor.ts +179 -0
- package/template_scaffold/src/steps/editor/paywall.editor.ts +232 -0
- package/template_scaffold/src/steps/editor/step-01.editor.ts +22 -0
- package/template_scaffold/src/steps/editor/step-02.editor.ts +41 -0
- package/template_scaffold/src/steps/editor/step-03.editor.ts +58 -0
- package/template_scaffold/src/steps/editor/step-04.editor.ts +98 -0
- package/template_scaffold/src/steps/editor/step-32-paywall.editor.ts +478 -0
- package/template_scaffold/src/steps/editor/subscription-started.editor.ts +131 -0
- package/template_scaffold/src/steps/index.ts +25 -0
- package/template_scaffold/src/steps/paywall-checkout-options.test.ts +104 -0
- package/template_scaffold/src/steps/paywall-checkout-options.ts +130 -0
- package/template_scaffold/src/steps/pricing/paywall-b.pricing.ts +12 -0
- package/template_scaffold/src/steps/pricing/paywall.pricing.ts +12 -0
- package/template_scaffold/src/steps/pricing/shared-plan-order.ts +17 -0
- package/template_scaffold/src/steps/pricing/upsell-form.pricing.ts +16 -0
- package/template_scaffold/src/steps/shared-header-contract.test.ts +27 -0
- package/template_scaffold/src/steps/step-01.test.ts +38 -0
- package/template_scaffold/src/steps/step-01.tsx +108 -0
- package/template_scaffold/src/steps/step-02.test.ts +43 -0
- package/template_scaffold/src/steps/step-02.tsx +140 -0
- package/template_scaffold/src/steps/step-03.test.ts +15 -0
- package/template_scaffold/src/steps/step-03.tsx +262 -0
- package/template_scaffold/src/steps/step-04.test.ts +32 -0
- package/template_scaffold/src/steps/step-04.tsx +673 -0
- package/template_scaffold/src/steps/step-31-email-capture.test.ts +22 -0
- package/template_scaffold/src/steps/step-31-email-capture.tsx +195 -0
- package/template_scaffold/src/steps/step-32-paywall.test.ts +770 -0
- package/template_scaffold/src/steps/step-32-paywall.tsx +2253 -0
- package/template_scaffold/src/steps/step-32b-paywall-b.tsx +35 -0
- package/template_scaffold/src/steps/step-33-subscription-started.test.ts +26 -0
- package/template_scaffold/src/steps/step-33-subscription-started.tsx +86 -0
- package/template_scaffold/src/steps/step-34-upsell-form.test.ts +27 -0
- package/template_scaffold/src/steps/step-35-manage-subscription.tsx +46 -0
- package/template_scaffold/src/steps/step-content.registry.ts +45 -0
- package/template_scaffold/src/steps/step-image-migration.test.ts +20 -0
- package/template_scaffold/src/steps/styles/index.css +2 -0
- package/template_scaffold/src/steps/styles/shared/final-flow-shared.css +55 -0
- package/template_scaffold/src/steps/styles/shared/funnel-base.css +543 -0
- package/template_scaffold/src/steps/styles/shared/info-shared.css +139 -0
- package/template_scaffold/src/steps/styles/shared/progress-shared.css +117 -0
- package/template_scaffold/src/steps/styles/shared/question-shared.css +76 -0
- package/template_scaffold/src/steps/styles/shared/responsive-container.css +176 -0
- package/template_scaffold/src/steps/types.ts +7 -0
- package/template_scaffold/src/steps/use-claimbee-step-content.ts +15 -0
- package/template_scaffold/src/theme/theme.ts +81 -0
- package/template_scaffold/tsconfig.json +38 -0
- package/template_scaffold/vitest.config.ts +32 -0
- package/template_validation/.funnelsgrove-contract-tools.json +19 -0
- package/template_validation/src/contract/funnel-project.validation.ts +44 -0
- package/template_validation/src/contract/funnel-validator.vite.config.ts +11 -0
- package/template_validation/src/contract/validate-funnel.cli.ts +199 -0
- package/template_docs/docs/ab-experiments.md +0 -55
- package/template_docs/docs/analytics.md +0 -65
- package/template_docs/docs/editing-flow.md +0 -125
- package/template_docs/docs/editing-step.md +0 -125
- package/template_docs/docs/editor-and-content.md +0 -58
- package/template_docs/docs/funnel-runtime-architecture.md +0 -125
- package/template_docs/docs/meta-pixel-conversions-api.md +0 -50
- package/template_docs/docs/payment-plans-and-discounts.md +0 -106
- package/template_docs/docs/publishing-and-versioning.md +0 -117
- package/template_docs/docs/qa-checklist.md +0 -80
- package/template_docs/docs/sdk-api-endpoints.md +0 -78
- package/template_docs/docs/step-ui-guidelines.md +0 -110
- package/template_docs/docs/theme.md +0 -35
|
@@ -0,0 +1,543 @@
|
|
|
1
|
+
.funnel-shell {
|
|
2
|
+
--step-padding-inline: var(--padding);
|
|
3
|
+
position: relative;
|
|
4
|
+
width: min(100vw, 430px);
|
|
5
|
+
aspect-ratio: 430 / 932;
|
|
6
|
+
background: var(--color-bg);
|
|
7
|
+
border-radius: var(--corner-radius);
|
|
8
|
+
overflow: hidden;
|
|
9
|
+
container-type: inline-size;
|
|
10
|
+
font-family: var(--font-family-base);
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.funnel-shell[data-preview-frame='true'] {
|
|
14
|
+
width: min(100%, 390px);
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
@media (max-width: 430px) {
|
|
18
|
+
.funnel-shell:not([data-preview-frame='true'])[data-step-kind='manage-subscription'],
|
|
19
|
+
.funnel-shell:not([data-preview-frame='true'])[data-step-kind='cancellation'] {
|
|
20
|
+
aspect-ratio: auto;
|
|
21
|
+
height: 100vh;
|
|
22
|
+
height: 100svh;
|
|
23
|
+
height: 100dvh;
|
|
24
|
+
border-radius: 0;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.funnel-shell[data-step-kind='manage-subscription'] .manage-subscription,
|
|
29
|
+
.funnel-shell[data-step-kind='cancellation'] .manage-subscription {
|
|
30
|
+
overscroll-behavior: contain;
|
|
31
|
+
-webkit-overflow-scrolling: touch;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.funnel-content {
|
|
35
|
+
position: absolute;
|
|
36
|
+
inset: 0;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.funnel-shell[data-preview-thumbnail='true'] .funnel-content {
|
|
40
|
+
transform: scale(0.9);
|
|
41
|
+
transform-origin: top center;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.funnel-shell[data-preview-frame='true'] .step-stage {
|
|
45
|
+
overflow-x: hidden;
|
|
46
|
+
overflow-y: auto;
|
|
47
|
+
overscroll-behavior: contain;
|
|
48
|
+
scrollbar-width: none;
|
|
49
|
+
-webkit-overflow-scrolling: touch;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.funnel-shell[data-preview-frame='true'] .step-stage::-webkit-scrollbar {
|
|
53
|
+
display: none;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.funnel-shell[data-preview-frame='true'] .step-stage-transition {
|
|
57
|
+
position: relative;
|
|
58
|
+
min-height: 100%;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.step-stage {
|
|
62
|
+
position: absolute;
|
|
63
|
+
inset: 0;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.figma-step-screen {
|
|
67
|
+
position: absolute;
|
|
68
|
+
inset: 0;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.figma-step-screen--question {
|
|
72
|
+
background: var(--color-bg-warning);
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.figma-headline {
|
|
76
|
+
position: absolute;
|
|
77
|
+
top: 145px;
|
|
78
|
+
left: var(--step-padding-inline);
|
|
79
|
+
right: var(--step-padding-inline);
|
|
80
|
+
width: auto;
|
|
81
|
+
z-index: 20;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.figma-headline--center {
|
|
85
|
+
top: calc(50% - 247px);
|
|
86
|
+
text-align: center;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.figma-headline-line {
|
|
90
|
+
margin: 0;
|
|
91
|
+
color: var(--color-text);
|
|
92
|
+
font-size: 36px;
|
|
93
|
+
font-weight: 500;
|
|
94
|
+
line-height: 1.25;
|
|
95
|
+
letter-spacing: -0.04em;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.figma-headline-line.is-accent {
|
|
99
|
+
color: var(--step-accent, var(--color-secondary));
|
|
100
|
+
font-weight: 800;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.figma-artwork {
|
|
104
|
+
position: absolute;
|
|
105
|
+
inset: 0;
|
|
106
|
+
overflow: hidden;
|
|
107
|
+
pointer-events: none;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
.figma-artwork--question .figma-artwork-sprite {
|
|
111
|
+
top: 458px;
|
|
112
|
+
width: 353px;
|
|
113
|
+
height: 235px;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.figma-artwork-sprite {
|
|
117
|
+
position: absolute;
|
|
118
|
+
top: 145px;
|
|
119
|
+
left: var(--sprite-offset-x);
|
|
120
|
+
width: 1364px;
|
|
121
|
+
height: 909px;
|
|
122
|
+
max-width: none;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
.figma-artwork-glow {
|
|
126
|
+
position: absolute;
|
|
127
|
+
left: 155px;
|
|
128
|
+
top: 464px;
|
|
129
|
+
width: 116px;
|
|
130
|
+
height: 110px;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.figma-artwork-bee {
|
|
134
|
+
position: absolute;
|
|
135
|
+
left: 181px;
|
|
136
|
+
top: 464px;
|
|
137
|
+
width: 99px;
|
|
138
|
+
height: 99px;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.action-bar {
|
|
142
|
+
position: absolute;
|
|
143
|
+
left: var(--step-padding-inline);
|
|
144
|
+
right: var(--step-padding-inline);
|
|
145
|
+
bottom: 36px;
|
|
146
|
+
z-index: 50;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
.choice-row {
|
|
150
|
+
display: flex;
|
|
151
|
+
gap: 14px;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
.choice-button {
|
|
155
|
+
width: 184px;
|
|
156
|
+
height: 76px;
|
|
157
|
+
border-radius: 16px;
|
|
158
|
+
border: 2px solid var(--color-primary);
|
|
159
|
+
background: transparent;
|
|
160
|
+
color: var(--color-primary);
|
|
161
|
+
font-size: 18px;
|
|
162
|
+
font-weight: 700;
|
|
163
|
+
line-height: 24px;
|
|
164
|
+
cursor: pointer;
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
.primary-button {
|
|
168
|
+
width: 100%;
|
|
169
|
+
border: none;
|
|
170
|
+
border-radius: 16px;
|
|
171
|
+
height: 64px;
|
|
172
|
+
background: var(--color-primary);
|
|
173
|
+
color: var(--color-button-text);
|
|
174
|
+
font-size: 18px;
|
|
175
|
+
font-weight: 700;
|
|
176
|
+
line-height: 24px;
|
|
177
|
+
cursor: pointer;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
.primary-button:active {
|
|
181
|
+
transform: translateY(1px);
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
.primary-button.is-muted {
|
|
185
|
+
background: var(--color-accent-muted);
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
.devices-step {
|
|
189
|
+
position: absolute;
|
|
190
|
+
inset: 0;
|
|
191
|
+
background: var(--color-bg-muted);
|
|
192
|
+
padding: 122px var(--step-padding-inline) 0;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
.devices-header {
|
|
196
|
+
display: flex;
|
|
197
|
+
flex-direction: column;
|
|
198
|
+
gap: 16px;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
.devices-title {
|
|
202
|
+
margin: 0;
|
|
203
|
+
color: var(--color-text);
|
|
204
|
+
font-size: 28px;
|
|
205
|
+
font-weight: 700;
|
|
206
|
+
line-height: 1.35;
|
|
207
|
+
letter-spacing: -0.02em;
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
.devices-title .is-accent {
|
|
211
|
+
color: var(--color-secondary);
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
.devices-description {
|
|
215
|
+
margin: 0;
|
|
216
|
+
color: var(--color-text);
|
|
217
|
+
font-size: 16px;
|
|
218
|
+
font-weight: 500;
|
|
219
|
+
line-height: 1.35;
|
|
220
|
+
opacity: 0.82;
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
.devices-options {
|
|
224
|
+
display: flex;
|
|
225
|
+
flex-direction: column;
|
|
226
|
+
gap: 16px;
|
|
227
|
+
margin-top: 24px;
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
.device-option {
|
|
231
|
+
display: flex;
|
|
232
|
+
align-items: center;
|
|
233
|
+
justify-content: space-between;
|
|
234
|
+
width: 100%;
|
|
235
|
+
min-height: 80px;
|
|
236
|
+
border: none;
|
|
237
|
+
border-radius: 12px;
|
|
238
|
+
padding: 22px 16px;
|
|
239
|
+
background: var(--color-surface);
|
|
240
|
+
text-align: left;
|
|
241
|
+
font: inherit;
|
|
242
|
+
cursor: default;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
.device-option.is-interactive {
|
|
246
|
+
cursor: pointer;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
.device-option.is-selected {
|
|
250
|
+
border: 2px solid var(--color-secondary);
|
|
251
|
+
background: var(--color-accent-soft);
|
|
252
|
+
padding: 20px 14px;
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
.device-option-main {
|
|
256
|
+
display: flex;
|
|
257
|
+
align-items: center;
|
|
258
|
+
gap: 16px;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
.device-option-icon {
|
|
262
|
+
width: 32px;
|
|
263
|
+
height: 32px;
|
|
264
|
+
object-fit: contain;
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
.device-option-icon--ipad {
|
|
268
|
+
position: relative;
|
|
269
|
+
border: 3px solid var(--color-text);
|
|
270
|
+
border-radius: 4px;
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
.device-option-icon--ipad::before {
|
|
274
|
+
content: '';
|
|
275
|
+
position: absolute;
|
|
276
|
+
left: 50%;
|
|
277
|
+
bottom: -6px;
|
|
278
|
+
width: 6px;
|
|
279
|
+
height: 6px;
|
|
280
|
+
border: 2px solid var(--color-text);
|
|
281
|
+
border-radius: 50%;
|
|
282
|
+
transform: translateX(-50%);
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
.device-option-label {
|
|
286
|
+
color: var(--color-text);
|
|
287
|
+
font-size: 18px;
|
|
288
|
+
font-weight: 600;
|
|
289
|
+
line-height: 24px;
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
.device-option-checkbox {
|
|
293
|
+
display: inline-flex;
|
|
294
|
+
width: 20px;
|
|
295
|
+
height: 20px;
|
|
296
|
+
border: 2px solid var(--color-border);
|
|
297
|
+
border-radius: 4px;
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
.device-option-checkbox.is-selected {
|
|
301
|
+
align-items: center;
|
|
302
|
+
justify-content: center;
|
|
303
|
+
border-color: var(--color-secondary);
|
|
304
|
+
background: var(--color-secondary);
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
.device-option-checkbox-icon {
|
|
308
|
+
width: 12px;
|
|
309
|
+
height: 10px;
|
|
310
|
+
color: var(--color-button-text);
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
@media (max-width: 430px) {
|
|
314
|
+
.page-root {
|
|
315
|
+
align-items: stretch;
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
.figma-headline {
|
|
319
|
+
top: 116px;
|
|
320
|
+
left: var(--step-padding-inline);
|
|
321
|
+
right: var(--step-padding-inline);
|
|
322
|
+
width: auto;
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
.figma-headline--center {
|
|
326
|
+
top: 110px;
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
.figma-artwork-sprite {
|
|
330
|
+
top: 130px;
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
.figma-artwork--question .figma-artwork-sprite {
|
|
334
|
+
top: 430px;
|
|
335
|
+
left: 39px;
|
|
336
|
+
width: calc(100% - 78px);
|
|
337
|
+
height: auto;
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
.action-bar {
|
|
341
|
+
left: var(--step-padding-inline);
|
|
342
|
+
right: var(--step-padding-inline);
|
|
343
|
+
bottom: 34px;
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
.choice-row {
|
|
347
|
+
width: 100%;
|
|
348
|
+
gap: 12px;
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
.choice-button {
|
|
352
|
+
width: calc((100% - 12px) / 2);
|
|
353
|
+
height: 64px;
|
|
354
|
+
font-size: 17px;
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
.primary-button {
|
|
358
|
+
height: 56px;
|
|
359
|
+
font-size: 18px;
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
.devices-step {
|
|
363
|
+
padding: 116px var(--step-padding-inline) 0;
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
.devices-title {
|
|
367
|
+
font-size: 26px;
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
.devices-description {
|
|
371
|
+
font-size: 14px;
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
.device-option {
|
|
375
|
+
min-height: 72px;
|
|
376
|
+
padding: 20px 14px;
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
.device-option.is-selected {
|
|
380
|
+
padding: 18px 12px;
|
|
381
|
+
}
|
|
382
|
+
|
|
383
|
+
.device-option-label {
|
|
384
|
+
font-size: 16px;
|
|
385
|
+
}
|
|
386
|
+
|
|
387
|
+
.settlement-content {
|
|
388
|
+
top: 108px;
|
|
389
|
+
left: var(--step-padding-inline);
|
|
390
|
+
right: var(--step-padding-inline);
|
|
391
|
+
width: auto;
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
.settlement-copy--lead {
|
|
395
|
+
font-size: 17px;
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
.settlement-copy--headline {
|
|
399
|
+
font-size: 32px;
|
|
400
|
+
}
|
|
401
|
+
|
|
402
|
+
.settlement-pill {
|
|
403
|
+
margin: 12px 0 16px;
|
|
404
|
+
font-size: 19px;
|
|
405
|
+
}
|
|
406
|
+
|
|
407
|
+
.settlement-copy--note-label {
|
|
408
|
+
font-size: 20px;
|
|
409
|
+
}
|
|
410
|
+
|
|
411
|
+
.settlement-copy--note {
|
|
412
|
+
font-size: 16px;
|
|
413
|
+
}
|
|
414
|
+
|
|
415
|
+
.settlement-copy--amount {
|
|
416
|
+
font-size: 32px;
|
|
417
|
+
}
|
|
418
|
+
|
|
419
|
+
.settlement-artwork {
|
|
420
|
+
top: 500px;
|
|
421
|
+
width: min(327px, calc(100% - 80px));
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
.settlement-status {
|
|
425
|
+
left: var(--step-padding-inline);
|
|
426
|
+
right: var(--step-padding-inline);
|
|
427
|
+
bottom: 88px;
|
|
428
|
+
gap: 10px;
|
|
429
|
+
}
|
|
430
|
+
|
|
431
|
+
.subscriptions-tag {
|
|
432
|
+
top: 76px;
|
|
433
|
+
}
|
|
434
|
+
|
|
435
|
+
.subscriptions-content {
|
|
436
|
+
top: 168px;
|
|
437
|
+
left: var(--step-padding-inline);
|
|
438
|
+
right: var(--step-padding-inline);
|
|
439
|
+
width: auto;
|
|
440
|
+
}
|
|
441
|
+
|
|
442
|
+
.subscriptions-title {
|
|
443
|
+
font-size: 28px;
|
|
444
|
+
}
|
|
445
|
+
|
|
446
|
+
.subscriptions-highlight p {
|
|
447
|
+
font-size: 22px;
|
|
448
|
+
}
|
|
449
|
+
|
|
450
|
+
.subscriptions-line {
|
|
451
|
+
font-size: 16px;
|
|
452
|
+
}
|
|
453
|
+
|
|
454
|
+
.prime-title {
|
|
455
|
+
top: 208px;
|
|
456
|
+
left: var(--step-padding-inline);
|
|
457
|
+
right: var(--step-padding-inline);
|
|
458
|
+
width: auto;
|
|
459
|
+
font-size: 28px;
|
|
460
|
+
letter-spacing: -0.02em;
|
|
461
|
+
}
|
|
462
|
+
|
|
463
|
+
.prime-artwork {
|
|
464
|
+
top: 458px;
|
|
465
|
+
}
|
|
466
|
+
|
|
467
|
+
.rights-content {
|
|
468
|
+
top: 112px;
|
|
469
|
+
left: var(--step-padding-inline);
|
|
470
|
+
right: var(--step-padding-inline);
|
|
471
|
+
width: auto;
|
|
472
|
+
}
|
|
473
|
+
|
|
474
|
+
.rights-title {
|
|
475
|
+
font-size: 26px;
|
|
476
|
+
}
|
|
477
|
+
|
|
478
|
+
.rights-body {
|
|
479
|
+
margin-top: 12px;
|
|
480
|
+
font-size: 16px;
|
|
481
|
+
}
|
|
482
|
+
|
|
483
|
+
.rights-pill {
|
|
484
|
+
margin-top: 10px;
|
|
485
|
+
font-size: 28px;
|
|
486
|
+
}
|
|
487
|
+
|
|
488
|
+
.rights-why {
|
|
489
|
+
margin-top: 14px;
|
|
490
|
+
font-size: 34px;
|
|
491
|
+
}
|
|
492
|
+
|
|
493
|
+
.rights-text {
|
|
494
|
+
margin-top: 12px;
|
|
495
|
+
font-size: 14px;
|
|
496
|
+
}
|
|
497
|
+
|
|
498
|
+
.rights-artwork {
|
|
499
|
+
top: 486px;
|
|
500
|
+
width: min(392px, calc(100% - 38px));
|
|
501
|
+
}
|
|
502
|
+
|
|
503
|
+
.payout-header {
|
|
504
|
+
top: 108px;
|
|
505
|
+
left: var(--step-padding-inline);
|
|
506
|
+
right: var(--step-padding-inline);
|
|
507
|
+
width: auto;
|
|
508
|
+
gap: 12px;
|
|
509
|
+
}
|
|
510
|
+
|
|
511
|
+
.payout-title {
|
|
512
|
+
font-size: 26px;
|
|
513
|
+
}
|
|
514
|
+
|
|
515
|
+
.payout-description {
|
|
516
|
+
font-size: 17px;
|
|
517
|
+
}
|
|
518
|
+
|
|
519
|
+
.payout-card {
|
|
520
|
+
top: 349px;
|
|
521
|
+
width: min(294px, calc(100% - 40px));
|
|
522
|
+
padding: 22px 16px;
|
|
523
|
+
}
|
|
524
|
+
|
|
525
|
+
.payout-avatar {
|
|
526
|
+
width: 84px;
|
|
527
|
+
height: 84px;
|
|
528
|
+
}
|
|
529
|
+
|
|
530
|
+
.payout-quotes {
|
|
531
|
+
width: 36px;
|
|
532
|
+
}
|
|
533
|
+
|
|
534
|
+
.payout-quote {
|
|
535
|
+
font-size: 17px;
|
|
536
|
+
}
|
|
537
|
+
}
|
|
538
|
+
|
|
539
|
+
.primary-button:disabled {
|
|
540
|
+
cursor: default;
|
|
541
|
+
opacity: 0.64;
|
|
542
|
+
transform: none;
|
|
543
|
+
}
|
|
@@ -0,0 +1,139 @@
|
|
|
1
|
+
.info-step {
|
|
2
|
+
position: absolute;
|
|
3
|
+
inset: 0;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.info-step--blue {
|
|
7
|
+
background: var(--color-bg);
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.info-step--mint {
|
|
11
|
+
background: var(--color-bg-muted);
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.info-step-content {
|
|
15
|
+
position: absolute;
|
|
16
|
+
top: 122px;
|
|
17
|
+
left: var(--padding);
|
|
18
|
+
right: var(--padding);
|
|
19
|
+
width: auto;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.info-title {
|
|
23
|
+
margin: 0;
|
|
24
|
+
color: var(--color-text);
|
|
25
|
+
font-size: 28px;
|
|
26
|
+
font-weight: 700;
|
|
27
|
+
line-height: 1.35;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.info-title--active-cases {
|
|
31
|
+
display: flex;
|
|
32
|
+
flex-direction: column;
|
|
33
|
+
gap: 2px;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.active-cases-title-line {
|
|
37
|
+
display: block;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.active-cases-title-line--main {
|
|
41
|
+
color: var(--color-accent);
|
|
42
|
+
font-size: 56px;
|
|
43
|
+
font-weight: 800;
|
|
44
|
+
line-height: 1.1;
|
|
45
|
+
letter-spacing: -0.03em;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.active-cases-title-line--small {
|
|
49
|
+
font-size: 20px;
|
|
50
|
+
font-weight: 700;
|
|
51
|
+
line-height: 1.25;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.info-title--big {
|
|
55
|
+
line-height: 1.2;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.is-green-lg {
|
|
59
|
+
color: var(--color-button);
|
|
60
|
+
font-size: 76px;
|
|
61
|
+
font-weight: 800;
|
|
62
|
+
line-height: 1.1;
|
|
63
|
+
letter-spacing: -0.04em;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.is-indigo-xl {
|
|
67
|
+
color: var(--color-accent);
|
|
68
|
+
font-size: 56px;
|
|
69
|
+
font-weight: 800;
|
|
70
|
+
line-height: 1.1;
|
|
71
|
+
letter-spacing: -0.03em;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.info-paragraph {
|
|
75
|
+
margin: 16px 0 0;
|
|
76
|
+
color: var(--color-text);
|
|
77
|
+
font-size: 20px;
|
|
78
|
+
font-weight: 500;
|
|
79
|
+
line-height: 1.35;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.info-paragraph--lg {
|
|
83
|
+
font-size: 18px;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.info-note-label {
|
|
87
|
+
margin: 18px 0 0;
|
|
88
|
+
color: var(--color-accent);
|
|
89
|
+
font-size: 20px;
|
|
90
|
+
font-weight: 700;
|
|
91
|
+
line-height: 1.35;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.info-pill {
|
|
95
|
+
display: inline-block;
|
|
96
|
+
margin: 16px 0 0;
|
|
97
|
+
border-radius: 16px;
|
|
98
|
+
padding: 12px 16px;
|
|
99
|
+
background: var(--color-warning);
|
|
100
|
+
color: var(--color-button-text);
|
|
101
|
+
font-size: 40px;
|
|
102
|
+
font-weight: 700;
|
|
103
|
+
line-height: 1.25;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.info-amount {
|
|
107
|
+
margin: 6px 0 0;
|
|
108
|
+
color: var(--color-warning);
|
|
109
|
+
font-size: 56px;
|
|
110
|
+
font-weight: 800;
|
|
111
|
+
line-height: 1.25;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
.info-amount--large {
|
|
115
|
+
font-size: 68px;
|
|
116
|
+
line-height: 1.1;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
.info-step-art {
|
|
120
|
+
position: absolute;
|
|
121
|
+
left: 50%;
|
|
122
|
+
transform: translateX(-50%);
|
|
123
|
+
height: auto;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
.info-step-art--active-cases {
|
|
127
|
+
top: 490px;
|
|
128
|
+
width: 412px;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.info-step-art--breach {
|
|
132
|
+
top: 571px;
|
|
133
|
+
width: 347px;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.info-step-art--privacy {
|
|
137
|
+
top: 487px;
|
|
138
|
+
width: 400px;
|
|
139
|
+
}
|