@goodhood-web/nebenan-core 3.0.0-development.7 → 3.0.0-development.71

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (32) hide show
  1. package/index.d.ts +5 -2
  2. package/index.js +29 -30
  3. package/index.mjs +4818 -5087
  4. package/lib/DynamicRenderer/DynamicRenderer.d.ts +1 -8
  5. package/lib/DynamicRenderer/DynamicRenderer.types.d.ts +10 -0
  6. package/lib/PersuasionBlock/PersuasionContent/PersuasionContent.strapi.d.ts +6 -0
  7. package/lib/PersuasionBlock/PersuasionContent/PersuasionImage/PersuasionImage.strapi.d.ts +6 -0
  8. package/lib/PersuasionBlock/PersuasionContent/PersuasionList/PersuasionList.strapi.d.ts +6 -0
  9. package/lib/PersuasionBlock/PersuasionContent/PersuasionText/PersuasionText.strapi.d.ts +6 -0
  10. package/lib/PersuasionBlock/PersuasionContent/PersuasionText/PersuasionText.types.d.ts +1 -1
  11. package/lib/PersuasionBlock/PersuasionImageSet/PersuationImageSet.strapi.d.ts +6 -0
  12. package/lib/SponsorCardForm/SponsorCardForm.strapi.d.ts +10 -0
  13. package/lib/SponsorCardForm/components/AmountPickerBlock/AmountPickerBlock.d.ts +1 -1
  14. package/lib/SponsorCardForm/components/GuidelinesModal/GuidelinesModal.d.ts +1 -1
  15. package/lib/SponsorCardForm/utilities/parseStrapiRichText.d.ts +11 -0
  16. package/lib/SponsorCardForm/utilities/splitArrayByHR.d.ts +2 -0
  17. package/lib/WebContent/Legal/Legal.d.ts +9 -0
  18. package/lib/WebContent/Legal/Legal.strapi.d.ts +6 -0
  19. package/lib/WebContent/Privacy/Privacy.d.ts +3 -0
  20. package/lib/WebContent/Privacy/Privacy.strapi.d.ts +6 -0
  21. package/lib/WebContent/Privacy/Privacy.types.d.ts +18 -0
  22. package/lib/WebContent/Privacy/components/PrivacyOptions/PrivacyOptions.d.ts +2 -0
  23. package/lib/WebContent/Privacy/components/PrivacyOptions/components/TrackingOptions/TrackingOptions.d.ts +2 -0
  24. package/lib/WebContent/Privacy/components/ProtectionBox/ProtectionBox.d.ts +2 -0
  25. package/lib/WebContent/components/ContactFooter/ContactFooter.d.ts +2 -0
  26. package/lib/WebContent/components/ContactFooter/ContactFooter.types.d.ts +4 -0
  27. package/lib/WebContent/components/ContactFooter/const.d.ts +1 -0
  28. package/lib/WebContent/components/Header/Header.d.ts +5 -0
  29. package/lib/WebContent/utils.d.ts +3 -0
  30. package/package.json +1 -1
  31. package/style.css +1 -1
  32. package/lib/SponsorCardForm/SponsorCardForm.contentful.d.ts +0 -11
@@ -1,10 +1,3 @@
1
- import { Entry } from 'contentful';
2
- import { TypeBlockPersuasionContentSkeleton, TypeBlockPersuasionImageSetSkeleton, TypeBlockSponsorCardSkeleton } from '../../../../api/src/core/contentful/core/types';
3
- import { SubmitValues } from '../SponsorCardForm/SponsorCardForm.types';
4
- interface DynamicRendererProps {
5
- dynamicContent: Array<Entry<TypeBlockSponsorCardSkeleton | TypeBlockPersuasionImageSetSkeleton | TypeBlockPersuasionContentSkeleton, 'WITHOUT_UNRESOLVABLE_LINKS', string>> | undefined;
6
- onError: () => void;
7
- onSubmit: (value: SubmitValues) => void;
8
- }
1
+ import { DynamicRendererProps } from './DynamicRenderer.types';
9
2
  declare const DynamicRenderer: ({ dynamicContent, onError, onSubmit }: DynamicRendererProps) => import("react/jsx-runtime").JSX.Element;
10
3
  export default DynamicRenderer;
@@ -0,0 +1,10 @@
1
+ import { components } from '../../../../api/src/core/strapi/generated_types';
2
+ import { SubmitValues } from '../SponsorCardForm/SponsorCardForm.types';
3
+ export interface DynamicRendererProps {
4
+ dynamicContent: {
5
+ blocks: (components['schemas']['CoreComponentsSponsorCardComponent'] | components['schemas']['CoreComponentsPersuasionImageSetComponent'] | components['schemas']['CoreComponentsPersuasionContentComponent'] | components['schemas']['CoreComponentsLegalComponent'] | components['schemas']['CoreComponentsPrivacyComponent'])[];
6
+ cardHeader?: components['schemas']['SubcomponentsCardHeaderComponent'];
7
+ };
8
+ onError?: () => void;
9
+ onSubmit?: (value: SubmitValues) => void;
10
+ }
@@ -0,0 +1,6 @@
1
+ import { components } from '../../../../../api/src/core/strapi/generated_types';
2
+ interface StrapiPersuasionContentProps {
3
+ block: components['schemas']['CoreComponentsPersuasionContentComponent'];
4
+ }
5
+ declare const StrapiPersuasionContent: ({ block }: StrapiPersuasionContentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default StrapiPersuasionContent;
@@ -0,0 +1,6 @@
1
+ import { components } from '../../../../../../api/src/core/strapi/generated_types';
2
+ interface StrapiPersuasionImageProps {
3
+ block: components['schemas']['SubcomponentsPersuasionContentBodyComponent'];
4
+ }
5
+ declare const StrapiPersuasionImage: ({ block }: StrapiPersuasionImageProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default StrapiPersuasionImage;
@@ -0,0 +1,6 @@
1
+ import { components } from '../../../../../../api/src/core/strapi/generated_types';
2
+ interface StrapiPersuasionListProps {
3
+ block: components['schemas']['SubcomponentsPersuasionContentBodyComponent'];
4
+ }
5
+ declare const StrapiPersuasionList: ({ block }: StrapiPersuasionListProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default StrapiPersuasionList;
@@ -0,0 +1,6 @@
1
+ import { components } from '../../../../../../api/src/core/strapi/generated_types';
2
+ export interface StrapiPersuasionTextProps {
3
+ block: components['schemas']['SubcomponentsPersuasionContentBodyComponent'];
4
+ }
5
+ declare const StrapiPersuasionText: ({ block }: StrapiPersuasionTextProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default StrapiPersuasionText;
@@ -1,4 +1,4 @@
1
1
  import { ReactNode } from 'react';
2
2
  export default interface PersuasionTextProps {
3
- children: ReactNode;
3
+ children: ReactNode | string;
4
4
  }
@@ -0,0 +1,6 @@
1
+ import { components } from '../../../../../api/src/core/strapi/generated_types';
2
+ export interface StrapiSponsorCardFormProps {
3
+ block: components['schemas']['CoreComponentsPersuasionImageSetComponent'];
4
+ }
5
+ declare const StrapiPersuasionImageSet: ({ block }: StrapiSponsorCardFormProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default StrapiPersuasionImageSet;
@@ -0,0 +1,10 @@
1
+ import { components } from '../../../../api/src/core/strapi/generated_types';
2
+ import { SubmitValues } from './SponsorCardForm.types';
3
+ export interface StrapiSponsorCardFormProps {
4
+ block: components['schemas']['CoreComponentsSponsorCardComponent'];
5
+ isDesktop: boolean;
6
+ onError: () => void;
7
+ onSubmit: (values: SubmitValues) => void;
8
+ }
9
+ declare const StrapiSponsorCardForm: ({ block, isDesktop, onError, onSubmit, }: StrapiSponsorCardFormProps) => import("react/jsx-runtime").JSX.Element;
10
+ export default StrapiSponsorCardForm;
@@ -1,7 +1,7 @@
1
1
  interface AmountPickerBlockProps {
2
2
  errorMessage?: string;
3
3
  id: string;
4
- onChange: (id: string, value: number) => void;
4
+ onChange: (value: number) => void;
5
5
  value: number;
6
6
  }
7
7
  declare const AmountPickerBlock: ({ errorMessage, id, onChange, value, }: AmountPickerBlockProps) => import("react/jsx-runtime").JSX.Element;
@@ -1,7 +1,7 @@
1
1
  import { ReactNode } from 'react';
2
2
  export interface GuidelinesModalDataProps {
3
3
  buttonText: string;
4
- content: ReactNode[][];
4
+ content: string | ReactNode[][];
5
5
  date: string;
6
6
  headline: string;
7
7
  version: string;
@@ -0,0 +1,11 @@
1
+ export declare function parseHTMLContent(htmlString: string): {
2
+ content: {
3
+ content: {
4
+ marks: never[];
5
+ nodeType: string;
6
+ value: string;
7
+ }[];
8
+ nodeType: string;
9
+ }[];
10
+ nodeType: string;
11
+ };
@@ -0,0 +1,2 @@
1
+ import { JSXElementConstructor, ReactElement, ReactNode } from 'react';
2
+ export declare const splitArrayByHR: (arr: ReactNode) => ReactElement<any, string | JSXElementConstructor<any>>[][];
@@ -0,0 +1,9 @@
1
+ import { ContactFooterProps } from '../components/ContactFooter/ContactFooter.types';
2
+ interface TermsProps {
3
+ body: string;
4
+ contactFooter?: ContactFooterProps;
5
+ updateDate?: string;
6
+ version?: string;
7
+ }
8
+ declare const Legal: ({ body, contactFooter, updateDate, version }: TermsProps) => import("react/jsx-runtime").JSX.Element;
9
+ export default Legal;
@@ -0,0 +1,6 @@
1
+ import { components } from '../../../../../api/src/core/strapi/generated_types';
2
+ interface StrapiTermsProps {
3
+ block: components['schemas']['CoreComponentsLegalComponent'];
4
+ }
5
+ declare const StrapiLegal: ({ block }: StrapiTermsProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default StrapiLegal;
@@ -0,0 +1,3 @@
1
+ import { PrivacyProps } from './Privacy.types';
2
+ declare const Privacy: ({ body, contactFooter, privacyOptions, protection }: PrivacyProps) => import("react/jsx-runtime").JSX.Element;
3
+ export default Privacy;
@@ -0,0 +1,6 @@
1
+ import { components } from '../../../../../api/src/core/strapi/generated_types';
2
+ interface StrapiPrivacyProps {
3
+ block: components['schemas']['CoreComponentsPrivacyComponent'];
4
+ }
5
+ declare const StrapiPrivacy: ({ block }: StrapiPrivacyProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default StrapiPrivacy;
@@ -0,0 +1,18 @@
1
+ import { ContactFooterProps } from '../components/ContactFooter/ContactFooter.types';
2
+ export interface PrivacyOptionsProps {
3
+ cta: string;
4
+ portabilityBody: string;
5
+ portabilityCta: string;
6
+ portabilityTitle: string;
7
+ title: string;
8
+ }
9
+ export interface ProtectionProps {
10
+ body: string;
11
+ title: string;
12
+ }
13
+ export interface PrivacyProps {
14
+ body: string;
15
+ contactFooter: ContactFooterProps;
16
+ privacyOptions: PrivacyOptionsProps;
17
+ protection: ProtectionProps;
18
+ }
@@ -0,0 +1,2 @@
1
+ import { PrivacyOptionsProps } from '../../Privacy.types';
2
+ export declare const PrivacyOptions: ({ cta, portabilityBody, portabilityCta, portabilityTitle, title, }: PrivacyOptionsProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,2 @@
1
+ declare const TrackingOptions: () => import("react/jsx-runtime").JSX.Element;
2
+ export default TrackingOptions;
@@ -0,0 +1,2 @@
1
+ import { ProtectionProps } from '../../Privacy.types';
2
+ export declare const ProtectionBox: ({ body, title }: ProtectionProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { ContactFooterProps } from './ContactFooter.types';
2
+ export declare const ContactFooter: ({ body, cta }: ContactFooterProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,4 @@
1
+ export interface ContactFooterProps {
2
+ body: string;
3
+ cta: string;
4
+ }
@@ -0,0 +1 @@
1
+ export declare const HELP_LINK = "https://hilfe.nebenan.de/hc/de";
@@ -0,0 +1,5 @@
1
+ type HeaderProps = {
2
+ title?: string;
3
+ };
4
+ export declare const Header: ({ title }: HeaderProps) => import("react/jsx-runtime").JSX.Element | null;
5
+ export {};
@@ -0,0 +1,3 @@
1
+ import { components } from '../../../../api/src/core/strapi/generated_types';
2
+ import { ContactFooterProps } from './components/ContactFooter/ContactFooter.types';
3
+ export declare const formatContactFooter: (component?: components["schemas"]["SubcomponentsContactFooterComponent"]) => ContactFooterProps;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goodhood-web/nebenan-core",
3
- "version": "3.0.0-development.7",
3
+ "version": "3.0.0-development.71",
4
4
  "main": "./index.js",
5
5
  "types": "./index.d.ts",
6
6
  "repository": "https://github.com/good-hood-gmbh/goodhood-web",
package/style.css CHANGED
@@ -1 +1 @@
1
- @font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:700;src:url(fonts/Byrd/Byrd-Bold.woff2)}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:900;src:url(fonts/Byrd/Byrd-Black.woff2)}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._persuasionContent_bnv3o_120{display:flex;flex-direction:column;padding:24px 16px;gap:16px}._persuasionContent_bnv3o_120 h4,._persuasionContent_bnv3o_120 h3,._persuasionContent_bnv3o_120 h2{margin-bottom:12px;color:#201649}._persuasionContent--center_bnv3o_132{text-align:center}._persuasionContent--center_bnv3o_132 ._persuasionContentInner_bnv3o_135{max-width:450px}._persuasionContent--center_bnv3o_132 ul{max-width:287px;align-self:center}._persuasionContent--left_bnv3o_142{text-align:left}._persuasionContent--surfaceContainer_bnv3o_145{background-color:#f4f3f6}._persuasionContent--vanilla_bnv3o_148{background-color:#fff9e5}@media screen and (min-width: 690px){._persuasionContent_bnv3o_120{padding:32px 16px;gap:24px}}._persuasionContent_bnv3o_120 ._persuasionContentInner_bnv3o_135{display:flex;flex-direction:column;align-self:center;gap:16px}@media screen and (min-width: 690px){._persuasionContent_bnv3o_120 ._persuasionContentInner_bnv3o_135{gap:24px}}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:700;src:url(fonts/Byrd/Byrd-Bold.woff2)}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:900;src:url(fonts/Byrd/Byrd-Black.woff2)}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._persuationImage_1ge4j_121{display:flex;flex-direction:column;flex-wrap:wrap;align-items:center;justify-content:center;gap:24px}@media screen and (min-width: 690px){._persuationImage_1ge4j_121{flex-direction:row}}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:700;src:url(fonts/Byrd/Byrd-Bold.woff2)}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:900;src:url(fonts/Byrd/Byrd-Black.woff2)}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._persuasionList_1fwgd_120{display:flex;flex-direction:column;gap:12px}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:700;src:url(fonts/Byrd/Byrd-Bold.woff2)}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:900;src:url(fonts/Byrd/Byrd-Black.woff2)}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._persuasionListItem_14jvr_120{display:flex;flex-direction:column;align-items:center;padding:4px 0;gap:16px}._persuasionListItem__text_14jvr_127{display:flex;max-width:300px;flex-direction:column;gap:8px}._persuasionListItem__ellipse_14jvr_133{width:9px;height:9px;border-radius:999px;background-color:#7c5bff}._persuasionListItem--hasIcon_14jvr_139{flex-direction:row;align-items:start;padding:4px 0;gap:16px;text-align:left}._persuasionListItem--hasIcon_14jvr_139 ._persuasionListItem__text_14jvr_127{max-width:unset;gap:8px}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:700;src:url(fonts/Byrd/Byrd-Bold.woff2)}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:900;src:url(fonts/Byrd/Byrd-Black.woff2)}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._persuasionText_14nmd_120{display:flex;flex-direction:column}._persuasionText_14nmd_120 a,._persuasionText_14nmd_120 a:visited,._persuasionText_14nmd_120 a:active{color:inherit}._whitespace_14nmd_130{min-height:8px;margin-bottom:4px;white-space:pre-wrap}._whitespace_14nmd_130:last-of-type{margin-bottom:0}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:700;src:url(fonts/Byrd/Byrd-Bold.woff2)}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:900;src:url(fonts/Byrd/Byrd-Black.woff2)}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._persuasionImageSet_u1ldm_120{--backdrop-color: transparent;--background-color: transparent;padding:24px 0 0}._persuasionImageSet__images_u1ldm_125{display:flex;justify-content:center;padding:0;background-image:linear-gradient(transparent 30%,var(--backdrop-color) 0%);gap:16px}@media screen and (min-width: 800px){._persuasionImageSet__images_u1ldm_125{padding:0 16px}}._persuasionImageSet__image_u1ldm_125{width:0;height:160px;flex-grow:1;-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center}._persuasionImageSet__text_u1ldm_144{display:flex;flex-direction:column;padding:24px 16px;background-color:var(--background-color);gap:16px;text-align:center}._persuasionImageSet--surface_u1ldm_152{--backdrop-color: #ffffff;--background-color: #ffffff}._persuasionImageSet--surfaceContainer_u1ldm_156{--backdrop-color: #f4f3f6;--background-color: #f4f3f6}._persuasionImageSet--surfaceDim_u1ldm_160{--backdrop-color: #e9e8ed;--background-color: #e9e8ed}._persuasionImageSet--vanilla_u1ldm_164{--backdrop-color: #fff9e5;--background-color: #fff9e5}._persuasionImageSet--primary_u1ldm_168{--backdrop-color: #cae85d;--background-color: #cae85d}@media screen and (min-width: 690px){._persuasionImageSet__body_u1ldm_173{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:16px;font-weight:500;letter-spacing:0;line-height:24px;text-decoration:none;text-indent:0px;text-transform:none}._persuasionImageSet__text_u1ldm_144{padding:32px 16px}}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:700;src:url(fonts/Byrd/Byrd-Bold.woff2)}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:900;src:url(fonts/Byrd/Byrd-Black.woff2)}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._root__body_1cgh9_120{padding:0}._root__form_1cgh9_123{display:flex;flex-direction:column;padding:16px;gap:12px}@media (max-width: 375px){._root__form_1cgh9_123{padding:12px}}._root__form_1cgh9_123 fieldset{padding:0;margin:0}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:700;src:url(fonts/Byrd/Byrd-Bold.woff2)}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:900;src:url(fonts/Byrd/Byrd-Black.woff2)}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._root_1x2jr_120{display:flex;justify-content:center}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:700;src:url(fonts/Byrd/Byrd-Bold.woff2)}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:900;src:url(fonts/Byrd/Byrd-Black.woff2)}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._root_sxwv4_120{display:flex;flex-direction:column;align-items:center;padding:8px 0!important}._root__button_sxwv4_126{color:#201649}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:700;src:url(fonts/Byrd/Byrd-Bold.woff2)}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:900;src:url(fonts/Byrd/Byrd-Black.woff2)}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._root_1qvr8_120{display:flex;flex-direction:column;gap:16px}._root__blockHeader_1qvr8_125{display:flex;justify-content:space-between;color:#635c80}._root__block_1qvr8_125{display:flex;flex-direction:column;gap:8px}._root__block_1qvr8_125 p{color:#635c80}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:700;src:url(fonts/Byrd/Byrd-Bold.woff2)}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:900;src:url(fonts/Byrd/Byrd-Black.woff2)}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._headline_6pzcj_120{display:flex;flex-direction:column;align-items:center;padding:8px 0 12px!important;gap:8px}._headline_6pzcj_120 h1{color:#201649!important;font-style:24px;font-weight:900;text-transform:uppercase}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:700;src:url(fonts/Byrd/Byrd-Bold.woff2)}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:900;src:url(fonts/Byrd/Byrd-Black.woff2)}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._root_1o02i_120{position:relative;display:flex;overflow:hidden;height:auto;padding-bottom:25%}._root__img_1o02i_127,._root_1o02i_120 img{position:absolute;overflow:unset;width:100%;max-height:100%;top:0;right:0;bottom:0;left:0;-o-object-fit:cover;object-fit:cover;-o-object-position:top;object-position:top;overflow-clip-margin:unset}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:700;src:url(fonts/Byrd/Byrd-Bold.woff2)}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:900;src:url(fonts/Byrd/Byrd-Black.woff2)}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._root_kozox_120{display:flex;flex-direction:column;align-items:center;justify-content:center;padding-top:4px!important;gap:4px}._root__checkbox_kozox_128{max-width:360px;padding:12px 16px;border:1px solid #a6a2b6;border-radius:16px}._root__text_kozox_134{max-width:360px;padding-top:24px;color:#635c80;text-align:center}._root__error_kozox_140{display:block;width:100%;max-width:360px;padding:0 8px;color:#cc339f!important}._root--error_kozox_147{background:#fde6f7!important}._root__link_kozox_150{display:inline;height:unset;min-height:unset}._root__link_kozox_150 span{font-weight:600;text-decoration:underline}._root--stickyButton_kozox_159{order:1}._root--stickyButton_kozox_159 ._root__text_kozox_134{padding-top:0}@media screen and (min-width: 800px){._root--stickyButton_kozox_159{order:unset}._root--stickyButton_kozox_159 ._root__text_kozox_134{padding-top:24px}}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:700;src:url(fonts/Byrd/Byrd-Bold.woff2)}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:900;src:url(fonts/Byrd/Byrd-Black.woff2)}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._root_xdjsl_120{display:flex;justify-content:center;padding:4px 0!important;gap:4px}._root__item_xdjsl_126{position:relative;width:70px;height:40px}._root__img_xdjsl_131,._root_xdjsl_120 img{max-width:100%;height:100%}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:700;src:url(fonts/Byrd/Byrd-Bold.woff2)}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:900;src:url(fonts/Byrd/Byrd-Black.woff2)}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._root_esw59_120{display:flex;justify-content:center;padding:24px 0 4px!important}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:700;src:url(fonts/Byrd/Byrd-Bold.woff2)}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:900;src:url(fonts/Byrd/Byrd-Black.woff2)}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._root_1mamo_120{display:flex;width:100%;flex-wrap:wrap;gap:8px}._root_1mamo_120 label{flex:1}._root_1mamo_120 label p{justify-content:center;color:#201649!important;white-space:nowrap}@media (max-width: 360px){._root_1mamo_120 label{width:calc(50% - 4px);flex:unset}}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:700;src:url(fonts/Byrd/Byrd-Bold.woff2)}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:900;src:url(fonts/Byrd/Byrd-Black.woff2)}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._root_1ksq3_120{display:flex;flex-direction:column;align-items:center;gap:12px}._root__button_1ksq3_126{max-width:360px}._root__security_1ksq3_129{display:flex;align-items:flex-end;color:#635c80;gap:4px}._root__security_1ksq3_129 svg{width:18px;height:18px;flex-shrink:0}._root--stickyButton_1ksq3_140{position:fixed;z-index:1000;bottom:0;left:0;width:100%;padding:16px!important;background:#fff;box-shadow:0 6px 32px #20164933}@media screen and (min-width: 800px){._root--stickyButton_1ksq3_140{position:relative;z-index:1;box-shadow:none}}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:700;src:url(fonts/Byrd/Byrd-Bold.woff2)}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:900;src:url(fonts/Byrd/Byrd-Black.woff2)}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._root_1mfs1_120{max-width:360px;align-self:center;padding:4px!important;margin:4px 0!important}
1
+ @font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:700;src:url(fonts/Byrd/Byrd-Bold.woff2)}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:900;src:url(fonts/Byrd/Byrd-Black.woff2)}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._persuasionContent_bnv3o_120{display:flex;flex-direction:column;padding:24px 16px;gap:16px}._persuasionContent_bnv3o_120 h4,._persuasionContent_bnv3o_120 h3,._persuasionContent_bnv3o_120 h2{margin-bottom:12px;color:#201649}._persuasionContent--center_bnv3o_132{text-align:center}._persuasionContent--center_bnv3o_132 ._persuasionContentInner_bnv3o_135{max-width:450px}._persuasionContent--center_bnv3o_132 ul{max-width:287px;align-self:center}._persuasionContent--left_bnv3o_142{text-align:left}._persuasionContent--surfaceContainer_bnv3o_145{background-color:#f4f3f6}._persuasionContent--vanilla_bnv3o_148{background-color:#fff9e5}@media screen and (min-width: 690px){._persuasionContent_bnv3o_120{padding:32px 16px;gap:24px}}._persuasionContent_bnv3o_120 ._persuasionContentInner_bnv3o_135{display:flex;flex-direction:column;align-self:center;gap:16px}@media screen and (min-width: 690px){._persuasionContent_bnv3o_120 ._persuasionContentInner_bnv3o_135{gap:24px}}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:700;src:url(fonts/Byrd/Byrd-Bold.woff2)}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:900;src:url(fonts/Byrd/Byrd-Black.woff2)}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._persuationImage_1ge4j_121{display:flex;flex-direction:column;flex-wrap:wrap;align-items:center;justify-content:center;gap:24px}@media screen and (min-width: 690px){._persuationImage_1ge4j_121{flex-direction:row}}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:700;src:url(fonts/Byrd/Byrd-Bold.woff2)}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:900;src:url(fonts/Byrd/Byrd-Black.woff2)}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._persuasionList_1fwgd_120{display:flex;flex-direction:column;gap:12px}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:700;src:url(fonts/Byrd/Byrd-Bold.woff2)}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:900;src:url(fonts/Byrd/Byrd-Black.woff2)}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._persuasionListItem_17wna_120{display:flex;flex-direction:column;align-items:center;padding:4px 0;gap:16px;white-space:pre-line}._persuasionListItem__text_17wna_128{display:flex;max-width:300px;flex-direction:column;gap:8px}._persuasionListItem__ellipse_17wna_134{width:9px;height:9px;border-radius:999px;background-color:#7c5bff}._persuasionListItem--hasIcon_17wna_140{flex-direction:row;align-items:start;padding:4px 0;gap:16px;text-align:left}._persuasionListItem--hasIcon_17wna_140 ._persuasionListItem__text_17wna_128{max-width:unset;gap:8px}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:700;src:url(fonts/Byrd/Byrd-Bold.woff2)}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:900;src:url(fonts/Byrd/Byrd-Black.woff2)}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._persuasionText_8tw85_120{display:flex;flex-direction:column;white-space:pre-wrap}._persuasionText_8tw85_120 a,._persuasionText_8tw85_120 a:visited,._persuasionText_8tw85_120 a:active{color:inherit}._whitespace_8tw85_131{min-height:8px;margin-bottom:4px}._whitespace_8tw85_131:last-of-type{margin-bottom:0}._preserveWhitespace_8tw85_139{white-space:pre-line}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:700;src:url(fonts/Byrd/Byrd-Bold.woff2)}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:900;src:url(fonts/Byrd/Byrd-Black.woff2)}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._persuasionImageSet_u1ldm_120{--backdrop-color: transparent;--background-color: transparent;padding:24px 0 0}._persuasionImageSet__images_u1ldm_125{display:flex;justify-content:center;padding:0;background-image:linear-gradient(transparent 30%,var(--backdrop-color) 0%);gap:16px}@media screen and (min-width: 800px){._persuasionImageSet__images_u1ldm_125{padding:0 16px}}._persuasionImageSet__image_u1ldm_125{width:0;height:160px;flex-grow:1;-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center}._persuasionImageSet__text_u1ldm_144{display:flex;flex-direction:column;padding:24px 16px;background-color:var(--background-color);gap:16px;text-align:center}._persuasionImageSet--surface_u1ldm_152{--backdrop-color: #ffffff;--background-color: #ffffff}._persuasionImageSet--surfaceContainer_u1ldm_156{--backdrop-color: #f4f3f6;--background-color: #f4f3f6}._persuasionImageSet--surfaceDim_u1ldm_160{--backdrop-color: #e9e8ed;--background-color: #e9e8ed}._persuasionImageSet--vanilla_u1ldm_164{--backdrop-color: #fff9e5;--background-color: #fff9e5}._persuasionImageSet--primary_u1ldm_168{--backdrop-color: #cae85d;--background-color: #cae85d}@media screen and (min-width: 690px){._persuasionImageSet__body_u1ldm_173{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:16px;font-weight:500;letter-spacing:0;line-height:24px;text-decoration:none;text-indent:0px;text-transform:none}._persuasionImageSet__text_u1ldm_144{padding:32px 16px}}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:700;src:url(fonts/Byrd/Byrd-Bold.woff2)}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:900;src:url(fonts/Byrd/Byrd-Black.woff2)}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._root__body_a79gv_120{padding:0}._root__form_a79gv_123{display:flex;flex-direction:column;padding:16px;gap:12px}@media (max-width: 375px){._root__form_a79gv_123{padding:12px}}._root__form_a79gv_123 fieldset{padding:0;margin:0}._root__stickyButton_a79gv_138{margin-bottom:110px}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:700;src:url(fonts/Byrd/Byrd-Bold.woff2)}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:900;src:url(fonts/Byrd/Byrd-Black.woff2)}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._root_1x2jr_120{display:flex;justify-content:center}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:700;src:url(fonts/Byrd/Byrd-Bold.woff2)}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:900;src:url(fonts/Byrd/Byrd-Black.woff2)}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._root_sxwv4_120{display:flex;flex-direction:column;align-items:center;padding:8px 0!important}._root__button_sxwv4_126{color:#201649}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:700;src:url(fonts/Byrd/Byrd-Bold.woff2)}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:900;src:url(fonts/Byrd/Byrd-Black.woff2)}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._root_c1agt_120{display:flex;flex-direction:column;gap:16px}._root__blockHeader_c1agt_125{display:flex;justify-content:space-between;color:#635c80}._root__block_c1agt_125{display:flex;flex-direction:column;gap:8px}._root__block_c1agt_125 p{color:#635c80}._root__markdown_c1agt_138{white-space:break-spaces}._root__markdown_c1agt_138 p{color:#635c80}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:700;src:url(fonts/Byrd/Byrd-Bold.woff2)}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:900;src:url(fonts/Byrd/Byrd-Black.woff2)}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._headline_1x4kr_120{display:flex;flex-direction:column;align-items:center;padding:8px 0 12px!important;gap:8px}._headline_1x4kr_120 h1{color:#201649!important;font-style:24px;font-weight:900;text-align:center;text-transform:uppercase}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:700;src:url(fonts/Byrd/Byrd-Bold.woff2)}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:900;src:url(fonts/Byrd/Byrd-Black.woff2)}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._root_1o02i_120{position:relative;display:flex;overflow:hidden;height:auto;padding-bottom:25%}._root__img_1o02i_127,._root_1o02i_120 img{position:absolute;overflow:unset;width:100%;max-height:100%;top:0;right:0;bottom:0;left:0;-o-object-fit:cover;object-fit:cover;-o-object-position:top;object-position:top;overflow-clip-margin:unset}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:700;src:url(fonts/Byrd/Byrd-Bold.woff2)}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:900;src:url(fonts/Byrd/Byrd-Black.woff2)}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._root_kozox_120{display:flex;flex-direction:column;align-items:center;justify-content:center;padding-top:4px!important;gap:4px}._root__checkbox_kozox_128{max-width:360px;padding:12px 16px;border:1px solid #a6a2b6;border-radius:16px}._root__text_kozox_134{max-width:360px;padding-top:24px;color:#635c80;text-align:center}._root__error_kozox_140{display:block;width:100%;max-width:360px;padding:0 8px;color:#cc339f!important}._root--error_kozox_147{background:#fde6f7!important}._root__link_kozox_150{display:inline;height:unset;min-height:unset}._root__link_kozox_150 span{font-weight:600;text-decoration:underline}._root--stickyButton_kozox_159{order:1}._root--stickyButton_kozox_159 ._root__text_kozox_134{padding-top:0}@media screen and (min-width: 800px){._root--stickyButton_kozox_159{order:unset}._root--stickyButton_kozox_159 ._root__text_kozox_134{padding-top:24px}}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:700;src:url(fonts/Byrd/Byrd-Bold.woff2)}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:900;src:url(fonts/Byrd/Byrd-Black.woff2)}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._root_xdjsl_120{display:flex;justify-content:center;padding:4px 0!important;gap:4px}._root__item_xdjsl_126{position:relative;width:70px;height:40px}._root__img_xdjsl_131,._root_xdjsl_120 img{max-width:100%;height:100%}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:700;src:url(fonts/Byrd/Byrd-Bold.woff2)}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:900;src:url(fonts/Byrd/Byrd-Black.woff2)}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._root_esw59_120{display:flex;justify-content:center;padding:24px 0 4px!important}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:700;src:url(fonts/Byrd/Byrd-Bold.woff2)}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:900;src:url(fonts/Byrd/Byrd-Black.woff2)}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._root_1mamo_120{display:flex;width:100%;flex-wrap:wrap;gap:8px}._root_1mamo_120 label{flex:1}._root_1mamo_120 label p{justify-content:center;color:#201649!important;white-space:nowrap}@media (max-width: 360px){._root_1mamo_120 label{width:calc(50% - 4px);flex:unset}}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:700;src:url(fonts/Byrd/Byrd-Bold.woff2)}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:900;src:url(fonts/Byrd/Byrd-Black.woff2)}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._root_1ksq3_120{display:flex;flex-direction:column;align-items:center;gap:12px}._root__button_1ksq3_126{max-width:360px}._root__security_1ksq3_129{display:flex;align-items:flex-end;color:#635c80;gap:4px}._root__security_1ksq3_129 svg{width:18px;height:18px;flex-shrink:0}._root--stickyButton_1ksq3_140{position:fixed;z-index:1000;bottom:0;left:0;width:100%;padding:16px!important;background:#fff;box-shadow:0 6px 32px #20164933}@media screen and (min-width: 800px){._root--stickyButton_1ksq3_140{position:relative;z-index:1;box-shadow:none}}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:700;src:url(fonts/Byrd/Byrd-Bold.woff2)}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:900;src:url(fonts/Byrd/Byrd-Black.woff2)}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._root_1mfs1_120{max-width:360px;align-self:center;padding:4px!important;margin:4px 0!important}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:700;src:url(fonts/Byrd/Byrd-Bold.woff2)}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:900;src:url(fonts/Byrd/Byrd-Black.woff2)}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._root_yd0nb_120{display:flex;flex-direction:column;align-items:center;padding:12px;gap:12px}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:700;src:url(fonts/Byrd/Byrd-Bold.woff2)}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:900;src:url(fonts/Byrd/Byrd-Black.woff2)}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._root_e2sao_120{display:flex;flex-direction:column;padding:12px;gap:12px}._metadata_e2sao_127{display:flex;justify-content:space-between}._markdown_e2sao_132 li{position:relative;white-space:wrap}._markdown_e2sao_132 li strong:first-of-type{position:absolute;left:-40px}._markdown_e2sao_132 ul{padding-left:40px;list-style-type:none}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:700;src:url(fonts/Byrd/Byrd-Bold.woff2)}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:900;src:url(fonts/Byrd/Byrd-Black.woff2)}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._root_nd1ee_120{text-wrap:wrap}._staticHtml_nd1ee_124{padding:12px;text-wrap:wrap}._staticHtml_nd1ee_124 li{margin-left:1em;word-break:break-word}._staticHtml_nd1ee_124 table{display:block;overflow:auto}._staticHtml_nd1ee_124 a{word-break:break-word}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:700;src:url(fonts/Byrd/Byrd-Bold.woff2)}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:900;src:url(fonts/Byrd/Byrd-Black.woff2)}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._root_1w6ux_120{display:flex;flex-direction:column;padding:12px;gap:12px}._button_1w6ux_127,._textButton_1w6ux_128{width:auto;align-self:flex-start}._success_1w6ux_133{color:#738c00}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:700;src:url(fonts/Byrd/Byrd-Bold.woff2)}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:900;src:url(fonts/Byrd/Byrd-Black.woff2)}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._root_6f9m3_120{display:flex;flex-direction:column;gap:12px}._root_6f9m3_120 label{padding:0}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:700;src:url(fonts/Byrd/Byrd-Bold.woff2)}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:900;src:url(fonts/Byrd/Byrd-Black.woff2)}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._root_1h8ey_120{padding:12px}._markdown_1h8ey_124 ul{padding-left:16px;list-style-type:disc}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:700;src:url(fonts/Byrd/Byrd-Bold.woff2)}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:900;src:url(fonts/Byrd/Byrd-Black.woff2)}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._root_iby5v_120{padding:12px}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:700;src:url(fonts/Byrd/Byrd-Bold.woff2)}@font-face{font-display:swap;font-family:Byrd;font-style:normal;font-weight:900;src:url(fonts/Byrd/Byrd-Black.woff2)}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._root_13vwj_120{min-height:calc(100vh - 56px)}@media screen and (min-width: 800px){._root_13vwj_120{min-height:unset}}
@@ -1,11 +0,0 @@
1
- import { Entry } from 'contentful';
2
- import { TypeBlockSponsorCardSkeleton } from '../../../../api/src/core/contentful/core/types';
3
- import { SubmitValues } from './SponsorCardForm.types';
4
- export interface ContentfulBlockProps {
5
- block: Entry<TypeBlockSponsorCardSkeleton, 'WITHOUT_UNRESOLVABLE_LINKS', string>;
6
- isDesktop: boolean;
7
- onError: () => void;
8
- onSubmit: (values: SubmitValues) => void;
9
- }
10
- declare const ContentfulSponsorCardForm: ({ block, isDesktop, onError, onSubmit, }: ContentfulBlockProps) => import("react/jsx-runtime").JSX.Element;
11
- export default ContentfulSponsorCardForm;