@goodhood-web/ui 1.6.0-development.4 → 1.6.0-development.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.js CHANGED
@@ -92,4 +92,4 @@ ${e}</tr>
92
92
  `}tablecell(e,n){const r=n.header?"th":"td";return(n.align?`<${r} align="${n.align}">`:`<${r}>`)+e+`</${r}>
93
93
  `}strong(e){return`<strong>${e}</strong>`}em(e){return`<em>${e}</em>`}codespan(e){return`<code>${e}</code>`}br(){return"<br>"}del(e){return`<del>${e}</del>`}link(e,n,r){const o=Mr(e);if(o===null)return r;e=o;let s='<a href="'+e+'"';return n&&(s+=' title="'+n+'"'),s+=">"+r+"</a>",s}image(e,n,r){const o=Mr(e);if(o===null)return r;e=o;let s=`<img src="${e}" alt="${r}"`;return n&&(s+=` title="${n}"`),s+=">",s}text(e){return e}}class Nn{strong(e){return e}em(e){return e}codespan(e){return e}del(e){return e}html(e){return e}text(e){return e}link(e,n,r){return""+r}image(e,n,r){return""+r}br(){return""}}class _e{constructor(e){fe(this,"options");fe(this,"renderer");fe(this,"textRenderer");this.options=e||We,this.options.renderer=this.options.renderer||new It,this.renderer=this.options.renderer,this.renderer.options=this.options,this.textRenderer=new Nn}static parse(e,n){return new _e(n).parse(e)}static parseInline(e,n){return new _e(n).parseInline(e)}parse(e,n=!0){let r="";for(let o=0;o<e.length;o++){const s=e[o];if(this.options.extensions&&this.options.extensions.renderers&&this.options.extensions.renderers[s.type]){const a=s,l=this.options.extensions.renderers[a.type].call({parser:this},a);if(l!==!1||!["space","hr","heading","code","table","blockquote","list","html","paragraph","text"].includes(a.type)){r+=l||"";continue}}switch(s.type){case"space":continue;case"hr":{r+=this.renderer.hr();continue}case"heading":{const a=s;r+=this.renderer.heading(this.parseInline(a.tokens),a.depth,Ku(this.parseInline(a.tokens,this.textRenderer)));continue}case"code":{const a=s;r+=this.renderer.code(a.text,a.lang,!!a.escaped);continue}case"table":{const a=s;let l="",c="";for(let f=0;f<a.header.length;f++)c+=this.renderer.tablecell(this.parseInline(a.header[f].tokens),{header:!0,align:a.align[f]});l+=this.renderer.tablerow(c);let d="";for(let f=0;f<a.rows.length;f++){const h=a.rows[f];c="";for(let m=0;m<h.length;m++)c+=this.renderer.tablecell(this.parseInline(h[m].tokens),{header:!1,align:a.align[m]});d+=this.renderer.tablerow(c)}r+=this.renderer.table(l,d);continue}case"blockquote":{const a=s,l=this.parse(a.tokens);r+=this.renderer.blockquote(l);continue}case"list":{const a=s,l=a.ordered,c=a.start,d=a.loose;let f="";for(let h=0;h<a.items.length;h++){const m=a.items[h],g=m.checked,b=m.task;let k="";if(m.task){const $=this.renderer.checkbox(!!g);d?m.tokens.length>0&&m.tokens[0].type==="paragraph"?(m.tokens[0].text=$+" "+m.tokens[0].text,m.tokens[0].tokens&&m.tokens[0].tokens.length>0&&m.tokens[0].tokens[0].type==="text"&&(m.tokens[0].tokens[0].text=$+" "+m.tokens[0].tokens[0].text)):m.tokens.unshift({type:"text",text:$+" "}):k+=$+" "}k+=this.parse(m.tokens,d),f+=this.renderer.listitem(k,b,!!g)}r+=this.renderer.list(f,l,c);continue}case"html":{const a=s;r+=this.renderer.html(a.text,a.block);continue}case"paragraph":{const a=s;r+=this.renderer.paragraph(this.parseInline(a.tokens));continue}case"text":{let a=s,l=a.tokens?this.parseInline(a.tokens):a.text;for(;o+1<e.length&&e[o+1].type==="text";)a=e[++o],l+=`
94
94
  `+(a.tokens?this.parseInline(a.tokens):a.text);r+=n?this.renderer.paragraph(l):l;continue}default:{const a='Token with "'+s.type+'" type was not found.';if(this.options.silent)return console.error(a),"";throw new Error(a)}}}return r}parseInline(e,n){n=n||this.renderer;let r="";for(let o=0;o<e.length;o++){const s=e[o];if(this.options.extensions&&this.options.extensions.renderers&&this.options.extensions.renderers[s.type]){const a=this.options.extensions.renderers[s.type].call({parser:this},s);if(a!==!1||!["escape","html","link","image","strong","em","codespan","br","del","text"].includes(s.type)){r+=a||"";continue}}switch(s.type){case"escape":{const a=s;r+=n.text(a.text);break}case"html":{const a=s;r+=n.html(a.text);break}case"link":{const a=s;r+=n.link(a.href,a.title,this.parseInline(a.tokens,n));break}case"image":{const a=s;r+=n.image(a.href,a.title,a.text);break}case"strong":{const a=s;r+=n.strong(this.parseInline(a.tokens,n));break}case"em":{const a=s;r+=n.em(this.parseInline(a.tokens,n));break}case"codespan":{const a=s;r+=n.codespan(a.text);break}case"br":{r+=n.br();break}case"del":{const a=s;r+=n.del(this.parseInline(a.tokens,n));break}case"text":{const a=s;r+=n.text(a.text);break}default:{const a='Token with "'+s.type+'" type was not found.';if(this.options.silent)return console.error(a),"";throw new Error(a)}}}return r}}class at{constructor(e){fe(this,"options");this.options=e||We}preprocess(e){return e}postprocess(e){return e}processAllTokens(e){return e}}fe(at,"passThroughHooks",new Set(["preprocess","postprocess","processAllTokens"]));var ut,kn,Nt,Ao;class R2{constructor(...e){Gt(this,ut);Gt(this,Nt);fe(this,"defaults",Pn());fe(this,"options",this.setOptions);fe(this,"parse",wt(this,ut,kn).call(this,Ee.lex,_e.parse));fe(this,"parseInline",wt(this,ut,kn).call(this,Ee.lexInline,_e.parseInline));fe(this,"Parser",_e);fe(this,"Renderer",It);fe(this,"TextRenderer",Nn);fe(this,"Lexer",Ee);fe(this,"Tokenizer",Ft);fe(this,"Hooks",at);this.use(...e)}walkTokens(e,n){var o,s;let r=[];for(const a of e)switch(r=r.concat(n.call(this,a)),a.type){case"table":{const l=a;for(const c of l.header)r=r.concat(this.walkTokens(c.tokens,n));for(const c of l.rows)for(const d of c)r=r.concat(this.walkTokens(d.tokens,n));break}case"list":{const l=a;r=r.concat(this.walkTokens(l.items,n));break}default:{const l=a;(s=(o=this.defaults.extensions)==null?void 0:o.childTokens)!=null&&s[l.type]?this.defaults.extensions.childTokens[l.type].forEach(c=>{const d=l[c].flat(1/0);r=r.concat(this.walkTokens(d,n))}):l.tokens&&(r=r.concat(this.walkTokens(l.tokens,n)))}}return r}use(...e){const n=this.defaults.extensions||{renderers:{},childTokens:{}};return e.forEach(r=>{const o={...r};if(o.async=this.defaults.async||o.async||!1,r.extensions&&(r.extensions.forEach(s=>{if(!s.name)throw new Error("extension name required");if("renderer"in s){const a=n.renderers[s.name];a?n.renderers[s.name]=function(...l){let c=s.renderer.apply(this,l);return c===!1&&(c=a.apply(this,l)),c}:n.renderers[s.name]=s.renderer}if("tokenizer"in s){if(!s.level||s.level!=="block"&&s.level!=="inline")throw new Error("extension level must be 'block' or 'inline'");const a=n[s.level];a?a.unshift(s.tokenizer):n[s.level]=[s.tokenizer],s.start&&(s.level==="block"?n.startBlock?n.startBlock.push(s.start):n.startBlock=[s.start]:s.level==="inline"&&(n.startInline?n.startInline.push(s.start):n.startInline=[s.start]))}"childTokens"in s&&s.childTokens&&(n.childTokens[s.name]=s.childTokens)}),o.extensions=n),r.renderer){const s=this.defaults.renderer||new It(this.defaults);for(const a in r.renderer){if(!(a in s))throw new Error(`renderer '${a}' does not exist`);if(a==="options")continue;const l=a,c=r.renderer[l],d=s[l];s[l]=(...f)=>{let h=c.apply(s,f);return h===!1&&(h=d.apply(s,f)),h||""}}o.renderer=s}if(r.tokenizer){const s=this.defaults.tokenizer||new Ft(this.defaults);for(const a in r.tokenizer){if(!(a in s))throw new Error(`tokenizer '${a}' does not exist`);if(["options","rules","lexer"].includes(a))continue;const l=a,c=r.tokenizer[l],d=s[l];s[l]=(...f)=>{let h=c.apply(s,f);return h===!1&&(h=d.apply(s,f)),h}}o.tokenizer=s}if(r.hooks){const s=this.defaults.hooks||new at;for(const a in r.hooks){if(!(a in s))throw new Error(`hook '${a}' does not exist`);if(a==="options")continue;const l=a,c=r.hooks[l],d=s[l];at.passThroughHooks.has(a)?s[l]=f=>{if(this.defaults.async)return Promise.resolve(c.call(s,f)).then(m=>d.call(s,m));const h=c.call(s,f);return d.call(s,h)}:s[l]=(...f)=>{let h=c.apply(s,f);return h===!1&&(h=d.apply(s,f)),h}}o.hooks=s}if(r.walkTokens){const s=this.defaults.walkTokens,a=r.walkTokens;o.walkTokens=function(l){let c=[];return c.push(a.call(this,l)),s&&(c=c.concat(s.call(this,l))),c}}this.defaults={...this.defaults,...o}}),this}setOptions(e){return this.defaults={...this.defaults,...e},this}lexer(e,n){return Ee.lex(e,n??this.defaults)}parser(e,n){return _e.parse(e,n??this.defaults)}}ut=new WeakSet,kn=function(e,n){return(r,o)=>{const s={...o},a={...this.defaults,...s};this.defaults.async===!0&&s.async===!1&&(a.silent||console.warn("marked(): The async option was set to true by an extension. The async: false option sent to parse will be ignored."),a.async=!0);const l=wt(this,Nt,Ao).call(this,!!a.silent,!!a.async);if(typeof r>"u"||r===null)return l(new Error("marked(): input parameter is undefined or null"));if(typeof r!="string")return l(new Error("marked(): input parameter is of type "+Object.prototype.toString.call(r)+", string expected"));if(a.hooks&&(a.hooks.options=a),a.async)return Promise.resolve(a.hooks?a.hooks.preprocess(r):r).then(c=>e(c,a)).then(c=>a.hooks?a.hooks.processAllTokens(c):c).then(c=>a.walkTokens?Promise.all(this.walkTokens(c,a.walkTokens)).then(()=>c):c).then(c=>n(c,a)).then(c=>a.hooks?a.hooks.postprocess(c):c).catch(l);try{a.hooks&&(r=a.hooks.preprocess(r));let c=e(r,a);a.hooks&&(c=a.hooks.processAllTokens(c)),a.walkTokens&&this.walkTokens(c,a.walkTokens);let d=n(c,a);return a.hooks&&(d=a.hooks.postprocess(d)),d}catch(c){return l(c)}}},Nt=new WeakSet,Ao=function(e,n){return r=>{if(r.message+=`
95
- Please report this to https://github.com/markedjs/marked.`,e){const o="<p>An error occurred:</p><pre>"+we(r.message+"",!0)+"</pre>";return n?Promise.resolve(o):o}if(n)return Promise.reject(r);throw r}};const Be=new R2;function ie(t,e){return Be.parse(t,e)}ie.options=ie.setOptions=function(t){return Be.setOptions(t),ie.defaults=Be.defaults,Eo(ie.defaults),ie};ie.getDefaults=Pn;ie.defaults=We;ie.use=function(...t){return Be.use(...t),ie.defaults=Be.defaults,Eo(ie.defaults),ie};ie.walkTokens=function(t,e){return Be.walkTokens(t,e)};ie.parseInline=Be.parseInline;ie.Parser=_e;ie.parser=_e.parse;ie.Renderer=It;ie.TextRenderer=Nn;ie.Lexer=Ee;ie.lexer=Ee.lex;ie.Tokenizer=Ft;ie.Hooks=at;ie.parse=ie;ie.options;ie.setOptions;ie.use;ie.walkTokens;ie.parseInline;_e.parse;Ee.lex;function C2({text:t}){return R.jsx("span",{dangerouslySetInnerHTML:{__html:ie.parse(t)}})}const S2="_menuItem_14dl4_106",T2="_highlightFrame_14dl4_118",M2="_rightIcon_14dl4_126",$2="_leftIcon_14dl4_134",nt={menuItem:S2,highlightFrame:T2,rightIcon:M2,"menuItem--selected":"_menuItem--selected_14dl4_131",leftIcon:$2},P2=({isSelected:t,labelPillText:e,leftIcon:n,onClick:r,rightIcon:o,role:s,text:a})=>R.jsx(wo,{role:s,onClick:r,className:re(nt.menuItem,{[nt["menuItem--selected"]]:t}),children:R.jsxs("span",{className:re(nt.highlightFrame),children:[R.jsx("span",{className:nt.leftIcon,children:n}),R.jsx(be,{type:t?"h5":"body-large",as:"span",children:a}),e&&R.jsx(xo,{label:e,size:"medium"}),o&&R.jsx("span",{className:nt.rightIcon,children:o})]})}),L2="_bubbleContent_1mlh3_106",A2="_bubble_1mlh3_106",un={bubbleContent:L2,bubble:A2,"bubble--empty":"_bubble--empty_1mlh3_140"},F2=9,yn=t=>{const{ariaLabel:e,children:n,value:r}=t,o=r===void 0,s=o?void 0:Math.max(0,r).toString(),a=re({[un["bubble--empty"]]:o,[un.bubble]:!0});return R.jsx(Yr,{badgeContent:s,className:un.bubbleContent,max:F2,slotProps:{badge:{className:a}},"aria-label":e,role:"status",children:n})},O2="_textButton_17ryd_106",fn={textButton:O2,"textButton--green":"_textButton--green_17ryd_114","textButton--blue":"_textButton--blue_17ryd_120","textButton--text":"_textButton--text_17ryd_126"},I2={large:"h5",medium:"body-semibold",small:"detail-bold"};function Fo({color:t,disabled:e,leftIcon:n,rightIcon:r,size:o,text:s,...a}){const l=Ke(n,[Le,yn]),c=Ke(r,[Le,yn]);return R.jsxs(dt,{...a,className:re(fn.textButton,fn[`textButton--${t}`]),disabled:e,children:[l,R.jsx(be,{type:I2[o],as:"span",className:re(fn.textButtonTypography),children:s}),c]})}const N2="_backdrop_4nnwx_106",V2={backdrop:N2},Oo=p.forwardRef((t,e)=>R.jsx("div",{ref:e,...t,className:V2.backdrop}));Oo.displayName="Backdrop";const j2="_modal_wns73_106",B2="_modalWrapper_wns73_114",W2="_modalHeader_wns73_125",H2="_modalFooter_wns73_147",xt={modal:j2,modalWrapper:B2,modalHeader:W2,modalFooter:H2},D2=({ariaLabel:t,ariaLabelledBy:e,closeButtonText:n="Abbrechen",modalBody:r,modalHeader:o,onClose:s,open:a})=>R.jsx(go,{"aria-label":t,"aria-labelledby":e,open:a,onClose:s,slots:{backdrop:Oo},className:xt.modal,children:R.jsxs("div",{className:xt.modalWrapper,children:[R.jsx("div",{className:xt.modalHeader,children:o}),r,R.jsx("div",{className:xt.modalFooter,children:R.jsx(Fo,{onClick:s,color:"blue",size:"large",text:n})})]})}),Z2="_navBar_pjatm_106",z2={navBar:Z2},q2=({children:t,onChange:e,value:n})=>{const[r,o]=p.useState(n||""),s=a=>{e(a),o(a)};return R.jsx("ul",{className:z2.navBar,children:p.Children.map(t,a=>p.cloneElement(a,{active:a.props.id.toLowerCase()===r.toLowerCase(),onChange:s}))})},U2="_listItem_3we3l_106",Y2="_navItem_3we3l_106",K2="_selector_3we3l_120",Q2="_label_3we3l_141",rt={listItem:U2,navItem:Y2,selector:K2,"navItem--active":"_navItem--active_3we3l_128",label:Q2},X2=({active:t,ariaLabel:e,icon:n,id:r,label:o,onChange:s})=>{const a=()=>{s&&s(r)};return R.jsx("li",{className:rt.listItem,children:R.jsxs(dt,{className:re(rt.navItem,{[rt["navItem--active"]]:t}),onClick:a,"aria-label":e,children:[R.jsx("div",{className:rt.selector}),n,o&&R.jsx(be,{className:rt.label,type:"detail-medium",as:"span",children:o})]})})},G2="_wrapper_s4007_106",Et={wrapper:G2,"wrapper--large":"_wrapper--large_s4007_117","wrapper--small":"_wrapper--small_s4007_120","wrapper--iconWrapper":"_wrapper--iconWrapper_s4007_124"},J2=({className:t,icon:e,size:n})=>{const r=Ke(e,[Le]);return R.jsx("div",{className:re(Et.wrapper,t,{[Et[`wrapper--${n}`]]:n}),"data-testid":"placeholder-thumbnail",children:R.jsx("div",{className:re(Et.wrapper,{[Et["wrapper--iconWrapper"]]:n==="large"}),children:r})})},ef="_base_1o08v_106",tf={base:ef};var Io=(t=>(t[t.lg=16]="lg",t[t.md=12]="md",t[t.sm=8]="sm",t[t.xl=24]="xl",t))(Io||{});const nf=({anchor:t,children:e,id:n,offset:r="sm",open:o,placement:s})=>R.jsx(po,{className:tf.base,id:n,open:o,anchor:t,offset:Io[r],placement:s,children:e}),rf="_radio_1xmmq_106",Ar={radio:rf,"radio--small":"_radio--small_1xmmq_124"};function of({checked:t,disabled:e,id:n,label:r,onChange:o,size:s,value:a}){const l=Ar[`radio--${s}`];return R.jsxs("span",{className:Ar.radio,children:[R.jsx("input",{checked:t,onChange:o,"aria-disabled":e,"aria-label":r,className:l,value:a,disabled:e,type:"radio",role:"radio",id:n}),R.jsx("label",{htmlFor:n,className:l,children:r})]})}const sf="_radiobuttoncluster_mfkyd_106",af={radiobuttoncluster:sf};function lf(t){const{children:e,disabled:n,onChange:r,value:o}=t;function s(l){r(l)}const a=p.Children.map(e,l=>p.cloneElement(l,{checked:o===l.props.value,onChange:s}));return R.jsx(ko,{disabled:n,classname:af.radiobuttoncluster,children:a})}const cf="_wrapper_5atbg_106",uf="_textInputContainer_5atbg_109",ff="_textInput_5atbg_109",Oe={wrapper:cf,textInputContainer:uf,textInput:ff,"textInput--medium":"_textInput--medium_5atbg_149","textInput--small":"_textInput--small_5atbg_169","textInput--dark":"_textInput--dark_5atbg_188","textInput--light":"_textInput--light_5atbg_203","textInput--error":"_textInput--error_5atbg_221","textInputContainer--errorMessage":"_textInputContainer--errorMessage_5atbg_239"},df=({colorScheme:t,errorMessage:e,id:n,label:r,name:o,ref:s,size:a,...l})=>{const{getInputProps:c,getRootProps:d}=ia({inputRef:s,...l}),f=c(),{disabled:h}=f,m=!!e,g=Oe[`textInput--${t}`],b=Oe[`textInput--${a}`];return R.jsxs("div",{className:Oe.wrapper,children:[R.jsxs("div",{className:Oe.textInputContainer,...d(),children:[R.jsx("input",{...f,id:n,type:"text",name:o,"aria-disabled":h,"aria-label":r,className:re(Oe.textInput,b,g,{[Oe["textInput--error"]]:m}),placeholder:""}),R.jsx("label",{htmlFor:n,children:R.jsx(be,{type:a==="medium"?"body-large":"body-regular",children:r})})]}),m&&R.jsx(be,{className:Oe["textInputContainer--errorMessage"],type:"detail-bold",children:e})]})},hf="_root_tupki_113",_t={root:hf,"root--24":"_root--24_tupki_120","root--28":"_root--28_tupki_124","root--32":"_root--32_tupki_128","root--40":"_root--40_tupki_132","root--48":"_root--48_tupki_136","root--56":"_root--56_tupki_140","root--64":"_root--64_tupki_144","root--80":"_root--80_tupki_148","root--120":"_root--120_tupki_152","root--280":"_root--280_tupki_156","root--square":"_root--square_tupki_160","root--circular":"_root--circular_tupki_172","root--isPlaceholder":"_root--isPlaceholder_tupki_175"},pf=({alt:t,isPlaceholder:e,shape:n,size:r,src:o})=>{const s=_t["root--isPlaceholder"];return R.jsx("div",{className:re(_t.root,_t[`root--${r}`],_t[`root--${n}`],{[s]:e}),children:o&&R.jsx(yo,{src:o,alt:t})})},mf="_slider_v0nwj_112",gf="_focusVisible_v0nwj_134",dn={switch:"_switch_v0nwj_106",slider:mf,focusVisible:gf},No=t=>{const{checked:e,disabled:n,focusVisible:r,getInputProps:o}=ai(t),{className:s,id:a}=t;return R.jsxs("span",{className:re(dn.switch,s),children:[R.jsx("input",{...o(),type:"checkbox","aria-checked":e,"aria-disabled":n,role:"switch",id:a,"data-testid":"toggle-switch"}),R.jsx("span",{className:re(dn.slider,{[dn.focusVisible]:r})})]})},wf="_toggleInput_o6ptp_106",vf="_textLabel_o6ptp_119",qe={toggleInput:wf,textLabel:vf,switch:"_switch_o6ptp_122","toggleInput--checked":"_toggleInput--checked_o6ptp_125","toggleInput--disabled":"_toggleInput--disabled_o6ptp_128","toggleInput--withBorder":"_toggleInput--withBorder_o6ptp_131"},bf=({checked:t,defaultChecked:e,disabled:n,icon:r,label:o,onChange:s,withBorder:a})=>R.jsxs("label",{className:re(qe.toggleInput,{[qe["toggleInput--withBorder"]]:a,[qe["toggleInput--checked"]]:t,[qe["toggleInput--disabled"]]:n}),children:[r&&R.jsx(Le,{name:r,size:"32"}),R.jsx(be,{type:"body-large",className:qe.textLabel,children:o}),R.jsx(No,{onChange:s,disabled:n,checked:t,defaultChecked:e,className:qe.switch})]});exports.Accordion=fs;exports.AccordionItem=ws;exports.BaseButton=wo;exports.Button=dt;exports.ButtonPrimary=ki;exports.Card=Si;exports.CardBody=vo;exports.CardHeader=bo;exports.Divider=$i;exports.Fieldset=ko;exports.Form=Ai;exports.Icon=Le;exports.IconButton=vn;exports.Image=yo;exports.LabelPill=xo;exports.Legend=Wu;exports.Loader=Zu;exports.Markdown=C2;exports.MenuItem=P2;exports.Modal=D2;exports.NavBar=q2;exports.NavItem=X2;exports.NotificationBubble=yn;exports.PlaceholderThumbnail=J2;exports.Popup=nf;exports.RadioButton=of;exports.RadioButtonCluster=lf;exports.TextButton=Fo;exports.TextInput=df;exports.Thumbnail=pf;exports.Toggle=No;exports.ToggleInput=bf;exports.Typography=be;
95
+ Please report this to https://github.com/markedjs/marked.`,e){const o="<p>An error occurred:</p><pre>"+we(r.message+"",!0)+"</pre>";return n?Promise.resolve(o):o}if(n)return Promise.reject(r);throw r}};const Be=new R2;function ie(t,e){return Be.parse(t,e)}ie.options=ie.setOptions=function(t){return Be.setOptions(t),ie.defaults=Be.defaults,Eo(ie.defaults),ie};ie.getDefaults=Pn;ie.defaults=We;ie.use=function(...t){return Be.use(...t),ie.defaults=Be.defaults,Eo(ie.defaults),ie};ie.walkTokens=function(t,e){return Be.walkTokens(t,e)};ie.parseInline=Be.parseInline;ie.Parser=_e;ie.parser=_e.parse;ie.Renderer=It;ie.TextRenderer=Nn;ie.Lexer=Ee;ie.lexer=Ee.lex;ie.Tokenizer=Ft;ie.Hooks=at;ie.parse=ie;ie.options;ie.setOptions;ie.use;ie.walkTokens;ie.parseInline;_e.parse;Ee.lex;function C2({text:t}){return R.jsx("span",{dangerouslySetInnerHTML:{__html:ie.parse(t)}})}const S2="_menuItem_14dl4_106",T2="_highlightFrame_14dl4_118",M2="_rightIcon_14dl4_126",$2="_leftIcon_14dl4_134",nt={menuItem:S2,highlightFrame:T2,rightIcon:M2,"menuItem--selected":"_menuItem--selected_14dl4_131",leftIcon:$2},P2=({isSelected:t,labelPillText:e,leftIcon:n,onClick:r,rightIcon:o,role:s,text:a})=>R.jsx(wo,{role:s,onClick:r,className:re(nt.menuItem,{[nt["menuItem--selected"]]:t}),children:R.jsxs("span",{className:re(nt.highlightFrame),children:[R.jsx("span",{className:nt.leftIcon,children:n}),R.jsx(be,{type:t?"h5":"body-large",as:"span",children:a}),e&&R.jsx(xo,{label:e,size:"medium"}),o&&R.jsx("span",{className:nt.rightIcon,children:o})]})}),L2="_bubbleContent_1mlh3_106",A2="_bubble_1mlh3_106",un={bubbleContent:L2,bubble:A2,"bubble--empty":"_bubble--empty_1mlh3_140"},F2=9,yn=t=>{const{ariaLabel:e,children:n,value:r}=t,o=r===void 0,s=o?void 0:Math.max(0,r).toString(),a=re({[un["bubble--empty"]]:o,[un.bubble]:!0});return R.jsx(Yr,{badgeContent:s,className:un.bubbleContent,max:F2,slotProps:{badge:{className:a}},"aria-label":e,role:"status",children:n})},O2="_textButton_17ryd_106",fn={textButton:O2,"textButton--green":"_textButton--green_17ryd_114","textButton--blue":"_textButton--blue_17ryd_120","textButton--text":"_textButton--text_17ryd_126"},I2={large:"h5",medium:"body-semibold",small:"detail-bold"};function Fo({color:t,disabled:e,leftIcon:n,rightIcon:r,size:o,text:s,...a}){const l=Ke(n,[Le,yn]),c=Ke(r,[Le,yn]);return R.jsxs(dt,{...a,className:re(fn.textButton,fn[`textButton--${t}`]),disabled:e,children:[l,R.jsx(be,{type:I2[o],as:"span",className:re(fn.textButtonTypography),children:s}),c]})}const N2="_backdrop_4nnwx_106",V2={backdrop:N2},Oo=p.forwardRef((t,e)=>R.jsx("div",{ref:e,...t,className:V2.backdrop}));Oo.displayName="Backdrop";const j2="_modal_6agvp_106",B2="_modalWrapper_6agvp_114",W2="_modalHeader_6agvp_125",H2="_modalFooter_6agvp_147",xt={modal:j2,modalWrapper:B2,modalHeader:W2,modalFooter:H2},D2=({ariaLabel:t,ariaLabelledBy:e,closeButtonText:n="Abbrechen",modalBody:r,modalHeader:o,onClose:s,open:a})=>R.jsx(go,{"aria-label":t,"aria-labelledby":e,open:a,onClose:s,slots:{backdrop:Oo},className:xt.modal,children:R.jsxs("div",{className:xt.modalWrapper,children:[R.jsx("div",{className:xt.modalHeader,children:o}),r,R.jsx("div",{className:xt.modalFooter,children:R.jsx(Fo,{onClick:s,color:"blue",size:"large",text:n})})]})}),Z2="_navBar_pjatm_106",z2={navBar:Z2},q2=({children:t,onChange:e,value:n})=>{const[r,o]=p.useState(n||""),s=a=>{e(a),o(a)};return R.jsx("ul",{className:z2.navBar,children:p.Children.map(t,a=>p.cloneElement(a,{active:a.props.id.toLowerCase()===r.toLowerCase(),onChange:s}))})},U2="_listItem_3we3l_106",Y2="_navItem_3we3l_106",K2="_selector_3we3l_120",Q2="_label_3we3l_141",rt={listItem:U2,navItem:Y2,selector:K2,"navItem--active":"_navItem--active_3we3l_128",label:Q2},X2=({active:t,ariaLabel:e,icon:n,id:r,label:o,onChange:s})=>{const a=()=>{s&&s(r)};return R.jsx("li",{className:rt.listItem,children:R.jsxs(dt,{className:re(rt.navItem,{[rt["navItem--active"]]:t}),onClick:a,"aria-label":e,children:[R.jsx("div",{className:rt.selector}),n,o&&R.jsx(be,{className:rt.label,type:"detail-medium",as:"span",children:o})]})})},G2="_wrapper_s4007_106",Et={wrapper:G2,"wrapper--large":"_wrapper--large_s4007_117","wrapper--small":"_wrapper--small_s4007_120","wrapper--iconWrapper":"_wrapper--iconWrapper_s4007_124"},J2=({className:t,icon:e,size:n})=>{const r=Ke(e,[Le]);return R.jsx("div",{className:re(Et.wrapper,t,{[Et[`wrapper--${n}`]]:n}),"data-testid":"placeholder-thumbnail",children:R.jsx("div",{className:re(Et.wrapper,{[Et["wrapper--iconWrapper"]]:n==="large"}),children:r})})},ef="_base_1o08v_106",tf={base:ef};var Io=(t=>(t[t.lg=16]="lg",t[t.md=12]="md",t[t.sm=8]="sm",t[t.xl=24]="xl",t))(Io||{});const nf=({anchor:t,children:e,id:n,offset:r="sm",open:o,placement:s})=>R.jsx(po,{className:tf.base,id:n,open:o,anchor:t,offset:Io[r],placement:s,children:e}),rf="_radio_1xmmq_106",Ar={radio:rf,"radio--small":"_radio--small_1xmmq_124"};function of({checked:t,disabled:e,id:n,label:r,onChange:o,size:s,value:a}){const l=Ar[`radio--${s}`];return R.jsxs("span",{className:Ar.radio,children:[R.jsx("input",{checked:t,onChange:o,"aria-disabled":e,"aria-label":r,className:l,value:a,disabled:e,type:"radio",role:"radio",id:n}),R.jsx("label",{htmlFor:n,className:l,children:r})]})}const sf="_radiobuttoncluster_mfkyd_106",af={radiobuttoncluster:sf};function lf(t){const{children:e,disabled:n,onChange:r,value:o}=t;function s(l){r(l)}const a=p.Children.map(e,l=>p.cloneElement(l,{checked:o===l.props.value,onChange:s}));return R.jsx(ko,{disabled:n,classname:af.radiobuttoncluster,children:a})}const cf="_wrapper_5atbg_106",uf="_textInputContainer_5atbg_109",ff="_textInput_5atbg_109",Oe={wrapper:cf,textInputContainer:uf,textInput:ff,"textInput--medium":"_textInput--medium_5atbg_149","textInput--small":"_textInput--small_5atbg_169","textInput--dark":"_textInput--dark_5atbg_188","textInput--light":"_textInput--light_5atbg_203","textInput--error":"_textInput--error_5atbg_221","textInputContainer--errorMessage":"_textInputContainer--errorMessage_5atbg_239"},df=({colorScheme:t,errorMessage:e,id:n,label:r,name:o,ref:s,size:a,...l})=>{const{getInputProps:c,getRootProps:d}=ia({inputRef:s,...l}),f=c(),{disabled:h}=f,m=!!e,g=Oe[`textInput--${t}`],b=Oe[`textInput--${a}`];return R.jsxs("div",{className:Oe.wrapper,children:[R.jsxs("div",{className:Oe.textInputContainer,...d(),children:[R.jsx("input",{...f,id:n,type:"text",name:o,"aria-disabled":h,"aria-label":r,className:re(Oe.textInput,b,g,{[Oe["textInput--error"]]:m}),placeholder:""}),R.jsx("label",{htmlFor:n,children:R.jsx(be,{type:a==="medium"?"body-large":"body-regular",children:r})})]}),m&&R.jsx(be,{className:Oe["textInputContainer--errorMessage"],type:"detail-bold",children:e})]})},hf="_root_tupki_113",_t={root:hf,"root--24":"_root--24_tupki_120","root--28":"_root--28_tupki_124","root--32":"_root--32_tupki_128","root--40":"_root--40_tupki_132","root--48":"_root--48_tupki_136","root--56":"_root--56_tupki_140","root--64":"_root--64_tupki_144","root--80":"_root--80_tupki_148","root--120":"_root--120_tupki_152","root--280":"_root--280_tupki_156","root--square":"_root--square_tupki_160","root--circular":"_root--circular_tupki_172","root--isPlaceholder":"_root--isPlaceholder_tupki_175"},pf=({alt:t,isPlaceholder:e,shape:n,size:r,src:o})=>{const s=_t["root--isPlaceholder"];return R.jsx("div",{className:re(_t.root,_t[`root--${r}`],_t[`root--${n}`],{[s]:e}),children:o&&R.jsx(yo,{src:o,alt:t})})},mf="_slider_v0nwj_112",gf="_focusVisible_v0nwj_134",dn={switch:"_switch_v0nwj_106",slider:mf,focusVisible:gf},No=t=>{const{checked:e,disabled:n,focusVisible:r,getInputProps:o}=ai(t),{className:s,id:a}=t;return R.jsxs("span",{className:re(dn.switch,s),children:[R.jsx("input",{...o(),type:"checkbox","aria-checked":e,"aria-disabled":n,role:"switch",id:a,"data-testid":"toggle-switch"}),R.jsx("span",{className:re(dn.slider,{[dn.focusVisible]:r})})]})},wf="_toggleInput_o6ptp_106",vf="_textLabel_o6ptp_119",qe={toggleInput:wf,textLabel:vf,switch:"_switch_o6ptp_122","toggleInput--checked":"_toggleInput--checked_o6ptp_125","toggleInput--disabled":"_toggleInput--disabled_o6ptp_128","toggleInput--withBorder":"_toggleInput--withBorder_o6ptp_131"},bf=({checked:t,defaultChecked:e,disabled:n,icon:r,label:o,onChange:s,withBorder:a})=>R.jsxs("label",{className:re(qe.toggleInput,{[qe["toggleInput--withBorder"]]:a,[qe["toggleInput--checked"]]:t,[qe["toggleInput--disabled"]]:n}),children:[r&&R.jsx(Le,{name:r,size:"32"}),R.jsx(be,{type:"body-large",className:qe.textLabel,children:o}),R.jsx(No,{onChange:s,disabled:n,checked:t,defaultChecked:e,className:qe.switch})]});exports.Accordion=fs;exports.AccordionItem=ws;exports.BaseButton=wo;exports.Button=dt;exports.ButtonPrimary=ki;exports.Card=Si;exports.CardBody=vo;exports.CardHeader=bo;exports.Divider=$i;exports.Fieldset=ko;exports.Form=Ai;exports.Icon=Le;exports.IconButton=vn;exports.Image=yo;exports.LabelPill=xo;exports.Legend=Wu;exports.Loader=Zu;exports.Markdown=C2;exports.MenuItem=P2;exports.Modal=D2;exports.NavBar=q2;exports.NavItem=X2;exports.NotificationBubble=yn;exports.PlaceholderThumbnail=J2;exports.Popup=nf;exports.RadioButton=of;exports.RadioButtonCluster=lf;exports.TextButton=Fo;exports.TextInput=df;exports.Thumbnail=pf;exports.Toggle=No;exports.ToggleInput=bf;exports.Typography=be;
package/index.mjs CHANGED
@@ -5949,7 +5949,7 @@ const P2 = "_backdrop_4nnwx_106", L2 = {
5949
5949
  backdrop: P2
5950
5950
  }, Lo = dt.forwardRef((t, e) => /* @__PURE__ */ R.jsx("div", { ref: e, ...t, className: L2.backdrop }));
5951
5951
  Lo.displayName = "Backdrop";
5952
- const A2 = "_modal_wns73_106", F2 = "_modalWrapper_wns73_114", O2 = "_modalHeader_wns73_125", I2 = "_modalFooter_wns73_147", yt = {
5952
+ const A2 = "_modal_6agvp_106", F2 = "_modalWrapper_6agvp_114", O2 = "_modalHeader_6agvp_125", I2 = "_modalFooter_6agvp_147", yt = {
5953
5953
  modal: A2,
5954
5954
  modalWrapper: F2,
5955
5955
  modalHeader: O2,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goodhood-web/ui",
3
- "version": "1.6.0-development.4",
3
+ "version": "1.6.0-development.5",
4
4
  "main": "./index.js",
5
5
  "types": "./index.d.ts",
6
6
  "exports": {
package/style.css CHANGED
@@ -1 +1 @@
1
- @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")}._heading_1523r_106{display:flex;width:100%;align-items:center;justify-content:space-between;padding:12px 16px;margin:0;background-color:inherit;cursor:pointer;gap:8px}._accordionItem--large_1523r_117 ._heading_1523r_106{padding:24px 16px}._heading_1523r_106 ._title_1523r_120{color:#201649;font-size:18px;line-height:24px;text-align:left}._heading_1523r_106:not([data-expanded=true]){border-bottom:1px solid #d2d0db}._heading_1523r_106:not([data-expanded=true]):hover{background-color:#f4f3f6}._icon_1523r_133{margin-left:8px;color:#eb5ec2;transform:rotate(0);transition:all .3s 20ms}._icon_1523r_133._iconExpanded_1523r_139{transform:rotate(180deg)}@media (prefers-reduced-motion){._icon_1523r_133{transition:unset}}._panel_1523r_148{height:0;padding:0 12px 12px;opacity:0;visibility:hidden}._accordionItem--large_1523r_117 ._panel_1523r_148{padding:0 16px 24px}@media (prefers-reduced-motion){._panel_1523r_148{transition:unset}}._panel_1523r_148[data-expanded=true]{height:auto;opacity:1;transition:opacity .6s ease-in-out;visibility:visible}@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")}._baseBtn_r7qal_106{min-width:2rem;min-height:2rem;border:none;border-radius:0;cursor:pointer}@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")}._baseBtn_1a367_106{border:none;border-radius:0;color:inherit;cursor:pointer;text-decoration:none}@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")}._h1_d0674_106{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:32px;font-weight:500;letter-spacing:0;line-height:40px;text-decoration:none;text-indent:0px;text-transform:none}._h2_d0674_119{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:24px;font-weight:600;letter-spacing:0;line-height:32px;text-decoration:none;text-indent:0px;text-transform:none}._h3_d0674_132{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:20px;font-weight:600;letter-spacing:0;line-height:24px;text-decoration:none;text-indent:0px;text-transform:none}._h4_d0674_145{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:18px;font-weight:700;letter-spacing:0;line-height:24px;text-decoration:none;text-indent:0px;text-transform:none}._h5_d0674_158{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:16px;font-weight:600;letter-spacing:0;line-height:24px;text-decoration:none;text-indent:0px;text-transform:none}._h6_d0674_171{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:14px;font-weight:700;letter-spacing:1px;line-height:24px;text-decoration:none;text-indent:0px;text-transform:uppercase}._h7_d0674_184{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:12px;font-weight:800;letter-spacing:1px;line-height:16px;text-decoration:none;text-indent:0px;text-transform:uppercase}._h8_d0674_197{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:10px;font-weight:800;letter-spacing:1.5px;line-height:16px;text-decoration:none;text-indent:0px;text-transform:uppercase}._body-large_d0674_210{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}._body-regular_d0674_223{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:14px;font-weight:400;letter-spacing:0;line-height:20px;text-decoration:none;text-indent:0px;text-transform:none}._body-semibold_d0674_236{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:14px;font-weight:600;letter-spacing:0;line-height:20px;text-decoration:none;text-indent:0px;text-transform:none}._body-italic_d0674_249{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:14px;font-weight:400;letter-spacing:0;line-height:20px;text-decoration:none;text-indent:0px;text-transform:none}._detail-medium_d0674_262{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:12px;font-weight:500;letter-spacing:0;line-height:16px;text-decoration:none;text-indent:0px;text-transform:none}._detail-bold_d0674_275{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:12px;font-weight:700;letter-spacing:0;line-height:16px;text-decoration:none;text-indent:0px;text-transform:none}._detail-upper-case_d0674_288{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:10px;font-weight:800;letter-spacing:0;line-height:16px;text-decoration:none;text-indent:0px;text-transform:uppercase}._detail-regular_d0674_301{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:12px;font-weight:400;letter-spacing:0;line-height:16px;text-decoration:none;text-indent:0px;text-transform:none}@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")}._primaryButton_1efri_106{display:inline-flex;height:48px;align-items:center;justify-content:center;padding:0 24px;border-radius:24px;color:#201649;cursor:pointer;line-height:20px}._primaryButton--medium_1efri_117{height:40px;padding:0 16px}._primaryButton--small_1efri_121,._primaryButton--tiny_1efri_121{height:32px;padding:0 12px}._primaryButton--highlight_1efri_125{background-color:#ff9de2}._primaryButton--highlight_1efri_125:hover{background-color:#eb5ec2}._primaryButton--primary_1efri_131{background-color:#cae85d}._primaryButton--primary_1efri_131:hover{background-color:#b5d622}._primaryButton--transparent_1efri_137{border:1px solid #201649;background-color:transparent}._primaryButton--transparent_1efri_137:hover{border-color:#eb5ec2;background-color:#eb5ec2}._primaryButton--loading_1efri_145 span{cursor:default;visibility:hidden}._primaryButton_1efri_106:disabled{background-color:#f4f3f6;color:#635c80;cursor:default}@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_1qsmv_106{display:flex;overflow:hidden;width:100%;flex-direction:column;padding:16px;background-color:#fff;box-shadow:0 2px 8px #0000001a;color:#201649}._root--border-radius_1qsmv_116{border-radius:8px}@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_12ijz_106{padding:8px 0;color:inherit}@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_cp2nk_106{display:flex;align-items:center;padding-bottom:12px;color:inherit;gap:8px}._title_cp2nk_114{flex-grow:1;margin:0}@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")}._dividerContainer_1ttnp_106{display:flex;align-items:center}._dividerLine_1ttnp_111{height:1px;flex-grow:1;background-color:#d2d0db}@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")}._fieldset_jpaz4_106{border:none}@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")}._iconComponent_e7p0l_106{display:block}._iconComponent_e7p0l_106 path{stroke:currentcolor}@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")}._iconButton_18ves_106{display:flex;width:auto;min-width:unset;height:auto;min-height:unset;flex-shrink:0;align-items:center;justify-content:center;color:#201649}._iconButton_18ves_106:disabled{background:none;cursor:default}._iconButton_18ves_106:hover,._iconButton_18ves_106:active{background:none}._iconButton--circular_18ves_127{border-radius:999px;background:#cae85d}._iconButton--circular_18ves_127:disabled{background:#fff}._iconButton--circular_18ves_127:hover{background:#b5d622}._iconButton--circular_18ves_127:active{background:#cae85d}._iconButton--circular-small_18ves_140{width:40px;height:40px}._iconButton--circular-medium_18ves_144{width:48px;height:48px}._iconButton--circular-large_18ves_148{width:56px;height:56px}@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")}._labelPill_pr5xi_106{display:inline-flex;align-items:center;justify-content:center;border-radius:16px;background:#01819c}._labelPill_pr5xi_106 span{color:#fff;line-height:16px;text-align:center}._labelPill--small_pr5xi_118{height:20px;padding:0 8px}._labelPill--medium_pr5xi_122{padding:4px 8px}@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")}._legend_1hq4o_106{display:flex;flex-direction:column;padding-bottom:12px;gap:8px}._legend_1hq4o_106 ._text_1hq4o_112{color:#635c80}@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")}._wrapper_cbfi5_106{display:flex;height:100%;align-items:center;justify-content:center;padding:16px 0}._wrapper_cbfi5_106 ._loadingSpinner_cbfi5_113{display:inline-block}._wrapper_cbfi5_106 ._loadingSpinner_cbfi5_113:after,._wrapper_cbfi5_106 ._loadingSpinner_cbfi5_113:before{content:"";display:inline-block;width:20px;height:20px;border-radius:50%;animation:_pulse-loader-size_cbfi5_1 1s ease infinite;background:#9c9c9c}._wrapper_cbfi5_106 ._loadingSpinner_cbfi5_113 i{display:inline-block;width:20px;height:20px;border-radius:50%;animation:_pulse-loader-size_cbfi5_1 1s ease infinite;background:#9c9c9c;animation-delay:.5s;transform:scale(.2)}@keyframes _pulse-loader-size_cbfi5_1{0%{transform:scale(.2)}50%{transform:scale(1)}to{transform:scale(.2)}}@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")}._menuItem_14dl4_106{display:flex;width:100%;flex-shrink:0;align-items:center;padding:0 8px;background-color:#fff;color:#201649;cursor:pointer;gap:8px;text-decoration:none}._menuItem_14dl4_106 ._highlightFrame_14dl4_118{display:flex;flex:1;align-items:center;padding:8px;border-radius:8px;gap:8px}._menuItem_14dl4_106 ._rightIcon_14dl4_126{display:inherit;margin-left:auto;color:#635c80}._menuItem--selected_14dl4_131{color:#201649}._menuItem--selected_14dl4_131 ._leftIcon_14dl4_134{color:#738c00}._menuItem--selected_14dl4_131 ._highlightFrame_14dl4_118{background-color:#f2fbc4}._menuItem--selected_14dl4_131:hover{color:#738c00}._menuItem_14dl4_106:not(._menuItem--selected_14dl4_131):hover{color:#635c80}._menuItem_14dl4_106:not(._menuItem--selected_14dl4_131):hover ._highlightFrame_14dl4_118{background-color:#f4f3f6}@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")}._bubbleContent_1mlh3_106{position:relative;display:inline-block;margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:10px;font-weight:800;letter-spacing:0;line-height:16px;text-decoration:none;text-indent:0px;text-transform:uppercase}._bubble_1mlh3_106{position:absolute;z-index:auto;top:6px;right:6px;display:flex;width:20px;height:20px;align-items:center;justify-content:center;border-radius:999px;background-color:#ff9de2;color:#201649;letter-spacing:-.5px;text-align:center;transform:translate(50%,-50%);transform-origin:100% 0;white-space:nowrap}._bubble--empty_1mlh3_140{width:8px;height:8px;background-color:#eb5ec2}@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")}._textButton_17ryd_106{display:flex;height:1.5rem;min-height:1.5rem;align-items:center;justify-content:center;gap:8px}._textButton--green_17ryd_114{color:#cae85d}._textButton--green_17ryd_114:active{color:#b5d622}._textButton--blue_17ryd_120,._textButton--blue_17ryd_120:active{color:#01819c}._textButton--text_17ryd_126{color:#635c80}._textButton_17ryd_106:active{background:none}._textButton_17ryd_106:disabled{color:#d2d0db}@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")}._backdrop_4nnwx_106{position:fixed;z-index:-1;background:#0003;top:0;right:0;bottom:0;left:0}@media screen and (max-width: 689px){._backdrop_4nnwx_106{background:#fff}}@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")}._modal_wns73_106{position:fixed;z-index:1300;display:flex;align-items:center;justify-content:center;top:0;right:0;bottom:0;left:0}._modal_wns73_106 ._modalWrapper_wns73_114{min-width:560px;border-radius:16px;background-color:#fff;box-shadow:0 6px 32px #2016491a}@media screen and (max-width: 689px){._modal_wns73_106 ._modalWrapper_wns73_114{border-radius:0}}._modal_wns73_106 ._modalWrapper_wns73_114 ._modalHeader_wns73_125{padding:16px}._modal_wns73_106 ._modalWrapper_wns73_114 ._modalHeader_wns73_125 header{padding:0}._modal_wns73_106 ._modalWrapper_wns73_114 header button:first-child{display:none}@media screen and (max-width: 689px){._modal_wns73_106 ._modalWrapper_wns73_114{width:100%;min-width:auto;height:100%}._modal_wns73_106 ._modalWrapper_wns73_114 header button:last-child{display:none}._modal_wns73_106 ._modalWrapper_wns73_114 header button:first-child{display:block}}._modal_wns73_106 ._modalFooter_wns73_147{margin:16px}@media screen and (max-width: 689px){._modal_wns73_106 ._modalFooter_wns73_147{display:none}}@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")}._navBar_pjatm_106{display:grid;padding:0 4px 24px;grid-auto-columns:minmax(0,1fr);grid-auto-flow:column}@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")}._listItem_3we3l_106 ._navItem_3we3l_106{display:flex;width:100%;flex-direction:column;align-items:center;padding:0 4px 4px;color:#635c80;cursor:pointer}@media (min-width: 768px){._listItem_3we3l_106 ._navItem_3we3l_106{padding:0 8px 8px}}._listItem_3we3l_106 ._navItem_3we3l_106 ._selector_3we3l_120{height:4px;align-self:stretch;border-radius:0 0 4px 4px;margin-bottom:4px;background-color:#cae85d;visibility:hidden}._listItem_3we3l_106 ._navItem--active_3we3l_128{padding-right:4px;padding-left:4px;color:#738c00}._listItem_3we3l_106 ._navItem--active_3we3l_128 ._selector_3we3l_120{height:4px;align-self:stretch;border-radius:0 0 4px 4px;background-color:#cae85d;visibility:visible}._label_3we3l_141{display:block;max-width:calc(100% - 1px);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}@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")}._wrapper_s4007_106{display:flex;width:100%;height:100%;align-items:center;justify-content:center;border-radius:8px}._wrapper_s4007_106 path{stroke:#635c80}._wrapper--large_s4007_117{background-color:#d2d0db}._wrapper--small_s4007_120{border:1px solid #d2d0db;background-color:#f4f3f6}._wrapper--iconWrapper_s4007_124{width:72px;height:72px;border-radius:999px}._wrapper_s4007_106._wrapper--iconWrapper_s4007_124{background-color:#f4f3f6}@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")}._base_1o08v_106{z-index:1060}@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")}._radio_1xmmq_106{position:relative;display:flex;align-items:center;justify-content:space-between}._radio_1xmmq_106 input{position:relative;display:flex;width:28px;height:28px;align-items:center;justify-content:center;order:2;border:2px solid #a6a2b6;border-radius:999px;transition:.4s}._radio_1xmmq_106 input._radio--small_1xmmq_124{width:24px;height:24px}._radio_1xmmq_106 input:not(:disabled){cursor:pointer}._radio_1xmmq_106 input:disabled{border-color:#d2d0db}._radio_1xmmq_106 input:checked{border-color:#201649;background-color:#201649;transition:0s}._radio_1xmmq_106 input:checked:disabled{border-color:#a6a2b6;background-color:#a6a2b6}._radio_1xmmq_106 input:hover:not(:disabled,:checked){border-color:#635c80;background-color:#f4f3f6}._radio_1xmmq_106 label{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;flex-grow:1;order:1;padding-right:8px;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}._radio_1xmmq_106 label._radio--small_1xmmq_124{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:14px;font-weight:600;letter-spacing:0;line-height:20px;text-decoration:none;text-indent:0px;text-transform:none}._radio_1xmmq_106 input:not(:disabled)~label{color:#635c80;cursor:pointer}._radio_1xmmq_106 input:checked~label{color:#201649;margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:16px;font-weight:600;letter-spacing:0;line-height:24px;text-decoration:none;text-indent:0px;text-transform:none}._radio_1xmmq_106 input:checked~label._radio--small_1xmmq_124{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:14px;font-weight:600;letter-spacing:0;line-height:20px;text-decoration:none;text-indent:0px;text-transform:none}._radio_1xmmq_106 input:disabled~label{color:#a6a2b6}._radio_1xmmq_106 input:checked:after{position:absolute;display:block;width:12px;height:12px;border-radius:999px;background-color:#fff;content:""}@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")}._radiobuttoncluster_mfkyd_106{display:flex;flex-direction:column;gap:16px}@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")}._wrapper_5atbg_106{width:100%}._wrapper_5atbg_106 ._textInputContainer_5atbg_109{position:relative}._wrapper_5atbg_106 ._textInputContainer_5atbg_109 label{position:absolute;top:50%;right:16px;left:16px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;transform:translateY(-50%);transition:top .3s,font-size .3s}._wrapper_5atbg_106 ._textInputContainer_5atbg_109 ._textInput_5atbg_109{width:100%;color:#201649;outline:none;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}._wrapper_5atbg_106 ._textInputContainer_5atbg_109 ._textInput_5atbg_109+label{color:#635c80}._wrapper_5atbg_106 ._textInputContainer_5atbg_109 ._textInput_5atbg_109:not(:-moz-placeholder-shown)+label{top:16px}._wrapper_5atbg_106 ._textInputContainer_5atbg_109 ._textInput_5atbg_109:focus+label,._wrapper_5atbg_106 ._textInputContainer_5atbg_109 ._textInput_5atbg_109:not(:placeholder-shown)+label{top:16px}._wrapper_5atbg_106 ._textInputContainer_5atbg_109 ._textInput_5atbg_109:not(:-moz-placeholder-shown)+label>span{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:12px;font-weight:500;letter-spacing:0;line-height:16px;text-decoration:none;text-indent:0px;text-transform:none}._wrapper_5atbg_106 ._textInputContainer_5atbg_109 ._textInput_5atbg_109:focus+label>span,._wrapper_5atbg_106 ._textInputContainer_5atbg_109 ._textInput_5atbg_109:not(:placeholder-shown)+label>span{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:12px;font-weight:500;letter-spacing:0;line-height:16px;text-decoration:none;text-indent:0px;text-transform:none}._wrapper_5atbg_106 ._textInputContainer_5atbg_109 ._textInput--medium_5atbg_149{height:56px;padding:16px;border-radius:16px;margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:16px;font-weight:500;letter-spacing:0;text-decoration:none;text-indent:0px;text-transform:none;line-height:24px}._wrapper_5atbg_106 ._textInputContainer_5atbg_109 ._textInput--medium_5atbg_149:not(:-moz-placeholder-shown){padding-top:26px;padding-bottom:6px}._wrapper_5atbg_106 ._textInputContainer_5atbg_109 ._textInput--medium_5atbg_149:focus,._wrapper_5atbg_106 ._textInputContainer_5atbg_109 ._textInput--medium_5atbg_149:not(:placeholder-shown){padding-top:26px;padding-bottom:6px}._wrapper_5atbg_106 ._textInputContainer_5atbg_109 ._textInput--small_5atbg_169{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:14px;font-weight:600;letter-spacing:0;text-decoration:none;text-indent:0px;text-transform:none;height:40px;padding:0 16px;border-radius:12px;line-height:20px}._wrapper_5atbg_106 ._textInputContainer_5atbg_109 ._textInput--small_5atbg_169:not(:-moz-placeholder-shown)+label{display:none}._wrapper_5atbg_106 ._textInputContainer_5atbg_109 ._textInput--small_5atbg_169:focus+label,._wrapper_5atbg_106 ._textInputContainer_5atbg_109 ._textInput--small_5atbg_169:not(:placeholder-shown)+label{display:none}._wrapper_5atbg_106 ._textInputContainer_5atbg_109 ._textInput--dark_5atbg_188{background-color:#f4f3f6}._wrapper_5atbg_106 ._textInputContainer_5atbg_109 ._textInput--dark_5atbg_188:hover{background-color:#e9e8ed}._wrapper_5atbg_106 ._textInputContainer_5atbg_109 ._textInput--dark_5atbg_188:disabled{color:#a6a2b6}._wrapper_5atbg_106 ._textInputContainer_5atbg_109 ._textInput--dark_5atbg_188:disabled:hover{background-color:#f4f3f6}._wrapper_5atbg_106 ._textInputContainer_5atbg_109 ._textInput--dark_5atbg_188:disabled+label{color:#a6a2b6}._wrapper_5atbg_106 ._textInputContainer_5atbg_109 ._textInput--light_5atbg_203{border:1px solid #a6a2b6;background-color:#fff}._wrapper_5atbg_106 ._textInputContainer_5atbg_109 ._textInput--light_5atbg_203:hover{border-color:#635c80;background-color:#f4f3f6}._wrapper_5atbg_106 ._textInputContainer_5atbg_109 ._textInput--light_5atbg_203:disabled{border-color:#d2d0db;color:#a6a2b6}._wrapper_5atbg_106 ._textInputContainer_5atbg_109 ._textInput--light_5atbg_203:disabled:hover{background-color:#fff}._wrapper_5atbg_106 ._textInputContainer_5atbg_109 ._textInput--light_5atbg_203:disabled+label{color:#a6a2b6}._wrapper_5atbg_106 ._textInputContainer_5atbg_109 ._textInput--error_5atbg_221{border:1px solid #CC339F;background-color:#fde6f7;color:#201649}._wrapper_5atbg_106 ._textInputContainer_5atbg_109 ._textInput--error_5atbg_221:focus{border-color:#cc339f}._wrapper_5atbg_106 ._textInputContainer_5atbg_109 ._textInput--error_5atbg_221:hover{border-color:#cc339f;background-color:#fde6f7}._wrapper_5atbg_106 ._textInputContainer_5atbg_109 ._textInput--error_5atbg_221:disabled{border-color:#cc339f}._wrapper_5atbg_106 ._textInputContainer_5atbg_109 ._textInput--error_5atbg_221:disabled:hover{background-color:#fde6f7}._wrapper_5atbg_106 ._textInputContainer--errorMessage_5atbg_239{display:block;margin-top:4px;margin-left:8px;color:#cc339f;text-transform:capitalize}@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_tupki_113{position:relative;overflow:hidden;flex-shrink:0;border:solid 1px #d2d0db;background-color:#d2d0db}._root--24_tupki_120{width:24px;height:24px}._root--28_tupki_124{width:28px;height:28px}._root--32_tupki_128{width:32px;height:32px}._root--40_tupki_132{width:40px;height:40px}._root--48_tupki_136{width:48px;height:48px}._root--56_tupki_140{width:56px;height:56px}._root--64_tupki_144{width:64px;height:64px}._root--80_tupki_148{width:80px;height:80px}._root--120_tupki_152{width:120px;height:120px}._root--280_tupki_156{width:280px;height:280px}._root--square_tupki_160._root--24_tupki_120,._root--square_tupki_160._root--32_tupki_128{border-radius:4px}._root--square_tupki_160._root--40_tupki_132,._root--square_tupki_160._root--48_tupki_136{border-radius:8px}._root--square_tupki_160._root--56_tupki_140,._root--square_tupki_160._root--64_tupki_144{border-radius:12px}._root--square_tupki_160._root--80_tupki_148,._root--square_tupki_160._root--120_tupki_152{border-radius:16px}._root--circular_tupki_172{border-radius:50%}._root--isPlaceholder_tupki_175:before{position:absolute;z-index:1;width:100%;height:100%;background-color:#d2d0db;content:"";opacity:.4}._root_tupki_113 img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}@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")}._switch_v0nwj_106{position:relative;display:inline-block;width:48px;height:28px}._switch_v0nwj_106 ._slider_v0nwj_112{z-index:1;display:block;width:100%;height:100%;border-radius:999px;background-color:#d2d0db;box-shadow:inset 0 0 0 1.5px #a6a2b6;transition:.4s}._switch_v0nwj_106 ._slider_v0nwj_112:before{position:absolute;right:0;bottom:2px;width:24px;height:24px;border-radius:999px;background-color:#fff;content:"";transform:translate(calc(-100% + 2px));transition:.4s}._switch_v0nwj_106 ._slider_v0nwj_112._focusVisible_v0nwj_134{box-shadow:inset 0 0 0 1.5px #43adc3!important}._switch_v0nwj_106 input{position:absolute;z-index:2;width:48px;height:28px;opacity:0}._switch_v0nwj_106 input:not(:disabled){cursor:pointer}._switch_v0nwj_106 input:hover+._slider_v0nwj_112{box-shadow:inset 0 0 0 1.5px #635c80}._switch_v0nwj_106 input:disabled+._slider_v0nwj_112{opacity:.4}._switch_v0nwj_106 input:checked+._slider_v0nwj_112{background-color:#201649;box-shadow:inset 0 0 0 1.5px #201649}._switch_v0nwj_106 input:checked+._slider_v0nwj_112:before{transform:translate(-2px)}._switch_v0nwj_106 input:checked:hover+._slider_v0nwj_112{background-color:#635c80;box-shadow:inset 0 0 0 1.5px #635c80}@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")}._toggleInput_o6ptp_106{display:flex;width:100%;align-items:center;padding:8px 16px;background-color:#fff;color:#635c80;cursor:pointer;gap:12px}._toggleInput_o6ptp_106 svg{flex-shrink:0}._toggleInput_o6ptp_106 ._textLabel_o6ptp_119{flex-grow:1}._toggleInput_o6ptp_106 ._switch_o6ptp_122{flex-shrink:0}._toggleInput--checked_o6ptp_125{color:#201649}._toggleInput--disabled_o6ptp_128{cursor:unset}._toggleInput--withBorder_o6ptp_131{padding:12px 16px;border-radius:16px;box-shadow:inset 0 0 0 1px #d2d0db}
1
+ @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")}._heading_1523r_106{display:flex;width:100%;align-items:center;justify-content:space-between;padding:12px 16px;margin:0;background-color:inherit;cursor:pointer;gap:8px}._accordionItem--large_1523r_117 ._heading_1523r_106{padding:24px 16px}._heading_1523r_106 ._title_1523r_120{color:#201649;font-size:18px;line-height:24px;text-align:left}._heading_1523r_106:not([data-expanded=true]){border-bottom:1px solid #d2d0db}._heading_1523r_106:not([data-expanded=true]):hover{background-color:#f4f3f6}._icon_1523r_133{margin-left:8px;color:#eb5ec2;transform:rotate(0);transition:all .3s 20ms}._icon_1523r_133._iconExpanded_1523r_139{transform:rotate(180deg)}@media (prefers-reduced-motion){._icon_1523r_133{transition:unset}}._panel_1523r_148{height:0;padding:0 12px 12px;opacity:0;visibility:hidden}._accordionItem--large_1523r_117 ._panel_1523r_148{padding:0 16px 24px}@media (prefers-reduced-motion){._panel_1523r_148{transition:unset}}._panel_1523r_148[data-expanded=true]{height:auto;opacity:1;transition:opacity .6s ease-in-out;visibility:visible}@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")}._baseBtn_r7qal_106{min-width:2rem;min-height:2rem;border:none;border-radius:0;cursor:pointer}@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")}._baseBtn_1a367_106{border:none;border-radius:0;color:inherit;cursor:pointer;text-decoration:none}@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")}._h1_d0674_106{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:32px;font-weight:500;letter-spacing:0;line-height:40px;text-decoration:none;text-indent:0px;text-transform:none}._h2_d0674_119{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:24px;font-weight:600;letter-spacing:0;line-height:32px;text-decoration:none;text-indent:0px;text-transform:none}._h3_d0674_132{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:20px;font-weight:600;letter-spacing:0;line-height:24px;text-decoration:none;text-indent:0px;text-transform:none}._h4_d0674_145{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:18px;font-weight:700;letter-spacing:0;line-height:24px;text-decoration:none;text-indent:0px;text-transform:none}._h5_d0674_158{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:16px;font-weight:600;letter-spacing:0;line-height:24px;text-decoration:none;text-indent:0px;text-transform:none}._h6_d0674_171{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:14px;font-weight:700;letter-spacing:1px;line-height:24px;text-decoration:none;text-indent:0px;text-transform:uppercase}._h7_d0674_184{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:12px;font-weight:800;letter-spacing:1px;line-height:16px;text-decoration:none;text-indent:0px;text-transform:uppercase}._h8_d0674_197{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:10px;font-weight:800;letter-spacing:1.5px;line-height:16px;text-decoration:none;text-indent:0px;text-transform:uppercase}._body-large_d0674_210{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}._body-regular_d0674_223{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:14px;font-weight:400;letter-spacing:0;line-height:20px;text-decoration:none;text-indent:0px;text-transform:none}._body-semibold_d0674_236{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:14px;font-weight:600;letter-spacing:0;line-height:20px;text-decoration:none;text-indent:0px;text-transform:none}._body-italic_d0674_249{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:14px;font-weight:400;letter-spacing:0;line-height:20px;text-decoration:none;text-indent:0px;text-transform:none}._detail-medium_d0674_262{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:12px;font-weight:500;letter-spacing:0;line-height:16px;text-decoration:none;text-indent:0px;text-transform:none}._detail-bold_d0674_275{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:12px;font-weight:700;letter-spacing:0;line-height:16px;text-decoration:none;text-indent:0px;text-transform:none}._detail-upper-case_d0674_288{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:10px;font-weight:800;letter-spacing:0;line-height:16px;text-decoration:none;text-indent:0px;text-transform:uppercase}._detail-regular_d0674_301{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:12px;font-weight:400;letter-spacing:0;line-height:16px;text-decoration:none;text-indent:0px;text-transform:none}@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")}._primaryButton_1efri_106{display:inline-flex;height:48px;align-items:center;justify-content:center;padding:0 24px;border-radius:24px;color:#201649;cursor:pointer;line-height:20px}._primaryButton--medium_1efri_117{height:40px;padding:0 16px}._primaryButton--small_1efri_121,._primaryButton--tiny_1efri_121{height:32px;padding:0 12px}._primaryButton--highlight_1efri_125{background-color:#ff9de2}._primaryButton--highlight_1efri_125:hover{background-color:#eb5ec2}._primaryButton--primary_1efri_131{background-color:#cae85d}._primaryButton--primary_1efri_131:hover{background-color:#b5d622}._primaryButton--transparent_1efri_137{border:1px solid #201649;background-color:transparent}._primaryButton--transparent_1efri_137:hover{border-color:#eb5ec2;background-color:#eb5ec2}._primaryButton--loading_1efri_145 span{cursor:default;visibility:hidden}._primaryButton_1efri_106:disabled{background-color:#f4f3f6;color:#635c80;cursor:default}@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_1qsmv_106{display:flex;overflow:hidden;width:100%;flex-direction:column;padding:16px;background-color:#fff;box-shadow:0 2px 8px #0000001a;color:#201649}._root--border-radius_1qsmv_116{border-radius:8px}@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_12ijz_106{padding:8px 0;color:inherit}@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_cp2nk_106{display:flex;align-items:center;padding-bottom:12px;color:inherit;gap:8px}._title_cp2nk_114{flex-grow:1;margin:0}@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")}._dividerContainer_1ttnp_106{display:flex;align-items:center}._dividerLine_1ttnp_111{height:1px;flex-grow:1;background-color:#d2d0db}@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")}._fieldset_jpaz4_106{border:none}@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")}._iconComponent_e7p0l_106{display:block}._iconComponent_e7p0l_106 path{stroke:currentcolor}@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")}._iconButton_18ves_106{display:flex;width:auto;min-width:unset;height:auto;min-height:unset;flex-shrink:0;align-items:center;justify-content:center;color:#201649}._iconButton_18ves_106:disabled{background:none;cursor:default}._iconButton_18ves_106:hover,._iconButton_18ves_106:active{background:none}._iconButton--circular_18ves_127{border-radius:999px;background:#cae85d}._iconButton--circular_18ves_127:disabled{background:#fff}._iconButton--circular_18ves_127:hover{background:#b5d622}._iconButton--circular_18ves_127:active{background:#cae85d}._iconButton--circular-small_18ves_140{width:40px;height:40px}._iconButton--circular-medium_18ves_144{width:48px;height:48px}._iconButton--circular-large_18ves_148{width:56px;height:56px}@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")}._labelPill_pr5xi_106{display:inline-flex;align-items:center;justify-content:center;border-radius:16px;background:#01819c}._labelPill_pr5xi_106 span{color:#fff;line-height:16px;text-align:center}._labelPill--small_pr5xi_118{height:20px;padding:0 8px}._labelPill--medium_pr5xi_122{padding:4px 8px}@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")}._legend_1hq4o_106{display:flex;flex-direction:column;padding-bottom:12px;gap:8px}._legend_1hq4o_106 ._text_1hq4o_112{color:#635c80}@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")}._wrapper_cbfi5_106{display:flex;height:100%;align-items:center;justify-content:center;padding:16px 0}._wrapper_cbfi5_106 ._loadingSpinner_cbfi5_113{display:inline-block}._wrapper_cbfi5_106 ._loadingSpinner_cbfi5_113:after,._wrapper_cbfi5_106 ._loadingSpinner_cbfi5_113:before{content:"";display:inline-block;width:20px;height:20px;border-radius:50%;animation:_pulse-loader-size_cbfi5_1 1s ease infinite;background:#9c9c9c}._wrapper_cbfi5_106 ._loadingSpinner_cbfi5_113 i{display:inline-block;width:20px;height:20px;border-radius:50%;animation:_pulse-loader-size_cbfi5_1 1s ease infinite;background:#9c9c9c;animation-delay:.5s;transform:scale(.2)}@keyframes _pulse-loader-size_cbfi5_1{0%{transform:scale(.2)}50%{transform:scale(1)}to{transform:scale(.2)}}@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")}._menuItem_14dl4_106{display:flex;width:100%;flex-shrink:0;align-items:center;padding:0 8px;background-color:#fff;color:#201649;cursor:pointer;gap:8px;text-decoration:none}._menuItem_14dl4_106 ._highlightFrame_14dl4_118{display:flex;flex:1;align-items:center;padding:8px;border-radius:8px;gap:8px}._menuItem_14dl4_106 ._rightIcon_14dl4_126{display:inherit;margin-left:auto;color:#635c80}._menuItem--selected_14dl4_131{color:#201649}._menuItem--selected_14dl4_131 ._leftIcon_14dl4_134{color:#738c00}._menuItem--selected_14dl4_131 ._highlightFrame_14dl4_118{background-color:#f2fbc4}._menuItem--selected_14dl4_131:hover{color:#738c00}._menuItem_14dl4_106:not(._menuItem--selected_14dl4_131):hover{color:#635c80}._menuItem_14dl4_106:not(._menuItem--selected_14dl4_131):hover ._highlightFrame_14dl4_118{background-color:#f4f3f6}@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")}._bubbleContent_1mlh3_106{position:relative;display:inline-block;margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:10px;font-weight:800;letter-spacing:0;line-height:16px;text-decoration:none;text-indent:0px;text-transform:uppercase}._bubble_1mlh3_106{position:absolute;z-index:auto;top:6px;right:6px;display:flex;width:20px;height:20px;align-items:center;justify-content:center;border-radius:999px;background-color:#ff9de2;color:#201649;letter-spacing:-.5px;text-align:center;transform:translate(50%,-50%);transform-origin:100% 0;white-space:nowrap}._bubble--empty_1mlh3_140{width:8px;height:8px;background-color:#eb5ec2}@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")}._textButton_17ryd_106{display:flex;height:1.5rem;min-height:1.5rem;align-items:center;justify-content:center;gap:8px}._textButton--green_17ryd_114{color:#cae85d}._textButton--green_17ryd_114:active{color:#b5d622}._textButton--blue_17ryd_120,._textButton--blue_17ryd_120:active{color:#01819c}._textButton--text_17ryd_126{color:#635c80}._textButton_17ryd_106:active{background:none}._textButton_17ryd_106:disabled{color:#d2d0db}@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")}._backdrop_4nnwx_106{position:fixed;z-index:-1;background:#0003;top:0;right:0;bottom:0;left:0}@media screen and (max-width: 689px){._backdrop_4nnwx_106{background:#fff}}@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")}._modal_6agvp_106{position:fixed;z-index:1300;display:flex;align-items:center;justify-content:center;top:0;right:0;bottom:0;left:0}._modal_6agvp_106 ._modalWrapper_6agvp_114{min-width:560px;border-radius:16px;background-color:#fff;box-shadow:0 6px 32px #2016491a}@media screen and (max-width: 689px){._modal_6agvp_106 ._modalWrapper_6agvp_114{border-radius:0}}._modal_6agvp_106 ._modalWrapper_6agvp_114 ._modalHeader_6agvp_125{padding:16px}._modal_6agvp_106 ._modalWrapper_6agvp_114 ._modalHeader_6agvp_125 header{padding:0}._modal_6agvp_106 ._modalWrapper_6agvp_114 header button:first-child{display:none}@media screen and (max-width: 689px){._modal_6agvp_106 ._modalWrapper_6agvp_114{width:100%;min-width:auto;height:100%}._modal_6agvp_106 ._modalWrapper_6agvp_114 header button:last-child{display:none}._modal_6agvp_106 ._modalWrapper_6agvp_114 header button:first-child{display:block}}._modal_6agvp_106 ._modalFooter_6agvp_147{margin:16px}@media screen and (max-width: 689px){._modal_6agvp_106 ._modalFooter_6agvp_147{display:none}}@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")}._navBar_pjatm_106{display:grid;padding:0 4px 24px;grid-auto-columns:minmax(0,1fr);grid-auto-flow:column}@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")}._listItem_3we3l_106 ._navItem_3we3l_106{display:flex;width:100%;flex-direction:column;align-items:center;padding:0 4px 4px;color:#635c80;cursor:pointer}@media (min-width: 768px){._listItem_3we3l_106 ._navItem_3we3l_106{padding:0 8px 8px}}._listItem_3we3l_106 ._navItem_3we3l_106 ._selector_3we3l_120{height:4px;align-self:stretch;border-radius:0 0 4px 4px;margin-bottom:4px;background-color:#cae85d;visibility:hidden}._listItem_3we3l_106 ._navItem--active_3we3l_128{padding-right:4px;padding-left:4px;color:#738c00}._listItem_3we3l_106 ._navItem--active_3we3l_128 ._selector_3we3l_120{height:4px;align-self:stretch;border-radius:0 0 4px 4px;background-color:#cae85d;visibility:visible}._label_3we3l_141{display:block;max-width:calc(100% - 1px);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}@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")}._wrapper_s4007_106{display:flex;width:100%;height:100%;align-items:center;justify-content:center;border-radius:8px}._wrapper_s4007_106 path{stroke:#635c80}._wrapper--large_s4007_117{background-color:#d2d0db}._wrapper--small_s4007_120{border:1px solid #d2d0db;background-color:#f4f3f6}._wrapper--iconWrapper_s4007_124{width:72px;height:72px;border-radius:999px}._wrapper_s4007_106._wrapper--iconWrapper_s4007_124{background-color:#f4f3f6}@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")}._base_1o08v_106{z-index:1060}@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")}._radio_1xmmq_106{position:relative;display:flex;align-items:center;justify-content:space-between}._radio_1xmmq_106 input{position:relative;display:flex;width:28px;height:28px;align-items:center;justify-content:center;order:2;border:2px solid #a6a2b6;border-radius:999px;transition:.4s}._radio_1xmmq_106 input._radio--small_1xmmq_124{width:24px;height:24px}._radio_1xmmq_106 input:not(:disabled){cursor:pointer}._radio_1xmmq_106 input:disabled{border-color:#d2d0db}._radio_1xmmq_106 input:checked{border-color:#201649;background-color:#201649;transition:0s}._radio_1xmmq_106 input:checked:disabled{border-color:#a6a2b6;background-color:#a6a2b6}._radio_1xmmq_106 input:hover:not(:disabled,:checked){border-color:#635c80;background-color:#f4f3f6}._radio_1xmmq_106 label{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;flex-grow:1;order:1;padding-right:8px;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}._radio_1xmmq_106 label._radio--small_1xmmq_124{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:14px;font-weight:600;letter-spacing:0;line-height:20px;text-decoration:none;text-indent:0px;text-transform:none}._radio_1xmmq_106 input:not(:disabled)~label{color:#635c80;cursor:pointer}._radio_1xmmq_106 input:checked~label{color:#201649;margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:16px;font-weight:600;letter-spacing:0;line-height:24px;text-decoration:none;text-indent:0px;text-transform:none}._radio_1xmmq_106 input:checked~label._radio--small_1xmmq_124{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:14px;font-weight:600;letter-spacing:0;line-height:20px;text-decoration:none;text-indent:0px;text-transform:none}._radio_1xmmq_106 input:disabled~label{color:#a6a2b6}._radio_1xmmq_106 input:checked:after{position:absolute;display:block;width:12px;height:12px;border-radius:999px;background-color:#fff;content:""}@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")}._radiobuttoncluster_mfkyd_106{display:flex;flex-direction:column;gap:16px}@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")}._wrapper_5atbg_106{width:100%}._wrapper_5atbg_106 ._textInputContainer_5atbg_109{position:relative}._wrapper_5atbg_106 ._textInputContainer_5atbg_109 label{position:absolute;top:50%;right:16px;left:16px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;transform:translateY(-50%);transition:top .3s,font-size .3s}._wrapper_5atbg_106 ._textInputContainer_5atbg_109 ._textInput_5atbg_109{width:100%;color:#201649;outline:none;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}._wrapper_5atbg_106 ._textInputContainer_5atbg_109 ._textInput_5atbg_109+label{color:#635c80}._wrapper_5atbg_106 ._textInputContainer_5atbg_109 ._textInput_5atbg_109:not(:-moz-placeholder-shown)+label{top:16px}._wrapper_5atbg_106 ._textInputContainer_5atbg_109 ._textInput_5atbg_109:focus+label,._wrapper_5atbg_106 ._textInputContainer_5atbg_109 ._textInput_5atbg_109:not(:placeholder-shown)+label{top:16px}._wrapper_5atbg_106 ._textInputContainer_5atbg_109 ._textInput_5atbg_109:not(:-moz-placeholder-shown)+label>span{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:12px;font-weight:500;letter-spacing:0;line-height:16px;text-decoration:none;text-indent:0px;text-transform:none}._wrapper_5atbg_106 ._textInputContainer_5atbg_109 ._textInput_5atbg_109:focus+label>span,._wrapper_5atbg_106 ._textInputContainer_5atbg_109 ._textInput_5atbg_109:not(:placeholder-shown)+label>span{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:12px;font-weight:500;letter-spacing:0;line-height:16px;text-decoration:none;text-indent:0px;text-transform:none}._wrapper_5atbg_106 ._textInputContainer_5atbg_109 ._textInput--medium_5atbg_149{height:56px;padding:16px;border-radius:16px;margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:16px;font-weight:500;letter-spacing:0;text-decoration:none;text-indent:0px;text-transform:none;line-height:24px}._wrapper_5atbg_106 ._textInputContainer_5atbg_109 ._textInput--medium_5atbg_149:not(:-moz-placeholder-shown){padding-top:26px;padding-bottom:6px}._wrapper_5atbg_106 ._textInputContainer_5atbg_109 ._textInput--medium_5atbg_149:focus,._wrapper_5atbg_106 ._textInputContainer_5atbg_109 ._textInput--medium_5atbg_149:not(:placeholder-shown){padding-top:26px;padding-bottom:6px}._wrapper_5atbg_106 ._textInputContainer_5atbg_109 ._textInput--small_5atbg_169{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:14px;font-weight:600;letter-spacing:0;text-decoration:none;text-indent:0px;text-transform:none;height:40px;padding:0 16px;border-radius:12px;line-height:20px}._wrapper_5atbg_106 ._textInputContainer_5atbg_109 ._textInput--small_5atbg_169:not(:-moz-placeholder-shown)+label{display:none}._wrapper_5atbg_106 ._textInputContainer_5atbg_109 ._textInput--small_5atbg_169:focus+label,._wrapper_5atbg_106 ._textInputContainer_5atbg_109 ._textInput--small_5atbg_169:not(:placeholder-shown)+label{display:none}._wrapper_5atbg_106 ._textInputContainer_5atbg_109 ._textInput--dark_5atbg_188{background-color:#f4f3f6}._wrapper_5atbg_106 ._textInputContainer_5atbg_109 ._textInput--dark_5atbg_188:hover{background-color:#e9e8ed}._wrapper_5atbg_106 ._textInputContainer_5atbg_109 ._textInput--dark_5atbg_188:disabled{color:#a6a2b6}._wrapper_5atbg_106 ._textInputContainer_5atbg_109 ._textInput--dark_5atbg_188:disabled:hover{background-color:#f4f3f6}._wrapper_5atbg_106 ._textInputContainer_5atbg_109 ._textInput--dark_5atbg_188:disabled+label{color:#a6a2b6}._wrapper_5atbg_106 ._textInputContainer_5atbg_109 ._textInput--light_5atbg_203{border:1px solid #a6a2b6;background-color:#fff}._wrapper_5atbg_106 ._textInputContainer_5atbg_109 ._textInput--light_5atbg_203:hover{border-color:#635c80;background-color:#f4f3f6}._wrapper_5atbg_106 ._textInputContainer_5atbg_109 ._textInput--light_5atbg_203:disabled{border-color:#d2d0db;color:#a6a2b6}._wrapper_5atbg_106 ._textInputContainer_5atbg_109 ._textInput--light_5atbg_203:disabled:hover{background-color:#fff}._wrapper_5atbg_106 ._textInputContainer_5atbg_109 ._textInput--light_5atbg_203:disabled+label{color:#a6a2b6}._wrapper_5atbg_106 ._textInputContainer_5atbg_109 ._textInput--error_5atbg_221{border:1px solid #CC339F;background-color:#fde6f7;color:#201649}._wrapper_5atbg_106 ._textInputContainer_5atbg_109 ._textInput--error_5atbg_221:focus{border-color:#cc339f}._wrapper_5atbg_106 ._textInputContainer_5atbg_109 ._textInput--error_5atbg_221:hover{border-color:#cc339f;background-color:#fde6f7}._wrapper_5atbg_106 ._textInputContainer_5atbg_109 ._textInput--error_5atbg_221:disabled{border-color:#cc339f}._wrapper_5atbg_106 ._textInputContainer_5atbg_109 ._textInput--error_5atbg_221:disabled:hover{background-color:#fde6f7}._wrapper_5atbg_106 ._textInputContainer--errorMessage_5atbg_239{display:block;margin-top:4px;margin-left:8px;color:#cc339f;text-transform:capitalize}@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_tupki_113{position:relative;overflow:hidden;flex-shrink:0;border:solid 1px #d2d0db;background-color:#d2d0db}._root--24_tupki_120{width:24px;height:24px}._root--28_tupki_124{width:28px;height:28px}._root--32_tupki_128{width:32px;height:32px}._root--40_tupki_132{width:40px;height:40px}._root--48_tupki_136{width:48px;height:48px}._root--56_tupki_140{width:56px;height:56px}._root--64_tupki_144{width:64px;height:64px}._root--80_tupki_148{width:80px;height:80px}._root--120_tupki_152{width:120px;height:120px}._root--280_tupki_156{width:280px;height:280px}._root--square_tupki_160._root--24_tupki_120,._root--square_tupki_160._root--32_tupki_128{border-radius:4px}._root--square_tupki_160._root--40_tupki_132,._root--square_tupki_160._root--48_tupki_136{border-radius:8px}._root--square_tupki_160._root--56_tupki_140,._root--square_tupki_160._root--64_tupki_144{border-radius:12px}._root--square_tupki_160._root--80_tupki_148,._root--square_tupki_160._root--120_tupki_152{border-radius:16px}._root--circular_tupki_172{border-radius:50%}._root--isPlaceholder_tupki_175:before{position:absolute;z-index:1;width:100%;height:100%;background-color:#d2d0db;content:"";opacity:.4}._root_tupki_113 img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}@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")}._switch_v0nwj_106{position:relative;display:inline-block;width:48px;height:28px}._switch_v0nwj_106 ._slider_v0nwj_112{z-index:1;display:block;width:100%;height:100%;border-radius:999px;background-color:#d2d0db;box-shadow:inset 0 0 0 1.5px #a6a2b6;transition:.4s}._switch_v0nwj_106 ._slider_v0nwj_112:before{position:absolute;right:0;bottom:2px;width:24px;height:24px;border-radius:999px;background-color:#fff;content:"";transform:translate(calc(-100% + 2px));transition:.4s}._switch_v0nwj_106 ._slider_v0nwj_112._focusVisible_v0nwj_134{box-shadow:inset 0 0 0 1.5px #43adc3!important}._switch_v0nwj_106 input{position:absolute;z-index:2;width:48px;height:28px;opacity:0}._switch_v0nwj_106 input:not(:disabled){cursor:pointer}._switch_v0nwj_106 input:hover+._slider_v0nwj_112{box-shadow:inset 0 0 0 1.5px #635c80}._switch_v0nwj_106 input:disabled+._slider_v0nwj_112{opacity:.4}._switch_v0nwj_106 input:checked+._slider_v0nwj_112{background-color:#201649;box-shadow:inset 0 0 0 1.5px #201649}._switch_v0nwj_106 input:checked+._slider_v0nwj_112:before{transform:translate(-2px)}._switch_v0nwj_106 input:checked:hover+._slider_v0nwj_112{background-color:#635c80;box-shadow:inset 0 0 0 1.5px #635c80}@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")}._toggleInput_o6ptp_106{display:flex;width:100%;align-items:center;padding:8px 16px;background-color:#fff;color:#635c80;cursor:pointer;gap:12px}._toggleInput_o6ptp_106 svg{flex-shrink:0}._toggleInput_o6ptp_106 ._textLabel_o6ptp_119{flex-grow:1}._toggleInput_o6ptp_106 ._switch_o6ptp_122{flex-shrink:0}._toggleInput--checked_o6ptp_125{color:#201649}._toggleInput--disabled_o6ptp_128{cursor:unset}._toggleInput--withBorder_o6ptp_131{padding:12px 16px;border-radius:16px;box-shadow:inset 0 0 0 1px #d2d0db}