@goodhood-web/ui 1.6.0-development.35 → 1.6.0-development.36

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
@@ -100,4 +100,4 @@ ${e}</tr>
100
100
  `}tablecell(e,n){const r=n.header?"th":"td";return(n.align?`<${r} align="${n.align}">`:`<${r}>`)+e+`</${r}>
101
101
  `}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=fo(e);if(o===null)return r;e=o;let i='<a href="'+e+'"';return n&&(i+=' title="'+n+'"'),i+=">"+r+"</a>",i}image(e,n,r){const o=fo(e);if(o===null)return r;e=o;let i=`<img src="${e}" alt="${r}"`;return n&&(i+=` title="${n}"`),i+=">",i}text(e){return e}}class vr{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 Ve{constructor(e){me(this,"options");me(this,"renderer");me(this,"textRenderer");this.options=e||tt,this.options.renderer=this.options.renderer||new rn,this.renderer=this.options.renderer,this.renderer.options=this.options,this.textRenderer=new vr}static parse(e,n){return new Ve(n).parse(e)}static parseInline(e,n){return new Ve(n).parseInline(e)}parse(e,n=!0){let r="";for(let o=0;o<e.length;o++){const i=e[o];if(this.options.extensions&&this.options.extensions.renderers&&this.options.extensions.renderers[i.type]){const s=i,l=this.options.extensions.renderers[s.type].call({parser:this},s);if(l!==!1||!["space","hr","heading","code","table","blockquote","list","html","paragraph","text"].includes(s.type)){r+=l||"";continue}}switch(i.type){case"space":continue;case"hr":{r+=this.renderer.hr();continue}case"heading":{const s=i;r+=this.renderer.heading(this.parseInline(s.tokens),s.depth,Zf(this.parseInline(s.tokens,this.textRenderer)));continue}case"code":{const s=i;r+=this.renderer.code(s.text,s.lang,!!s.escaped);continue}case"table":{const s=i;let l="",c="";for(let u=0;u<s.header.length;u++)c+=this.renderer.tablecell(this.parseInline(s.header[u].tokens),{header:!0,align:s.align[u]});l+=this.renderer.tablerow(c);let f="";for(let u=0;u<s.rows.length;u++){const h=s.rows[u];c="";for(let p=0;p<h.length;p++)c+=this.renderer.tablecell(this.parseInline(h[p].tokens),{header:!1,align:s.align[p]});f+=this.renderer.tablerow(c)}r+=this.renderer.table(l,f);continue}case"blockquote":{const s=i,l=this.parse(s.tokens);r+=this.renderer.blockquote(l);continue}case"list":{const s=i,l=s.ordered,c=s.start,f=s.loose;let u="";for(let h=0;h<s.items.length;h++){const p=s.items[h],m=p.checked,w=p.task;let b="";if(p.task){const C=this.renderer.checkbox(!!m);f?p.tokens.length>0&&p.tokens[0].type==="paragraph"?(p.tokens[0].text=C+" "+p.tokens[0].text,p.tokens[0].tokens&&p.tokens[0].tokens.length>0&&p.tokens[0].tokens[0].type==="text"&&(p.tokens[0].tokens[0].text=C+" "+p.tokens[0].tokens[0].text)):p.tokens.unshift({type:"text",text:C+" "}):b+=C+" "}b+=this.parse(p.tokens,f),u+=this.renderer.listitem(b,w,!!m)}r+=this.renderer.list(u,l,c);continue}case"html":{const s=i;r+=this.renderer.html(s.text,s.block);continue}case"paragraph":{const s=i;r+=this.renderer.paragraph(this.parseInline(s.tokens));continue}case"text":{let s=i,l=s.tokens?this.parseInline(s.tokens):s.text;for(;o+1<e.length&&e[o+1].type==="text";)s=e[++o],l+=`
102
102
  `+(s.tokens?this.parseInline(s.tokens):s.text);r+=n?this.renderer.paragraph(l):l;continue}default:{const s='Token with "'+i.type+'" type was not found.';if(this.options.silent)return console.error(s),"";throw new Error(s)}}}return r}parseInline(e,n){n=n||this.renderer;let r="";for(let o=0;o<e.length;o++){const i=e[o];if(this.options.extensions&&this.options.extensions.renderers&&this.options.extensions.renderers[i.type]){const s=this.options.extensions.renderers[i.type].call({parser:this},i);if(s!==!1||!["escape","html","link","image","strong","em","codespan","br","del","text"].includes(i.type)){r+=s||"";continue}}switch(i.type){case"escape":{const s=i;r+=n.text(s.text);break}case"html":{const s=i;r+=n.html(s.text);break}case"link":{const s=i;r+=n.link(s.href,s.title,this.parseInline(s.tokens,n));break}case"image":{const s=i;r+=n.image(s.href,s.title,s.text);break}case"strong":{const s=i;r+=n.strong(this.parseInline(s.tokens,n));break}case"em":{const s=i;r+=n.em(this.parseInline(s.tokens,n));break}case"codespan":{const s=i;r+=n.codespan(s.text);break}case"br":{r+=n.br();break}case"del":{const s=i;r+=n.del(this.parseInline(s.tokens,n));break}case"text":{const s=i;r+=n.text(s.text);break}default:{const s='Token with "'+i.type+'" type was not found.';if(this.options.silent)return console.error(s),"";throw new Error(s)}}}return r}}class _t{constructor(e){me(this,"options");this.options=e||tt}preprocess(e){return e}postprocess(e){return e}processAllTokens(e){return e}}me(_t,"passThroughHooks",new Set(["preprocess","postprocess","processAllTokens"]));var St,Kn,on,ms;class bd{constructor(...e){Cn(this,St);Cn(this,on);me(this,"defaults",dr());me(this,"options",this.setOptions);me(this,"parse",Bt(this,St,Kn).call(this,Oe.lex,Ve.parse));me(this,"parseInline",Bt(this,St,Kn).call(this,Oe.lexInline,Ve.parseInline));me(this,"Parser",Ve);me(this,"Renderer",rn);me(this,"TextRenderer",vr);me(this,"Lexer",Oe);me(this,"Tokenizer",tn);me(this,"Hooks",_t);this.use(...e)}walkTokens(e,n){var o,i;let r=[];for(const s of e)switch(r=r.concat(n.call(this,s)),s.type){case"table":{const l=s;for(const c of l.header)r=r.concat(this.walkTokens(c.tokens,n));for(const c of l.rows)for(const f of c)r=r.concat(this.walkTokens(f.tokens,n));break}case"list":{const l=s;r=r.concat(this.walkTokens(l.items,n));break}default:{const l=s;(i=(o=this.defaults.extensions)==null?void 0:o.childTokens)!=null&&i[l.type]?this.defaults.extensions.childTokens[l.type].forEach(c=>{const f=l[c].flat(1/0);r=r.concat(this.walkTokens(f,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(i=>{if(!i.name)throw new Error("extension name required");if("renderer"in i){const s=n.renderers[i.name];s?n.renderers[i.name]=function(...l){let c=i.renderer.apply(this,l);return c===!1&&(c=s.apply(this,l)),c}:n.renderers[i.name]=i.renderer}if("tokenizer"in i){if(!i.level||i.level!=="block"&&i.level!=="inline")throw new Error("extension level must be 'block' or 'inline'");const s=n[i.level];s?s.unshift(i.tokenizer):n[i.level]=[i.tokenizer],i.start&&(i.level==="block"?n.startBlock?n.startBlock.push(i.start):n.startBlock=[i.start]:i.level==="inline"&&(n.startInline?n.startInline.push(i.start):n.startInline=[i.start]))}"childTokens"in i&&i.childTokens&&(n.childTokens[i.name]=i.childTokens)}),o.extensions=n),r.renderer){const i=this.defaults.renderer||new rn(this.defaults);for(const s in r.renderer){if(!(s in i))throw new Error(`renderer '${s}' does not exist`);if(s==="options")continue;const l=s,c=r.renderer[l],f=i[l];i[l]=(...u)=>{let h=c.apply(i,u);return h===!1&&(h=f.apply(i,u)),h||""}}o.renderer=i}if(r.tokenizer){const i=this.defaults.tokenizer||new tn(this.defaults);for(const s in r.tokenizer){if(!(s in i))throw new Error(`tokenizer '${s}' does not exist`);if(["options","rules","lexer"].includes(s))continue;const l=s,c=r.tokenizer[l],f=i[l];i[l]=(...u)=>{let h=c.apply(i,u);return h===!1&&(h=f.apply(i,u)),h}}o.tokenizer=i}if(r.hooks){const i=this.defaults.hooks||new _t;for(const s in r.hooks){if(!(s in i))throw new Error(`hook '${s}' does not exist`);if(s==="options")continue;const l=s,c=r.hooks[l],f=i[l];_t.passThroughHooks.has(s)?i[l]=u=>{if(this.defaults.async)return Promise.resolve(c.call(i,u)).then(p=>f.call(i,p));const h=c.call(i,u);return f.call(i,h)}:i[l]=(...u)=>{let h=c.apply(i,u);return h===!1&&(h=f.apply(i,u)),h}}o.hooks=i}if(r.walkTokens){const i=this.defaults.walkTokens,s=r.walkTokens;o.walkTokens=function(l){let c=[];return c.push(s.call(this,l)),i&&(c=c.concat(i.call(this,l))),c}}this.defaults={...this.defaults,...o}}),this}setOptions(e){return this.defaults={...this.defaults,...e},this}lexer(e,n){return Oe.lex(e,n??this.defaults)}parser(e,n){return Ve.parse(e,n??this.defaults)}}St=new WeakSet,Kn=function(e,n){return(r,o)=>{const i={...o},s={...this.defaults,...i};this.defaults.async===!0&&i.async===!1&&(s.silent||console.warn("marked(): The async option was set to true by an extension. The async: false option sent to parse will be ignored."),s.async=!0);const l=Bt(this,on,ms).call(this,!!s.silent,!!s.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(s.hooks&&(s.hooks.options=s),s.async)return Promise.resolve(s.hooks?s.hooks.preprocess(r):r).then(c=>e(c,s)).then(c=>s.hooks?s.hooks.processAllTokens(c):c).then(c=>s.walkTokens?Promise.all(this.walkTokens(c,s.walkTokens)).then(()=>c):c).then(c=>n(c,s)).then(c=>s.hooks?s.hooks.postprocess(c):c).catch(l);try{s.hooks&&(r=s.hooks.preprocess(r));let c=e(r,s);s.hooks&&(c=s.hooks.processAllTokens(c)),s.walkTokens&&this.walkTokens(c,s.walkTokens);let f=n(c,s);return s.hooks&&(f=s.hooks.postprocess(f)),f}catch(c){return l(c)}}},on=new WeakSet,ms=function(e,n){return r=>{if(r.message+=`
103
- Please report this to https://github.com/markedjs/marked.`,e){const o="<p>An error occurred:</p><pre>"+Se(r.message+"",!0)+"</pre>";return n?Promise.resolve(o):o}if(n)return Promise.reject(r);throw r}};const et=new bd;function fe(t,e){return et.parse(t,e)}fe.options=fe.setOptions=function(t){return et.setOptions(t),fe.defaults=et.defaults,ss(fe.defaults),fe};fe.getDefaults=dr;fe.defaults=tt;fe.use=function(...t){return et.use(...t),fe.defaults=et.defaults,ss(fe.defaults),fe};fe.walkTokens=function(t,e){return et.walkTokens(t,e)};fe.parseInline=et.parseInline;fe.Parser=Ve;fe.parser=Ve.parse;fe.Renderer=rn;fe.TextRenderer=vr;fe.Lexer=Oe;fe.lexer=Oe.lex;fe.Tokenizer=tn;fe.Hooks=_t;fe.parse=fe;fe.options;fe.setOptions;fe.use;fe.walkTokens;fe.parseInline;Ve.parse;Oe.lex;function xd({className:t,text:e}){return v.jsx("span",{className:t,dangerouslySetInnerHTML:{__html:fe.parse(e)}})}const kd="_menuItem_fkcvm_106",yd="_highlightFrame_fkcvm_120",_d="_rightIcon_fkcvm_128",Cd="_leftIcon_fkcvm_136",vt={menuItem:kd,highlightFrame:yd,rightIcon:_d,"menuItem--selected":"_menuItem--selected_fkcvm_133",leftIcon:Cd},Ed=({className:t,href:e,isSelected:n,labelPillText:r,leftIcon:o,onClick:i,rightIcon:s,role:l,text:c})=>v.jsx(Ue,{role:l,onClick:i,className:ne(t,vt.menuItem,{[vt["menuItem--selected"]]:n}),...e?{href:e}:{},children:v.jsxs("span",{className:ne(vt.highlightFrame),children:[v.jsx("span",{className:vt.leftIcon,children:o}),v.jsx(we,{type:n?"h5":"body-large",as:"span",children:c}),r&&v.jsx(os,{label:r,size:"medium"}),s&&v.jsx("span",{className:vt.rightIcon,children:s})]})}),Rd="_backdrop_mb7hx_106",Sd={backdrop:Rd},gs=g.forwardRef((t,e)=>v.jsx("div",{ref:e,...t,className:Sd.backdrop}));gs.displayName="Backdrop";const Md="_modal_ss4j4_106",Td="_modalWrapper_ss4j4_114",$d="_modalHeader_ss4j4_126",Ld="_modalFooter_ss4j4_148",bt={modal:Md,modalWrapper:Td,modalHeader:$d,modalFooter:Ld,"modalFooter--alwaysVisible":"_modalFooter--alwaysVisible_ss4j4_156"},Pd=({ariaLabel:t,ariaLabelledBy:e,closeButtonText:n="Abbrechen",modalBody:r,modalFooter:o,modalHeader:i,onClose:s,open:l})=>v.jsx(Qo,{"aria-label":t,"aria-labelledby":e,open:l,onClose:s,slots:{backdrop:gs},className:bt.modal,children:v.jsxs("div",{className:bt.modalWrapper,children:[v.jsx("div",{className:bt.modalHeader,children:i}),r,v.jsxs("div",{className:ne(bt.modalFooter,{[bt["modalFooter--alwaysVisible"]]:!!o}),children:[v.jsx(fr,{onClick:s,color:"blue",size:"large",text:n}),o]})]})}),Id="_navBar_eadjz_106",Ad={navBar:Id},Bd=({children:t,onChange:e,value:n})=>{const[r,o]=g.useState(n||""),i=s=>{e(s),o(s)};return v.jsx("ul",{className:Ad.navBar,children:g.Children.map(t,s=>g.cloneElement(s,{active:s.props.id.toLowerCase()===r.toLowerCase(),onChange:i}))})},Od="_listItem_iil8v_106",Vd="_navItem_iil8v_106",Fd="_selector_iil8v_120",Nd="_label_iil8v_141",xt={listItem:Od,navItem:Vd,selector:Fd,"navItem--active":"_navItem--active_iil8v_128",label:Nd},jd=({active:t,ariaLabel:e,icon:n,id:r,label:o,onChange:i})=>{const s=()=>{i&&i(r)};return v.jsx("li",{className:xt.listItem,children:v.jsxs(Ue,{className:ne(xt.navItem,{[xt["navItem--active"]]:t}),onClick:s,"aria-label":e,children:[v.jsx("div",{className:xt.selector}),n,o&&v.jsx(we,{className:xt.label,type:"detail-medium",as:"span",children:o})]})})},Wd="_root_1j4ie_113",Wt={root:Wd,"root--24":"_root--24_1j4ie_120","root--28":"_root--28_1j4ie_124","root--32":"_root--32_1j4ie_128","root--40":"_root--40_1j4ie_132","root--48":"_root--48_1j4ie_136","root--56":"_root--56_1j4ie_140","root--64":"_root--64_1j4ie_144","root--80":"_root--80_1j4ie_148","root--120":"_root--120_1j4ie_152","root--280":"_root--280_1j4ie_156","root--square":"_root--square_1j4ie_160","root--circular":"_root--circular_1j4ie_172","root--isPlaceholder":"_root--isPlaceholder_1j4ie_175"},ws=({alt:t,isPlaceholder:e,shape:n,size:r,src:o})=>{const i=Wt["root--isPlaceholder"];return v.jsx("div",{className:ne(Wt.root,Wt[`root--${r}`],Wt[`root--${n}`],{[i]:e}),children:o&&v.jsx(rs,{src:o,alt:t})})},Dd="_root_1mgrn_106",Zd="_thumbnail_1mgrn_113",zd="_iconWrapper_1mgrn_117",Hd="_detail_1mgrn_127",qd="_notificationText_1mgrn_137",Ud="_seen_1mgrn_142",Yd="_bubble_1mgrn_145",De={root:Dd,thumbnail:Zd,iconWrapper:zd,detail:Hd,notificationText:qd,seen:Ud,bubble:Yd},Kd=({defaultIcon:t,imgSrc:e,isSeen:n=!1,linkText:r,onNotificationClick:o,timeAgo:i,title:s})=>v.jsxs("div",{className:ne(De.root,{[De.seen]:n}),children:[e?v.jsx(ws,{alt:s,src:e,shape:"square",size:"56",className:De.thumbnail}):v.jsx("div",{className:De.iconWrapper,children:t}),v.jsxs("div",{className:De.detail,children:[v.jsx(we,{type:"detail-medium",children:s}),v.jsx(Ue,{onClick:o,className:De.button,children:v.jsx(we,{type:"h5",className:De.notificationText,children:r})}),v.jsx(we,{type:"detail-medium",children:i})]}),v.jsx("div",{className:De.bubble})]}),Gd="_wrapper_r4p4i_106",Dt={wrapper:Gd,"wrapper--large":"_wrapper--large_r4p4i_117","wrapper--small":"_wrapper--small_r4p4i_120","wrapper--iconWrapper":"_wrapper--iconWrapper_r4p4i_124"},Xd=({className:t,icon:e,size:n})=>{const r=ft(e,[Be]);return v.jsx("div",{className:ne(Dt.wrapper,t,{[Dt[`wrapper--${n}`]]:n}),"data-testid":"placeholder-thumbnail",children:v.jsx("div",{className:ne(Dt.wrapper,{[Dt["wrapper--iconWrapper"]]:n==="large"}),children:r})})},Jd="_base_myrx5_106",Qd={base:Jd};var Ht=(t=>(t[t.lg=16]="lg",t[t.md=12]="md",t[t.sm=8]="sm",t[t.xl=24]="xl",t))(Ht||{});const vs=g.forwardRef(({anchor:t,children:e,container:n,id:r,offset:o="sm",open:i,placement:s,strategy:l="fixed"},c)=>{let f=Ht.sm;return typeof o=="object"?f=o:Ht[o]&&(f=Ht[o]),v.jsx(Xo,{ref:c,className:Qd.base,id:r,open:i,anchor:t,offset:f,placement:s,container:n,strategy:l,children:e})});vs.displayName="Popup";const e5="_radio_yaqqw_106",go={radio:e5,"radio--small":"_radio--small_yaqqw_124"};function t5({checked:t,disabled:e,id:n,label:r,onChange:o,size:i,value:s}){const l=go[`radio--${i}`];return v.jsxs("span",{className:go.radio,children:[v.jsx("input",{checked:t,onChange:o,"aria-disabled":e,"aria-label":r,className:l,value:s,disabled:e,type:"radio",role:"radio",id:n}),v.jsx("label",{htmlFor:n,className:l,children:r})]})}const n5="_radiobuttoncluster_1sycx_106",r5={radiobuttoncluster:n5};function o5(t){const{children:e,disabled:n,onChange:r,value:o}=t;function i(l){r(l)}const s=g.Children.map(e,l=>g.cloneElement(l,{checked:o===l.props.value,onChange:i}));return v.jsx(ns,{disabled:n,className:r5.radiobuttoncluster,children:s})}const s5="_root_f2d4f_106",i5="_toggle_f2d4f_111",a5="_selectedLabel_f2d4f_122",l5="_label_f2d4f_131",c5="_disabled_f2d4f_137",u5="_filled_f2d4f_153",f5="_error_f2d4f_183",d5="_icon_f2d4f_192",h5="_expanded_f2d4f_196",p5="_hidden_f2d4f_200",m5="_option_f2d4f_204",g5="_selected_f2d4f_122",w5="_dropdown_f2d4f_234",v5="_errorMessage_f2d4f_243",Re={root:s5,toggle:i5,selectedLabel:a5,label:l5,disabled:c5,filled:u5,error:f5,icon:d5,expanded:h5,hidden:p5,option:m5,selected:g5,dropdown:w5,errorMessage:v5},b5=t=>{const e=[];return g.Children.forEach(t,n=>{if(g.isValidElement(n)&&n.type==="option"){const r=n.props.value,o=n.props.label||n.props.children;e.push({label:o,value:r})}}),e};function x5(t,e){return t.find(n=>n.value===e)}function k5({options:t,value:e}){const n=x5(t,e);return n?n.label:null}function y5({child:t,isSelected:e}){const{label:n,value:r}=t,{getRootProps:o}=c1({disabled:!1,label:n,value:r});return v.jsx("option",{value:r==null?void 0:r.toString(),...o(),className:ne(Re.option,{[Re.selected]:e}),children:n})}function _5(t){const{children:e,disabled:n,error:r,errorMessage:o,filled:i=!1,onChange:s,placeholder:l,value:c}=t,f=g.useRef(null),[u,h]=g.useState(!1),p=(y,k)=>{s(k)},{contextValue:m,getButtonProps:w,getListboxProps:b}=h1({disabled:n,listboxRef:f,onChange:p,onOpenChange:h,open:u,value:c}),C=b5(e),E=k5({options:C,value:c});return v.jsxs("div",{className:Re.root,children:[v.jsxs("div",{className:ne(Re.toggle,{[Re.filled]:i},{[Re.disabled]:n},{[Re.error]:r}),...w(),children:[v.jsx("span",{className:Re.label,children:v.jsx(we,{type:"body-large",className:ne({[Re.selectedLabel]:E}),children:E||(l??" ")})}),v.jsx(Be,{name:"chevron_down",size:"24",className:ne(Re.icon,{[Re.expanded]:u})})]}),v.jsx("div",{className:ne(Re.dropdown,{[Re.hidden]:!u}),...b(),children:v.jsx(p1,{value:m,children:C.map((y,k)=>v.jsx(y5,{child:y,isSelected:y.value===c},k))})}),r&&o&&v.jsx(we,{type:"detail-bold",className:Re.errorMessage,children:o})]})}const C5="_sticker_l4sw0_106",Fn={sticker:C5,"sticker--color-green":"_sticker--color-green_l4sw0_113","sticker--color-pink":"_sticker--color-pink_l4sw0_116","sticker--color-lavender":"_sticker--color-lavender_l4sw0_119","sticker--color-teal":"_sticker--color-teal_l4sw0_125","sticker--color-orange":"_sticker--color-orange_l4sw0_131","sticker--color-grey":"_sticker--color-grey_l4sw0_134","sticker--size-small":"_sticker--size-small_l4sw0_137","sticker--size-medium":"_sticker--size-medium_l4sw0_141","sticker--size-large":"_sticker--size-large_l4sw0_145"},E5=({color:t,icon:e,size:n})=>{const r=ne(Fn.sticker,Fn[`sticker--color-${t}`],Fn[`sticker--size-${n}`]);return v.jsx("div",{className:r,children:v.jsx(Be,{name:e})})},R5="_wrapper_8720r_106",S5="_label_8720r_110",M5="_textArea_8720r_122",T5="_textAreaContainer_8720r_150",Ze={wrapper:R5,label:S5,textArea:M5,textAreaContainer:T5,"textAreaContainer--dark":"_textAreaContainer--dark_8720r_156","textAreaContainer--light":"_textAreaContainer--light_8720r_171","textAreaContainer--medium":"_textAreaContainer--medium_8720r_189","textAreaContainer--small":"_textAreaContainer--small_8720r_210","textAreaContainer--error":"_textAreaContainer--error_8720r_230","textAreaContainer--errorMessage":"_textAreaContainer--errorMessage_8720r_248"},$5=({colorScheme:t,errorMessage:e,id:n,label:r,name:o,ref:i,size:s,...l})=>{const{getInputProps:c,getRootProps:f}=Io({inputRef:i,...l}),u=c(),{disabled:h}=u,p=!!e,m=Ze[`textAreaContainer--${t}`],w=Ze[`textAreaContainer--${s}`];return v.jsxs("div",{className:Ze.wrapper,children:[v.jsxs("div",{className:ne(Ze.textAreaContainer,w,m,{[Ze["textAreaContainer--error"]]:p}),...f(),children:[v.jsx("textarea",{...u,id:n,name:o,"aria-disabled":h,"aria-label":r,className:ne(Ze.textArea),placeholder:""}),v.jsx("label",{className:Ze.label,htmlFor:n,children:v.jsx(we,{type:s==="medium"?"body-large":"body-regular",children:r})})]}),p&&v.jsx(we,{className:Ze["textAreaContainer--errorMessage"],type:"detail-bold",children:e})]})},L5="_wrapper_1crfz_106",P5="_textInputContainer_1crfz_109",I5="_textInput_1crfz_109",Ge={wrapper:L5,textInputContainer:P5,textInput:I5,"textInput--medium":"_textInput--medium_1crfz_149","textInput--small":"_textInput--small_1crfz_169","textInput--dark":"_textInput--dark_1crfz_188","textInput--light":"_textInput--light_1crfz_203","textInput--error":"_textInput--error_1crfz_221","textInputContainer--errorMessage":"_textInputContainer--errorMessage_1crfz_239"},A5=({colorScheme:t,errorMessage:e,id:n,label:r,name:o,ref:i,size:s,...l})=>{const{getInputProps:c,getRootProps:f}=Io({inputRef:i,...l}),u=c(),{disabled:h}=u,p=!!e,m=Ge[`textInput--${t}`],w=Ge[`textInput--${s}`];return v.jsxs("div",{className:Ge.wrapper,children:[v.jsxs("div",{className:Ge.textInputContainer,...f(),children:[v.jsx("input",{...u,id:n,type:"text",name:o,"aria-disabled":h,"aria-label":r,className:ne(Ge.textInput,w,m,{[Ge["textInput--error"]]:p}),placeholder:""}),v.jsx("label",{htmlFor:n,children:v.jsx(we,{type:s==="medium"?"body-large":"body-regular",children:r})})]}),p&&v.jsx(we,{className:Ge["textInputContainer--errorMessage"],type:"detail-bold",children:e})]})},B5="_tile_phuce_106",O5="_tile__value_phuce_126",Zt={tile:B5,"tile--fullWidth":"_tile--fullWidth_phuce_119","tile--icon":"_tile--icon_phuce_122",tile__value:O5},V5=({fullWidth:t=!1,icon:e,primaryText:n,secondaryText:r,...o})=>v.jsxs(Ue,{...o,className:ne(Zt.tile,{[Zt["tile--icon"]]:e,[Zt["tile--fullWidth"]]:t}),children:[e&&v.jsx(Be,{name:e}),n&&v.jsx(we,{type:"detail-bold",className:Zt.tile__value,children:n}),r&&v.jsx(we,{type:"detail-medium",children:r})]}),F5="_slider_1cu02_112",N5="_focusVisible_1cu02_134",Nn={switch:"_switch_1cu02_106",slider:F5,focusVisible:N5},bs=t=>{const{checked:e,disabled:n,focusVisible:r,getInputProps:o}=m1(t),{className:i,id:s}=t;return v.jsxs("span",{className:ne(Nn.switch,i),children:[v.jsx("input",{...o(),type:"checkbox","aria-checked":e,"aria-disabled":n,role:"switch",id:s,"data-testid":"toggle-switch"}),v.jsx("span",{className:ne(Nn.slider,{[Nn.focusVisible]:r})})]})},j5="_toggleInput_14m6o_106",W5="_textLabel_14m6o_119",at={toggleInput:j5,textLabel:W5,switch:"_switch_14m6o_122","toggleInput--checked":"_toggleInput--checked_14m6o_125","toggleInput--disabled":"_toggleInput--disabled_14m6o_128","toggleInput--withBorder":"_toggleInput--withBorder_14m6o_131"},D5=({checked:t,defaultChecked:e,disabled:n,icon:r,label:o,onChange:i,withBorder:s})=>v.jsxs("label",{className:ne(at.toggleInput,{[at["toggleInput--withBorder"]]:s,[at["toggleInput--checked"]]:t,[at["toggleInput--disabled"]]:n}),children:[r&&v.jsx(Be,{name:r,size:"32"}),v.jsx(we,{type:"body-large",className:at.textLabel,children:o}),v.jsx(bs,{onChange:i,disabled:n,checked:t,defaultChecked:e,className:at.switch})]});exports.Accordion=Ws;exports.AccordionItem=Us;exports.Badge=$1;exports.BadgeIcon=ur;exports.BadgeLabel=pf;exports.Button=Ue;exports.ButtonPrimary=gf;exports.Card=yf;exports.CardBody=es;exports.CardHeader=ts;exports.Divider=Ef;exports.Fieldset=ns;exports.Form=Mf;exports.Icon=Be;exports.IconButton=Un;exports.Image=rs;exports.LabelPill=os;exports.Legend=Bf;exports.Loader=Ff;exports.Markdown=xd;exports.MenuItem=Ed;exports.Modal=Pd;exports.NavBar=Bd;exports.NavItem=jd;exports.NotificationBubble=qn;exports.NotificationListItem=Kd;exports.PlaceholderThumbnail=Xd;exports.Popup=vs;exports.RadioButton=t5;exports.RadioButtonCluster=o5;exports.Select=_5;exports.Sticker=E5;exports.TextArea=$5;exports.TextButton=fr;exports.TextInput=A5;exports.Thumbnail=ws;exports.Tile=V5;exports.Toggle=bs;exports.ToggleInput=D5;exports.Typography=we;
103
+ Please report this to https://github.com/markedjs/marked.`,e){const o="<p>An error occurred:</p><pre>"+Se(r.message+"",!0)+"</pre>";return n?Promise.resolve(o):o}if(n)return Promise.reject(r);throw r}};const et=new bd;function fe(t,e){return et.parse(t,e)}fe.options=fe.setOptions=function(t){return et.setOptions(t),fe.defaults=et.defaults,ss(fe.defaults),fe};fe.getDefaults=dr;fe.defaults=tt;fe.use=function(...t){return et.use(...t),fe.defaults=et.defaults,ss(fe.defaults),fe};fe.walkTokens=function(t,e){return et.walkTokens(t,e)};fe.parseInline=et.parseInline;fe.Parser=Ve;fe.parser=Ve.parse;fe.Renderer=rn;fe.TextRenderer=vr;fe.Lexer=Oe;fe.lexer=Oe.lex;fe.Tokenizer=tn;fe.Hooks=_t;fe.parse=fe;fe.options;fe.setOptions;fe.use;fe.walkTokens;fe.parseInline;Ve.parse;Oe.lex;function xd({className:t,text:e}){return v.jsx("span",{className:t,dangerouslySetInnerHTML:{__html:fe.parse(e)}})}const kd="_menuItem_fkcvm_106",yd="_highlightFrame_fkcvm_120",_d="_rightIcon_fkcvm_128",Cd="_leftIcon_fkcvm_136",vt={menuItem:kd,highlightFrame:yd,rightIcon:_d,"menuItem--selected":"_menuItem--selected_fkcvm_133",leftIcon:Cd},Ed=({className:t,href:e,isSelected:n,labelPillText:r,leftIcon:o,onClick:i,rightIcon:s,role:l,text:c})=>v.jsx(Ue,{role:l,onClick:i,className:ne(t,vt.menuItem,{[vt["menuItem--selected"]]:n}),...e?{href:e}:{},children:v.jsxs("span",{className:ne(vt.highlightFrame),children:[v.jsx("span",{className:vt.leftIcon,children:o}),v.jsx(we,{type:n?"h5":"body-large",as:"span",children:c}),r&&v.jsx(os,{label:r,size:"medium"}),s&&v.jsx("span",{className:vt.rightIcon,children:s})]})}),Rd="_backdrop_mb7hx_106",Sd={backdrop:Rd},gs=g.forwardRef((t,e)=>v.jsx("div",{ref:e,...t,className:Sd.backdrop}));gs.displayName="Backdrop";const Md="_modal_ss4j4_106",Td="_modalWrapper_ss4j4_114",$d="_modalHeader_ss4j4_126",Ld="_modalFooter_ss4j4_148",bt={modal:Md,modalWrapper:Td,modalHeader:$d,modalFooter:Ld,"modalFooter--alwaysVisible":"_modalFooter--alwaysVisible_ss4j4_156"},Pd=({ariaLabel:t,ariaLabelledBy:e,closeButtonText:n="Abbrechen",modalBody:r,modalFooter:o,modalHeader:i,onClose:s,open:l})=>v.jsx(Qo,{"aria-label":t,"aria-labelledby":e,open:l,onClose:s,slots:{backdrop:gs},className:bt.modal,children:v.jsxs("div",{className:bt.modalWrapper,children:[v.jsx("div",{className:bt.modalHeader,children:i}),r,v.jsxs("div",{className:ne(bt.modalFooter,{[bt["modalFooter--alwaysVisible"]]:!!o}),children:[v.jsx(fr,{onClick:s,color:"blue",size:"large",text:n}),o]})]})}),Id="_navBar_eadjz_106",Ad={navBar:Id},Bd=({children:t,onChange:e,value:n})=>{const[r,o]=g.useState(n||""),i=s=>{e(s),o(s)};return v.jsx("ul",{className:Ad.navBar,children:g.Children.map(t,s=>g.cloneElement(s,{active:s.props.id.toLowerCase()===r.toLowerCase(),onChange:i}))})},Od="_listItem_iil8v_106",Vd="_navItem_iil8v_106",Fd="_selector_iil8v_120",Nd="_label_iil8v_141",xt={listItem:Od,navItem:Vd,selector:Fd,"navItem--active":"_navItem--active_iil8v_128",label:Nd},jd=({active:t,ariaLabel:e,icon:n,id:r,label:o,onChange:i})=>{const s=()=>{i&&i(r)};return v.jsx("li",{className:xt.listItem,children:v.jsxs(Ue,{className:ne(xt.navItem,{[xt["navItem--active"]]:t}),onClick:s,"aria-label":e,children:[v.jsx("div",{className:xt.selector}),n,o&&v.jsx(we,{className:xt.label,type:"detail-medium",as:"span",children:o})]})})},Wd="_root_1j4ie_113",Wt={root:Wd,"root--24":"_root--24_1j4ie_120","root--28":"_root--28_1j4ie_124","root--32":"_root--32_1j4ie_128","root--40":"_root--40_1j4ie_132","root--48":"_root--48_1j4ie_136","root--56":"_root--56_1j4ie_140","root--64":"_root--64_1j4ie_144","root--80":"_root--80_1j4ie_148","root--120":"_root--120_1j4ie_152","root--280":"_root--280_1j4ie_156","root--square":"_root--square_1j4ie_160","root--circular":"_root--circular_1j4ie_172","root--isPlaceholder":"_root--isPlaceholder_1j4ie_175"},ws=({alt:t,isPlaceholder:e,shape:n,size:r,src:o})=>{const i=Wt["root--isPlaceholder"];return v.jsx("div",{className:ne(Wt.root,Wt[`root--${r}`],Wt[`root--${n}`],{[i]:e}),children:o&&v.jsx(rs,{src:o,alt:t})})},Dd="_root_1mgrn_106",Zd="_thumbnail_1mgrn_113",zd="_iconWrapper_1mgrn_117",Hd="_detail_1mgrn_127",qd="_notificationText_1mgrn_137",Ud="_seen_1mgrn_142",Yd="_bubble_1mgrn_145",De={root:Dd,thumbnail:Zd,iconWrapper:zd,detail:Hd,notificationText:qd,seen:Ud,bubble:Yd},Kd=({defaultIcon:t,imgSrc:e,isSeen:n=!1,linkText:r,onNotificationClick:o,timeAgo:i,title:s})=>v.jsxs("div",{className:ne(De.root,{[De.seen]:n}),children:[e?v.jsx(ws,{alt:s,src:e,shape:"square",size:"56",className:De.thumbnail}):v.jsx("div",{className:De.iconWrapper,children:t}),v.jsxs("div",{className:De.detail,children:[v.jsx(we,{type:"detail-medium",children:s}),v.jsx(Ue,{onClick:o,className:De.button,children:v.jsx(we,{type:"h5",className:De.notificationText,children:r})}),v.jsx(we,{type:"detail-medium",children:i})]}),v.jsx("div",{className:De.bubble})]}),Gd="_wrapper_r4p4i_106",Dt={wrapper:Gd,"wrapper--large":"_wrapper--large_r4p4i_117","wrapper--small":"_wrapper--small_r4p4i_120","wrapper--iconWrapper":"_wrapper--iconWrapper_r4p4i_124"},Xd=({className:t,icon:e,size:n})=>{const r=ft(e,[Be]);return v.jsx("div",{className:ne(Dt.wrapper,t,{[Dt[`wrapper--${n}`]]:n}),"data-testid":"placeholder-thumbnail",children:v.jsx("div",{className:ne(Dt.wrapper,{[Dt["wrapper--iconWrapper"]]:n==="large"}),children:r})})},Jd="_base_myrx5_106",Qd={base:Jd};var Ht=(t=>(t[t.lg=16]="lg",t[t.md=12]="md",t[t.sm=8]="sm",t[t.xl=24]="xl",t))(Ht||{});const vs=g.forwardRef(({anchor:t,children:e,container:n,id:r,offset:o="sm",open:i,placement:s,strategy:l="fixed"},c)=>{let f=Ht.sm;return typeof o=="object"?f=o:Ht[o]&&(f=Ht[o]),v.jsx(Xo,{ref:c,className:Qd.base,id:r,open:i,anchor:t,offset:f,placement:s,container:n,strategy:l,children:e})});vs.displayName="Popup";const e5="_radio_yaqqw_106",go={radio:e5,"radio--small":"_radio--small_yaqqw_124"};function t5({checked:t,disabled:e,id:n,label:r,onChange:o,size:i,value:s}){const l=go[`radio--${i}`];return v.jsxs("span",{className:go.radio,children:[v.jsx("input",{checked:t,onChange:o,"aria-disabled":e,"aria-label":r,className:l,value:s,disabled:e,type:"radio",role:"radio",id:n}),v.jsx("label",{htmlFor:n,className:l,children:r})]})}const n5="_radiobuttoncluster_1sycx_106",r5={radiobuttoncluster:n5};function o5(t){const{children:e,disabled:n,onChange:r,value:o}=t;function i(l){r(l)}const s=g.Children.map(e,l=>g.cloneElement(l,{checked:o===l.props.value,onChange:i}));return v.jsx(ns,{disabled:n,className:r5.radiobuttoncluster,children:s})}const s5="_root_18ryf_106",i5="_toggle_18ryf_111",a5="_selectedLabel_18ryf_122",l5="_label_18ryf_131",c5="_disabled_18ryf_137",u5="_filled_18ryf_153",f5="_error_18ryf_183",d5="_icon_18ryf_192",h5="_expanded_18ryf_196",p5="_hidden_18ryf_200",m5="_option_18ryf_204",g5="_selected_18ryf_122",w5="_dropdown_18ryf_234",v5="_errorMessage_18ryf_244",Re={root:s5,toggle:i5,selectedLabel:a5,label:l5,disabled:c5,filled:u5,error:f5,icon:d5,expanded:h5,hidden:p5,option:m5,selected:g5,dropdown:w5,errorMessage:v5},b5=t=>{const e=[];return g.Children.forEach(t,n=>{if(g.isValidElement(n)&&n.type==="option"){const r=n.props.value,o=n.props.label||n.props.children;e.push({label:o,value:r})}}),e};function x5(t,e){return t.find(n=>n.value===e)}function k5({options:t,value:e}){const n=x5(t,e);return n?n.label:null}function y5({child:t,isSelected:e}){const{label:n,value:r}=t,{getRootProps:o}=c1({disabled:!1,label:n,value:r});return v.jsx("option",{value:r==null?void 0:r.toString(),...o(),className:ne(Re.option,{[Re.selected]:e}),children:n})}function _5(t){const{children:e,disabled:n,error:r,errorMessage:o,filled:i=!1,onChange:s,placeholder:l,value:c}=t,f=g.useRef(null),[u,h]=g.useState(!1),p=(y,k)=>{s(k)},{contextValue:m,getButtonProps:w,getListboxProps:b}=h1({disabled:n,listboxRef:f,onChange:p,onOpenChange:h,open:u,value:c}),C=b5(e),E=k5({options:C,value:c});return v.jsxs("div",{className:Re.root,children:[v.jsxs("div",{className:ne(Re.toggle,{[Re.filled]:i},{[Re.disabled]:n},{[Re.error]:r}),...w(),children:[v.jsx("span",{className:Re.label,children:v.jsx(we,{type:"body-large",className:ne({[Re.selectedLabel]:E}),children:E||(l??" ")})}),v.jsx(Be,{name:"chevron_down",size:"24",className:ne(Re.icon,{[Re.expanded]:u})})]}),v.jsx("div",{className:ne(Re.dropdown,{[Re.hidden]:!u}),...b(),children:v.jsx(p1,{value:m,children:C.map((y,k)=>v.jsx(y5,{child:y,isSelected:y.value===c},k))})}),r&&o&&v.jsx(we,{type:"detail-bold",className:Re.errorMessage,children:o})]})}const C5="_sticker_l4sw0_106",Fn={sticker:C5,"sticker--color-green":"_sticker--color-green_l4sw0_113","sticker--color-pink":"_sticker--color-pink_l4sw0_116","sticker--color-lavender":"_sticker--color-lavender_l4sw0_119","sticker--color-teal":"_sticker--color-teal_l4sw0_125","sticker--color-orange":"_sticker--color-orange_l4sw0_131","sticker--color-grey":"_sticker--color-grey_l4sw0_134","sticker--size-small":"_sticker--size-small_l4sw0_137","sticker--size-medium":"_sticker--size-medium_l4sw0_141","sticker--size-large":"_sticker--size-large_l4sw0_145"},E5=({color:t,icon:e,size:n})=>{const r=ne(Fn.sticker,Fn[`sticker--color-${t}`],Fn[`sticker--size-${n}`]);return v.jsx("div",{className:r,children:v.jsx(Be,{name:e})})},R5="_wrapper_8720r_106",S5="_label_8720r_110",M5="_textArea_8720r_122",T5="_textAreaContainer_8720r_150",Ze={wrapper:R5,label:S5,textArea:M5,textAreaContainer:T5,"textAreaContainer--dark":"_textAreaContainer--dark_8720r_156","textAreaContainer--light":"_textAreaContainer--light_8720r_171","textAreaContainer--medium":"_textAreaContainer--medium_8720r_189","textAreaContainer--small":"_textAreaContainer--small_8720r_210","textAreaContainer--error":"_textAreaContainer--error_8720r_230","textAreaContainer--errorMessage":"_textAreaContainer--errorMessage_8720r_248"},$5=({colorScheme:t,errorMessage:e,id:n,label:r,name:o,ref:i,size:s,...l})=>{const{getInputProps:c,getRootProps:f}=Io({inputRef:i,...l}),u=c(),{disabled:h}=u,p=!!e,m=Ze[`textAreaContainer--${t}`],w=Ze[`textAreaContainer--${s}`];return v.jsxs("div",{className:Ze.wrapper,children:[v.jsxs("div",{className:ne(Ze.textAreaContainer,w,m,{[Ze["textAreaContainer--error"]]:p}),...f(),children:[v.jsx("textarea",{...u,id:n,name:o,"aria-disabled":h,"aria-label":r,className:ne(Ze.textArea),placeholder:""}),v.jsx("label",{className:Ze.label,htmlFor:n,children:v.jsx(we,{type:s==="medium"?"body-large":"body-regular",children:r})})]}),p&&v.jsx(we,{className:Ze["textAreaContainer--errorMessage"],type:"detail-bold",children:e})]})},L5="_wrapper_1crfz_106",P5="_textInputContainer_1crfz_109",I5="_textInput_1crfz_109",Ge={wrapper:L5,textInputContainer:P5,textInput:I5,"textInput--medium":"_textInput--medium_1crfz_149","textInput--small":"_textInput--small_1crfz_169","textInput--dark":"_textInput--dark_1crfz_188","textInput--light":"_textInput--light_1crfz_203","textInput--error":"_textInput--error_1crfz_221","textInputContainer--errorMessage":"_textInputContainer--errorMessage_1crfz_239"},A5=({colorScheme:t,errorMessage:e,id:n,label:r,name:o,ref:i,size:s,...l})=>{const{getInputProps:c,getRootProps:f}=Io({inputRef:i,...l}),u=c(),{disabled:h}=u,p=!!e,m=Ge[`textInput--${t}`],w=Ge[`textInput--${s}`];return v.jsxs("div",{className:Ge.wrapper,children:[v.jsxs("div",{className:Ge.textInputContainer,...f(),children:[v.jsx("input",{...u,id:n,type:"text",name:o,"aria-disabled":h,"aria-label":r,className:ne(Ge.textInput,w,m,{[Ge["textInput--error"]]:p}),placeholder:""}),v.jsx("label",{htmlFor:n,children:v.jsx(we,{type:s==="medium"?"body-large":"body-regular",children:r})})]}),p&&v.jsx(we,{className:Ge["textInputContainer--errorMessage"],type:"detail-bold",children:e})]})},B5="_tile_phuce_106",O5="_tile__value_phuce_126",Zt={tile:B5,"tile--fullWidth":"_tile--fullWidth_phuce_119","tile--icon":"_tile--icon_phuce_122",tile__value:O5},V5=({fullWidth:t=!1,icon:e,primaryText:n,secondaryText:r,...o})=>v.jsxs(Ue,{...o,className:ne(Zt.tile,{[Zt["tile--icon"]]:e,[Zt["tile--fullWidth"]]:t}),children:[e&&v.jsx(Be,{name:e}),n&&v.jsx(we,{type:"detail-bold",className:Zt.tile__value,children:n}),r&&v.jsx(we,{type:"detail-medium",children:r})]}),F5="_slider_1cu02_112",N5="_focusVisible_1cu02_134",Nn={switch:"_switch_1cu02_106",slider:F5,focusVisible:N5},bs=t=>{const{checked:e,disabled:n,focusVisible:r,getInputProps:o}=m1(t),{className:i,id:s}=t;return v.jsxs("span",{className:ne(Nn.switch,i),children:[v.jsx("input",{...o(),type:"checkbox","aria-checked":e,"aria-disabled":n,role:"switch",id:s,"data-testid":"toggle-switch"}),v.jsx("span",{className:ne(Nn.slider,{[Nn.focusVisible]:r})})]})},j5="_toggleInput_14m6o_106",W5="_textLabel_14m6o_119",at={toggleInput:j5,textLabel:W5,switch:"_switch_14m6o_122","toggleInput--checked":"_toggleInput--checked_14m6o_125","toggleInput--disabled":"_toggleInput--disabled_14m6o_128","toggleInput--withBorder":"_toggleInput--withBorder_14m6o_131"},D5=({checked:t,defaultChecked:e,disabled:n,icon:r,label:o,onChange:i,withBorder:s})=>v.jsxs("label",{className:ne(at.toggleInput,{[at["toggleInput--withBorder"]]:s,[at["toggleInput--checked"]]:t,[at["toggleInput--disabled"]]:n}),children:[r&&v.jsx(Be,{name:r,size:"32"}),v.jsx(we,{type:"body-large",className:at.textLabel,children:o}),v.jsx(bs,{onChange:i,disabled:n,checked:t,defaultChecked:e,className:at.switch})]});exports.Accordion=Ws;exports.AccordionItem=Us;exports.Badge=$1;exports.BadgeIcon=ur;exports.BadgeLabel=pf;exports.Button=Ue;exports.ButtonPrimary=gf;exports.Card=yf;exports.CardBody=es;exports.CardHeader=ts;exports.Divider=Ef;exports.Fieldset=ns;exports.Form=Mf;exports.Icon=Be;exports.IconButton=Un;exports.Image=rs;exports.LabelPill=os;exports.Legend=Bf;exports.Loader=Ff;exports.Markdown=xd;exports.MenuItem=Ed;exports.Modal=Pd;exports.NavBar=Bd;exports.NavItem=jd;exports.NotificationBubble=qn;exports.NotificationListItem=Kd;exports.PlaceholderThumbnail=Xd;exports.Popup=vs;exports.RadioButton=t5;exports.RadioButtonCluster=o5;exports.Select=_5;exports.Sticker=E5;exports.TextArea=$5;exports.TextButton=fr;exports.TextInput=A5;exports.Thumbnail=ws;exports.Tile=V5;exports.Toggle=bs;exports.ToggleInput=D5;exports.Typography=we;
package/index.mjs CHANGED
@@ -7187,7 +7187,7 @@ function zf(t) {
7187
7187
  }));
7188
7188
  return /* @__PURE__ */ v.jsx(xd, { disabled: n, className: Z5.radiobuttoncluster, children: s });
7189
7189
  }
7190
- const z5 = "_root_f2d4f_106", H5 = "_toggle_f2d4f_111", q5 = "_selectedLabel_f2d4f_122", U5 = "_label_f2d4f_131", Y5 = "_disabled_f2d4f_137", K5 = "_filled_f2d4f_153", G5 = "_error_f2d4f_183", X5 = "_icon_f2d4f_192", J5 = "_expanded_f2d4f_196", Q5 = "_hidden_f2d4f_200", ef = "_option_f2d4f_204", tf = "_selected_f2d4f_122", nf = "_dropdown_f2d4f_234", rf = "_errorMessage_f2d4f_243", Re = {
7190
+ const z5 = "_root_18ryf_106", H5 = "_toggle_18ryf_111", q5 = "_selectedLabel_18ryf_122", U5 = "_label_18ryf_131", Y5 = "_disabled_18ryf_137", K5 = "_filled_18ryf_153", G5 = "_error_18ryf_183", X5 = "_icon_18ryf_192", J5 = "_expanded_18ryf_196", Q5 = "_hidden_18ryf_200", ef = "_option_18ryf_204", tf = "_selected_18ryf_122", nf = "_dropdown_18ryf_234", rf = "_errorMessage_18ryf_244", Re = {
7191
7191
  root: z5,
7192
7192
  toggle: H5,
7193
7193
  selectedLabel: q5,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goodhood-web/ui",
3
- "version": "1.6.0-development.35",
3
+ "version": "1.6.0-development.36",
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_1iwxf_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_1iwxf_117 ._heading_1iwxf_106{padding:24px 16px}._heading_1iwxf_106 ._title_1iwxf_120{color:#201649;font-size:18px;line-height:24px;text-align:left}._heading_1iwxf_106:not([data-expanded=true]){border-bottom:1px solid #d2d0db}._heading_1iwxf_106:not([data-expanded=true]):hover{background-color:#f4f3f6}._icon_1iwxf_133{margin-left:8px;color:#ec7bcb;transform:rotate(0);transition:all .3s 20ms}._icon_1iwxf_133._iconExpanded_1iwxf_139{transform:rotate(180deg)}@media (prefers-reduced-motion){._icon_1iwxf_133{transition:unset}}._panel_1iwxf_148{height:0;padding:0 12px 12px;opacity:0;visibility:hidden}._accordionItem--large_1iwxf_117 ._panel_1iwxf_148{padding:0 16px 24px}@media (prefers-reduced-motion){._panel_1iwxf_148{transition:unset}}._panel_1iwxf_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")}._badgeIcon--size-small_z1lcv_106{width:20px;height:20px}._badgeIcon--size-medium_z1lcv_110{width:28px;height:28px}@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")}._badge_fk69x_106{position:relative;display:inline-block}._badge__list_fk69x_110{position:absolute;top:-6px;right:-6px;display:inline-flex}._badge__icon_fk69x_116{margin-left:-6px}@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_u9cbz_106{border:none;border-radius:0;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")}._iconComponent_149pj_106{display:block}._iconComponent_149pj_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")}._bubbleContent_7r8jg_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_7r8jg_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:#cc339f;color:#fff;font-size:12px;letter-spacing:-.5px;text-align:center;transform:translate(50%,-50%);transform-origin:100% 0;white-space:nowrap}._bubble--empty_7r8jg_141{width:12px;height:12px;background-color:#cc339f}@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_1t9z0_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_1t9z0_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_1t9z0_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_1t9z0_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_1t9z0_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:20px;text-decoration:none;text-indent:0px;text-transform:none}._h6_1t9z0_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_1t9z0_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_1t9z0_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_1t9z0_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_1t9z0_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_1t9z0_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_1t9z0_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_1t9z0_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_1t9z0_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_1t9z0_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_1t9z0_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")}._textButton_1t3qx_106{display:flex;height:1.5rem;min-height:1.5rem;align-items:center;justify-content:center;gap:8px}._textButton--green_1t3qx_114{color:#cae85d}._textButton--green_1t3qx_114:active{color:#b5d622}._textButton--blue_1t3qx_120,._textButton--blue_1t3qx_120:active{color:#01819c}._textButton--text_1t3qx_126{color:#635c80}._textButton_1t3qx_106:active{background:none}._textButton_1t3qx_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")}._badgeLabel_1n9wn_106{display:flex;align-items:center;justify-content:space-between;padding:8px 16px 8px 12px;border-radius:8px;background-color:#f4f3f6;gap:8px}._badgeLabel__text_1n9wn_115{width:100%}@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_1v1mo_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_1v1mo_117{height:40px;padding:0 16px}._primaryButton--small_1v1mo_121,._primaryButton--tiny_1v1mo_121{height:32px;padding:0 12px}._primaryButton--highlight_1v1mo_125{background-color:#ff9de2}._primaryButton--highlight_1v1mo_125:hover{background-color:#ec7bcb}._primaryButton--primary_1v1mo_131{background-color:#cae85d}._primaryButton--primary_1v1mo_131:hover{background-color:#b5d622}._primaryButton--transparent_1v1mo_137{border:1px solid #201649;background-color:transparent}._primaryButton--transparent_1v1mo_137:hover{border-color:#ec7bcb;background-color:#ec7bcb}._primaryButton--loading_1v1mo_145 span{cursor:default;visibility:hidden}._primaryButton_1v1mo_106:disabled{background-color:#f4f3f6;color:#a6a2b6;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_htjcx_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_htjcx_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_a9kbs_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_10b7c_106{display:flex;align-items:center;padding-bottom:12px;color:inherit;gap:8px}._title_10b7c_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_w06k7_106{display:flex;align-items:center}._dividerLine_w06k7_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_zjuqf_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")}._iconButton_kxi45_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_kxi45_106:disabled{background:none;cursor:default}._iconButton_kxi45_106:hover,._iconButton_kxi45_106:active{background:none}._iconButton--circular_kxi45_127{border-radius:999px;background:#cae85d}._iconButton--circular_kxi45_127:disabled{background:#fff}._iconButton--circular_kxi45_127:hover{background:#b5d622}._iconButton--circular_kxi45_127:active{background:#cae85d}._iconButton--circular-small_kxi45_140{width:40px;height:40px}._iconButton--circular-medium_kxi45_144{width:48px;height:48px}._iconButton--circular-large_kxi45_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_10dhy_106{display:inline-flex;align-items:center;justify-content:center;border-radius:16px;background:#01819c}._labelPill_10dhy_106 span{color:#fff;line-height:16px;text-align:center}._labelPill--small_10dhy_118{height:20px;padding:0 8px}._labelPill--medium_10dhy_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_ph50v_106{display:flex;flex-direction:column;padding-bottom:12px;gap:8px}._legend_ph50v_106 ._text_ph50v_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_xh4c6_106{display:flex;height:100%;align-items:center;justify-content:center;padding:16px 0}._wrapper_xh4c6_106 ._loadingSpinner_xh4c6_113{display:inline-block}._wrapper_xh4c6_106 ._loadingSpinner_xh4c6_113:after,._wrapper_xh4c6_106 ._loadingSpinner_xh4c6_113:before{content:"";display:inline-block;width:20px;height:20px;border-radius:50%;animation:_pulse-loader-size_xh4c6_1 1s ease infinite;background:#9c9c9c}._wrapper_xh4c6_106 ._loadingSpinner_xh4c6_113 i{display:inline-block;width:20px;height:20px;border-radius:50%;animation:_pulse-loader-size_xh4c6_1 1s ease infinite;background:#9c9c9c;animation-delay:.5s;transform:scale(.2)}@keyframes _pulse-loader-size_xh4c6_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_fkcvm_106{--menuitem-selected-hover-color: #738C00;--menuitem-hover-color: #635C80;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_fkcvm_106 ._highlightFrame_fkcvm_120{display:flex;flex:1;align-items:center;padding:8px;border-radius:8px;gap:8px}._menuItem_fkcvm_106 ._rightIcon_fkcvm_128{display:inherit;margin-left:auto;color:#635c80}._menuItem--selected_fkcvm_133{color:#201649}._menuItem--selected_fkcvm_133 ._leftIcon_fkcvm_136{color:#738c00}._menuItem--selected_fkcvm_133 ._highlightFrame_fkcvm_120{background-color:#f2fbc4}._menuItem--selected_fkcvm_133:hover{color:var(--menuitem-selected-hover-color)}._menuItem_fkcvm_106:not(._menuItem--selected_fkcvm_133):hover{color:var(--menuitem-hover-color)}._menuItem_fkcvm_106:not(._menuItem--selected_fkcvm_133):hover ._highlightFrame_fkcvm_120{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")}._backdrop_mb7hx_106{position:fixed;z-index:-1;background:#0003;top:0;right:0;bottom:0;left:0}@media screen and (max-width: 689px){._backdrop_mb7hx_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_ss4j4_106{position:fixed;z-index:1300;display:flex;align-items:center;justify-content:center;top:0;right:0;bottom:0;left:0}._modal_ss4j4_106 ._modalWrapper_ss4j4_114{min-width:560px;border-radius:0;background-color:#fff;box-shadow:0 6px 32px #2016491a;outline:none}@media screen and (min-width: 690px){._modal_ss4j4_106 ._modalWrapper_ss4j4_114{border-radius:16px}}._modal_ss4j4_106 ._modalWrapper_ss4j4_114 ._modalHeader_ss4j4_126{padding:16px}._modal_ss4j4_106 ._modalWrapper_ss4j4_114 ._modalHeader_ss4j4_126 header{padding:0}._modal_ss4j4_106 ._modalWrapper_ss4j4_114 header button:first-child{display:none}@media screen and (max-width: 689px){._modal_ss4j4_106 ._modalWrapper_ss4j4_114{width:100%;min-width:auto;height:100%}._modal_ss4j4_106 ._modalWrapper_ss4j4_114 header button:last-child{display:none}._modal_ss4j4_106 ._modalWrapper_ss4j4_114 header button:first-child{display:block}}._modal_ss4j4_106 ._modalFooter_ss4j4_148{display:none;flex-direction:row;align-items:center;justify-content:space-between;margin:16px;gap:16px}._modal_ss4j4_106 ._modalFooter--alwaysVisible_ss4j4_156{display:flex}@media screen and (min-width: 690px){._modal_ss4j4_106 ._modalFooter_ss4j4_148{display:flex}}@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_eadjz_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_iil8v_106 ._navItem_iil8v_106{display:flex;width:100%;flex-direction:column;align-items:center;padding:0 4px 4px;color:#635c80;cursor:pointer}@media screen and (min-width: 690px){._listItem_iil8v_106 ._navItem_iil8v_106{padding:0 8px 8px}}._listItem_iil8v_106 ._navItem_iil8v_106 ._selector_iil8v_120{height:4px;align-self:stretch;border-radius:0 0 4px 4px;margin-bottom:4px;background-color:#cae85d;visibility:hidden}._listItem_iil8v_106 ._navItem--active_iil8v_128{padding-right:4px;padding-left:4px;color:#738c00}._listItem_iil8v_106 ._navItem--active_iil8v_128 ._selector_iil8v_120{height:4px;align-self:stretch;border-radius:0 0 4px 4px;background-color:#cae85d;visibility:visible}._label_iil8v_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")}._root_1j4ie_113{position:relative;overflow:hidden;flex-shrink:0;border:solid 1px #d2d0db;background-color:#d2d0db}._root--24_1j4ie_120{width:24px;height:24px}._root--28_1j4ie_124{width:28px;height:28px}._root--32_1j4ie_128{width:32px;height:32px}._root--40_1j4ie_132{width:40px;height:40px}._root--48_1j4ie_136{width:48px;height:48px}._root--56_1j4ie_140{width:56px;height:56px}._root--64_1j4ie_144{width:64px;height:64px}._root--80_1j4ie_148{width:80px;height:80px}._root--120_1j4ie_152{width:120px;height:120px}._root--280_1j4ie_156{width:280px;height:280px}._root--square_1j4ie_160._root--24_1j4ie_120,._root--square_1j4ie_160._root--32_1j4ie_128{border-radius:4px}._root--square_1j4ie_160._root--40_1j4ie_132,._root--square_1j4ie_160._root--48_1j4ie_136{border-radius:8px}._root--square_1j4ie_160._root--56_1j4ie_140,._root--square_1j4ie_160._root--64_1j4ie_144{border-radius:12px}._root--square_1j4ie_160._root--80_1j4ie_148,._root--square_1j4ie_160._root--120_1j4ie_152{border-radius:16px}._root--circular_1j4ie_172{border-radius:50%}._root--isPlaceholder_1j4ie_175:before{position:absolute;z-index:1;width:100%;height:100%;background-color:#d2d0db;content:"";opacity:.4}._root_1j4ie_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")}._root_1mgrn_106{display:flex;justify-content:space-between;padding:8px 12px;background-color:#fff;gap:12px}._root_1mgrn_106 ._thumbnail_1mgrn_113{flex-shrink:0;border:1px solid #d2d0db}._root_1mgrn_106 ._iconWrapper_1mgrn_117{display:flex;width:56px;height:56px;align-items:center;justify-content:center;border-radius:4px;background:#f4f3f6;color:#635c80}._root_1mgrn_106 ._detail_1mgrn_127{display:flex;overflow:hidden;flex-direction:column;flex-grow:1;justify-content:center;color:#635c80;gap:2px;white-space:nowrap}._root_1mgrn_106 ._detail_1mgrn_127 ._notificationText_1mgrn_137{color:#201649;line-height:20px}._seen_1mgrn_142{background-color:#fff9e5}._seen_1mgrn_142 ._bubble_1mgrn_145{width:8px;height:8px;flex-shrink:0;align-self:center;border-radius:16px;background:#cc339f}@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_r4p4i_106{display:flex;width:100%;height:100%;align-items:center;justify-content:center;border-radius:8px}._wrapper_r4p4i_106 path{stroke:#635c80}._wrapper--large_r4p4i_117{background-color:#d2d0db}._wrapper--small_r4p4i_120{border:1px solid #d2d0db;background-color:#f4f3f6}._wrapper--iconWrapper_r4p4i_124{width:72px;height:72px;border-radius:999px}._wrapper_r4p4i_106._wrapper--iconWrapper_r4p4i_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_myrx5_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_yaqqw_106{position:relative;display:flex;align-items:center;justify-content:space-between}._radio_yaqqw_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_yaqqw_106 input._radio--small_yaqqw_124{width:24px;height:24px}._radio_yaqqw_106 input:not(:disabled){cursor:pointer}._radio_yaqqw_106 input:disabled{border-color:#d2d0db}._radio_yaqqw_106 input:checked{border-color:#201649;background-color:#201649;transition:0s}._radio_yaqqw_106 input:checked:disabled{border-color:#a6a2b6;background-color:#a6a2b6}._radio_yaqqw_106 input:hover:not(:disabled,:checked){border-color:#635c80;background-color:#f4f3f6}._radio_yaqqw_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_yaqqw_106 label._radio--small_yaqqw_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_yaqqw_106 input:not(:disabled)~label{color:#635c80;cursor:pointer}._radio_yaqqw_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:20px;text-decoration:none;text-indent:0px;text-transform:none}._radio_yaqqw_106 input:checked~label._radio--small_yaqqw_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_yaqqw_106 input:disabled~label{color:#a6a2b6}._radio_yaqqw_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_1sycx_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")}._root_f2d4f_106{position:relative;width:100%}._toggle_f2d4f_111{display:flex;width:100%;flex-direction:row;justify-content:space-between;padding:16px;border:1px solid #a6a2b6;border-radius:16px;background:#fff;cursor:pointer}._toggle_f2d4f_111 ._selectedLabel_f2d4f_122{color:#201649}._toggle_f2d4f_111:focus{border-color:#201649}._toggle_f2d4f_111:hover{background:#f4f3f6}._toggle_f2d4f_111 ._label_f2d4f_131{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:#635c80}._toggle_f2d4f_111._disabled_f2d4f_137{color:#a6a2b6;cursor:unset}._toggle_f2d4f_111._disabled_f2d4f_137 ._selectedLabel_f2d4f_122,._toggle_f2d4f_111._disabled_f2d4f_137 ._label_f2d4f_131{color:#a6a2b6}._toggle_f2d4f_111._disabled_f2d4f_137:hover{background:#fff}._toggle_f2d4f_111._disabled_f2d4f_137:focus{border-color:#a6a2b6}._toggle_f2d4f_111._filled_f2d4f_153{border:1px solid #f4f3f6;border-radius:16px;background:#f4f3f6}._toggle_f2d4f_111._filled_f2d4f_153:focus{border-color:#a6a2b6}._toggle_f2d4f_111._filled_f2d4f_153:hover{background:#e9e8ed}._toggle_f2d4f_111._filled_f2d4f_153 ._label_f2d4f_131{color:#635c80}._toggle_f2d4f_111._filled_f2d4f_153._disabled_f2d4f_137{color:#a6a2b6;cursor:unset}._toggle_f2d4f_111._filled_f2d4f_153._disabled_f2d4f_137 ._selectedLabel_f2d4f_122,._toggle_f2d4f_111._filled_f2d4f_153._disabled_f2d4f_137 ._label_f2d4f_131{color:#a6a2b6}._toggle_f2d4f_111._filled_f2d4f_153._disabled_f2d4f_137:hover{background:#f4f3f6}._toggle_f2d4f_111._filled_f2d4f_153._disabled_f2d4f_137:focus{border-color:#f4f3f6}._toggle_f2d4f_111._error_f2d4f_183{border-color:#cc339f;background:#fde6f7}._toggle_f2d4f_111._error_f2d4f_183:focus,._toggle_f2d4f_111._error_f2d4f_183:hover{border-color:#cc339f;background:#fde6f7}._icon_f2d4f_192{transition:transform .3s}._icon_f2d4f_192._expanded_f2d4f_196{transform:rotate(180deg)}._hidden_f2d4f_200{display:none}._option_f2d4f_204{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;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding:8px 12px;color:#635c80;cursor:pointer}._option_f2d4f_204:hover{background:#f4f3f6;color:#201649}._option_f2d4f_204._selected_f2d4f_122{background:#f2fbc4;color:#201649}._option_f2d4f_204._selected_f2d4f_122:hover{color:#635c80}._dropdown_f2d4f_234{position:absolute;overflow:hidden;width:100%;border-radius:8px;background:#fff;box-shadow:0 4px 20px #2016491a}._errorMessage_f2d4f_243{padding:0 8px;color:#cc339f}@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")}._sticker_l4sw0_106{display:flex;align-items:center;justify-content:center;border-radius:999px;background-color:var(--sticker-bg-color)}._sticker--color-green_l4sw0_113{--sticker-bg-color: #cae85d}._sticker--color-pink_l4sw0_116{--sticker-bg-color: #ff9de2}._sticker--color-lavender_l4sw0_119{--sticker-bg-color: #7c5bff}._sticker--color-lavender_l4sw0_119 path{stroke:#fff}._sticker--color-teal_l4sw0_125{--sticker-bg-color: #01819C}._sticker--color-teal_l4sw0_125 path{stroke:#fff}._sticker--color-orange_l4sw0_131{--sticker-bg-color: #ebaa77}._sticker--color-grey_l4sw0_134{--sticker-bg-color: #d2d0db}._sticker--size-small_l4sw0_137{width:48px;height:48px}._sticker--size-medium_l4sw0_141{width:56px;height:56px}._sticker--size-large_l4sw0_145{width:64px;height:64px}@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_8720r_106{width:100%}._label_8720r_110{position:absolute;top:24px;right:16px;left:16px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;transform:translateY(-50%);transition:top .3s,font-size .3s}._textArea_8720r_122{width:100%;min-height:96px;background-color:transparent;color:#201649}._textArea_8720r_122:focus-visible{outline:none}._textArea_8720r_122+label{color:#635c80}._textArea_8720r_122:not(:-moz-placeholder-shown)+label{top:16px}._textArea_8720r_122:focus+label,._textArea_8720r_122:not(:placeholder-shown)+label{top:16px}._textArea_8720r_122: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}._textArea_8720r_122:focus+label>span,._textArea_8720r_122: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}._textAreaContainer_8720r_150{position:relative}._textAreaContainer_8720r_150:focus-within{outline:#a6a2b6 2px solid}._textAreaContainer--dark_8720r_156{background-color:#f4f3f6}._textAreaContainer--dark_8720r_156:hover{background-color:#e9e8ed}._textAreaContainer--dark_8720r_156:disabled{color:#a6a2b6}._textAreaContainer--dark_8720r_156:disabled:hover{background-color:#f4f3f6}._textAreaContainer--dark_8720r_156:disabled+label{color:#a6a2b6}._textAreaContainer--light_8720r_171{border:1px solid #a6a2b6;background-color:#fff}._textAreaContainer--light_8720r_171:hover{border-color:#635c80;background-color:#f4f3f6}._textAreaContainer--light_8720r_171:disabled{border-color:#d2d0db;color:#a6a2b6}._textAreaContainer--light_8720r_171:disabled:hover{background-color:#fff}._textAreaContainer--light_8720r_171:disabled+label{color:#a6a2b6}._textAreaContainer--medium_8720r_189{border-radius:16px}._textAreaContainer--medium_8720r_189:not(:-moz-placeholder-shown){padding-top:26px;padding-bottom:6px}._textAreaContainer--medium_8720r_189:focus,._textAreaContainer--medium_8720r_189:not(:placeholder-shown){padding-top:26px;padding-bottom:6px}._textAreaContainer--medium_8720r_189 ._textArea_8720r_122{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;padding:0 16px;line-height:24px}._textAreaContainer--small_8720r_210{border-radius:12px}._textAreaContainer--small_8720r_210 ._textArea_8720r_122{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;padding:12px 16px 0;line-height:20px}._textAreaContainer--small_8720r_210 ._textArea_8720r_122:not(:-moz-placeholder-shown)+label{display:none}._textAreaContainer--small_8720r_210 ._textArea_8720r_122:focus+label,._textAreaContainer--small_8720r_210 ._textArea_8720r_122:not(:placeholder-shown)+label{display:none}._textAreaContainer--error_8720r_230{border:1px solid #CC339F;background-color:#fde6f7;color:#201649}._textAreaContainer--error_8720r_230:focus{border-color:#cc339f}._textAreaContainer--error_8720r_230:hover{border-color:#cc339f;background-color:#fde6f7}._textAreaContainer--error_8720r_230:disabled{border-color:#cc339f}._textAreaContainer--error_8720r_230:disabled:hover{background-color:#fde6f7}._textAreaContainer--errorMessage_8720r_248{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")}._wrapper_1crfz_106{width:100%}._wrapper_1crfz_106 ._textInputContainer_1crfz_109{position:relative}._wrapper_1crfz_106 ._textInputContainer_1crfz_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_1crfz_106 ._textInputContainer_1crfz_109 ._textInput_1crfz_109{width:100%;color:#201649;outline:none;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}._wrapper_1crfz_106 ._textInputContainer_1crfz_109 ._textInput_1crfz_109+label{color:#635c80}._wrapper_1crfz_106 ._textInputContainer_1crfz_109 ._textInput_1crfz_109:not(:-moz-placeholder-shown)+label{top:16px}._wrapper_1crfz_106 ._textInputContainer_1crfz_109 ._textInput_1crfz_109:focus+label,._wrapper_1crfz_106 ._textInputContainer_1crfz_109 ._textInput_1crfz_109:not(:placeholder-shown)+label{top:16px}._wrapper_1crfz_106 ._textInputContainer_1crfz_109 ._textInput_1crfz_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_1crfz_106 ._textInputContainer_1crfz_109 ._textInput_1crfz_109:focus+label>span,._wrapper_1crfz_106 ._textInputContainer_1crfz_109 ._textInput_1crfz_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_1crfz_106 ._textInputContainer_1crfz_109 ._textInput--medium_1crfz_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_1crfz_106 ._textInputContainer_1crfz_109 ._textInput--medium_1crfz_149:not(:-moz-placeholder-shown){padding-top:26px;padding-bottom:6px}._wrapper_1crfz_106 ._textInputContainer_1crfz_109 ._textInput--medium_1crfz_149:focus,._wrapper_1crfz_106 ._textInputContainer_1crfz_109 ._textInput--medium_1crfz_149:not(:placeholder-shown){padding-top:26px;padding-bottom:6px}._wrapper_1crfz_106 ._textInputContainer_1crfz_109 ._textInput--small_1crfz_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_1crfz_106 ._textInputContainer_1crfz_109 ._textInput--small_1crfz_169:not(:-moz-placeholder-shown)+label{display:none}._wrapper_1crfz_106 ._textInputContainer_1crfz_109 ._textInput--small_1crfz_169:focus+label,._wrapper_1crfz_106 ._textInputContainer_1crfz_109 ._textInput--small_1crfz_169:not(:placeholder-shown)+label{display:none}._wrapper_1crfz_106 ._textInputContainer_1crfz_109 ._textInput--dark_1crfz_188{background-color:#f4f3f6}._wrapper_1crfz_106 ._textInputContainer_1crfz_109 ._textInput--dark_1crfz_188:hover{background-color:#e9e8ed}._wrapper_1crfz_106 ._textInputContainer_1crfz_109 ._textInput--dark_1crfz_188:disabled{color:#a6a2b6}._wrapper_1crfz_106 ._textInputContainer_1crfz_109 ._textInput--dark_1crfz_188:disabled:hover{background-color:#f4f3f6}._wrapper_1crfz_106 ._textInputContainer_1crfz_109 ._textInput--dark_1crfz_188:disabled+label{color:#a6a2b6}._wrapper_1crfz_106 ._textInputContainer_1crfz_109 ._textInput--light_1crfz_203{border:1px solid #a6a2b6;background-color:#fff}._wrapper_1crfz_106 ._textInputContainer_1crfz_109 ._textInput--light_1crfz_203:hover{border-color:#635c80;background-color:#f4f3f6}._wrapper_1crfz_106 ._textInputContainer_1crfz_109 ._textInput--light_1crfz_203:disabled{border-color:#d2d0db;color:#a6a2b6}._wrapper_1crfz_106 ._textInputContainer_1crfz_109 ._textInput--light_1crfz_203:disabled:hover{background-color:#fff}._wrapper_1crfz_106 ._textInputContainer_1crfz_109 ._textInput--light_1crfz_203:disabled+label{color:#a6a2b6}._wrapper_1crfz_106 ._textInputContainer_1crfz_109 ._textInput--error_1crfz_221{border:1px solid #CC339F;background-color:#fde6f7;color:#201649}._wrapper_1crfz_106 ._textInputContainer_1crfz_109 ._textInput--error_1crfz_221:focus{border-color:#cc339f}._wrapper_1crfz_106 ._textInputContainer_1crfz_109 ._textInput--error_1crfz_221:hover{border-color:#cc339f;background-color:#fde6f7}._wrapper_1crfz_106 ._textInputContainer_1crfz_109 ._textInput--error_1crfz_221:disabled{border-color:#cc339f}._wrapper_1crfz_106 ._textInputContainer_1crfz_109 ._textInput--error_1crfz_221:disabled:hover{background-color:#fde6f7}._wrapper_1crfz_106 ._textInputContainer--errorMessage_1crfz_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")}._tile_phuce_106{--tile-bg-color: #f4f3f6;--tile-color: #635C80;--tile-value-color: #01819C;display:flex;min-width:80px;flex-direction:column;align-items:center;padding:8px 4px;border-radius:12px;background-color:var(--tile-bg-color);color:var(--tile-color)}._tile--fullWidth_phuce_119{width:100%}._tile--icon_phuce_122{padding:4px 4px 8px}._tile__value_phuce_126{color:var(--tile-value-color)}._tile_phuce_106:hover{--tile-bg-color: #e9e8ed}._tile_phuce_106:focus{--tile-bg-color: #d2d0db}._tile_phuce_106:disabled{--tile-color: #a6a2b6;--tile-value-color: #a6a2b6;cursor:default}._tile_phuce_106:disabled:hover,._tile_phuce_106:disabled:focus{--tile-bg-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")}._switch_1cu02_106{position:relative;display:inline-block;width:48px;height:28px}._switch_1cu02_106 ._slider_1cu02_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_1cu02_106 ._slider_1cu02_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_1cu02_106 ._slider_1cu02_112._focusVisible_1cu02_134{box-shadow:inset 0 0 0 1.5px #43adc3!important}._switch_1cu02_106 input{position:absolute;z-index:2;width:48px;height:28px;opacity:0}._switch_1cu02_106 input:not(:disabled){cursor:pointer}._switch_1cu02_106 input:hover+._slider_1cu02_112{box-shadow:inset 0 0 0 1.5px #635c80}._switch_1cu02_106 input:disabled+._slider_1cu02_112{opacity:.4}._switch_1cu02_106 input:checked+._slider_1cu02_112{background-color:#201649;box-shadow:inset 0 0 0 1.5px #201649}._switch_1cu02_106 input:checked+._slider_1cu02_112:before{transform:translate(-2px)}._switch_1cu02_106 input:checked:hover+._slider_1cu02_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_14m6o_106{display:flex;width:100%;align-items:center;padding:8px 16px;background-color:#fff;color:#635c80;cursor:pointer;gap:12px}._toggleInput_14m6o_106 svg{flex-shrink:0}._toggleInput_14m6o_106 ._textLabel_14m6o_119{flex-grow:1}._toggleInput_14m6o_106 ._switch_14m6o_122{flex-shrink:0}._toggleInput--checked_14m6o_125{color:#201649}._toggleInput--disabled_14m6o_128{cursor:unset}._toggleInput--withBorder_14m6o_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_1iwxf_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_1iwxf_117 ._heading_1iwxf_106{padding:24px 16px}._heading_1iwxf_106 ._title_1iwxf_120{color:#201649;font-size:18px;line-height:24px;text-align:left}._heading_1iwxf_106:not([data-expanded=true]){border-bottom:1px solid #d2d0db}._heading_1iwxf_106:not([data-expanded=true]):hover{background-color:#f4f3f6}._icon_1iwxf_133{margin-left:8px;color:#ec7bcb;transform:rotate(0);transition:all .3s 20ms}._icon_1iwxf_133._iconExpanded_1iwxf_139{transform:rotate(180deg)}@media (prefers-reduced-motion){._icon_1iwxf_133{transition:unset}}._panel_1iwxf_148{height:0;padding:0 12px 12px;opacity:0;visibility:hidden}._accordionItem--large_1iwxf_117 ._panel_1iwxf_148{padding:0 16px 24px}@media (prefers-reduced-motion){._panel_1iwxf_148{transition:unset}}._panel_1iwxf_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")}._badgeIcon--size-small_z1lcv_106{width:20px;height:20px}._badgeIcon--size-medium_z1lcv_110{width:28px;height:28px}@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")}._badge_fk69x_106{position:relative;display:inline-block}._badge__list_fk69x_110{position:absolute;top:-6px;right:-6px;display:inline-flex}._badge__icon_fk69x_116{margin-left:-6px}@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_u9cbz_106{border:none;border-radius:0;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")}._iconComponent_149pj_106{display:block}._iconComponent_149pj_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")}._bubbleContent_7r8jg_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_7r8jg_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:#cc339f;color:#fff;font-size:12px;letter-spacing:-.5px;text-align:center;transform:translate(50%,-50%);transform-origin:100% 0;white-space:nowrap}._bubble--empty_7r8jg_141{width:12px;height:12px;background-color:#cc339f}@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_1t9z0_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_1t9z0_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_1t9z0_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_1t9z0_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_1t9z0_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:20px;text-decoration:none;text-indent:0px;text-transform:none}._h6_1t9z0_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_1t9z0_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_1t9z0_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_1t9z0_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_1t9z0_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_1t9z0_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_1t9z0_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_1t9z0_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_1t9z0_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_1t9z0_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_1t9z0_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")}._textButton_1t3qx_106{display:flex;height:1.5rem;min-height:1.5rem;align-items:center;justify-content:center;gap:8px}._textButton--green_1t3qx_114{color:#cae85d}._textButton--green_1t3qx_114:active{color:#b5d622}._textButton--blue_1t3qx_120,._textButton--blue_1t3qx_120:active{color:#01819c}._textButton--text_1t3qx_126{color:#635c80}._textButton_1t3qx_106:active{background:none}._textButton_1t3qx_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")}._badgeLabel_1n9wn_106{display:flex;align-items:center;justify-content:space-between;padding:8px 16px 8px 12px;border-radius:8px;background-color:#f4f3f6;gap:8px}._badgeLabel__text_1n9wn_115{width:100%}@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_1v1mo_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_1v1mo_117{height:40px;padding:0 16px}._primaryButton--small_1v1mo_121,._primaryButton--tiny_1v1mo_121{height:32px;padding:0 12px}._primaryButton--highlight_1v1mo_125{background-color:#ff9de2}._primaryButton--highlight_1v1mo_125:hover{background-color:#ec7bcb}._primaryButton--primary_1v1mo_131{background-color:#cae85d}._primaryButton--primary_1v1mo_131:hover{background-color:#b5d622}._primaryButton--transparent_1v1mo_137{border:1px solid #201649;background-color:transparent}._primaryButton--transparent_1v1mo_137:hover{border-color:#ec7bcb;background-color:#ec7bcb}._primaryButton--loading_1v1mo_145 span{cursor:default;visibility:hidden}._primaryButton_1v1mo_106:disabled{background-color:#f4f3f6;color:#a6a2b6;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_htjcx_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_htjcx_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_a9kbs_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_10b7c_106{display:flex;align-items:center;padding-bottom:12px;color:inherit;gap:8px}._title_10b7c_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_w06k7_106{display:flex;align-items:center}._dividerLine_w06k7_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_zjuqf_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")}._iconButton_kxi45_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_kxi45_106:disabled{background:none;cursor:default}._iconButton_kxi45_106:hover,._iconButton_kxi45_106:active{background:none}._iconButton--circular_kxi45_127{border-radius:999px;background:#cae85d}._iconButton--circular_kxi45_127:disabled{background:#fff}._iconButton--circular_kxi45_127:hover{background:#b5d622}._iconButton--circular_kxi45_127:active{background:#cae85d}._iconButton--circular-small_kxi45_140{width:40px;height:40px}._iconButton--circular-medium_kxi45_144{width:48px;height:48px}._iconButton--circular-large_kxi45_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_10dhy_106{display:inline-flex;align-items:center;justify-content:center;border-radius:16px;background:#01819c}._labelPill_10dhy_106 span{color:#fff;line-height:16px;text-align:center}._labelPill--small_10dhy_118{height:20px;padding:0 8px}._labelPill--medium_10dhy_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_ph50v_106{display:flex;flex-direction:column;padding-bottom:12px;gap:8px}._legend_ph50v_106 ._text_ph50v_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_xh4c6_106{display:flex;height:100%;align-items:center;justify-content:center;padding:16px 0}._wrapper_xh4c6_106 ._loadingSpinner_xh4c6_113{display:inline-block}._wrapper_xh4c6_106 ._loadingSpinner_xh4c6_113:after,._wrapper_xh4c6_106 ._loadingSpinner_xh4c6_113:before{content:"";display:inline-block;width:20px;height:20px;border-radius:50%;animation:_pulse-loader-size_xh4c6_1 1s ease infinite;background:#9c9c9c}._wrapper_xh4c6_106 ._loadingSpinner_xh4c6_113 i{display:inline-block;width:20px;height:20px;border-radius:50%;animation:_pulse-loader-size_xh4c6_1 1s ease infinite;background:#9c9c9c;animation-delay:.5s;transform:scale(.2)}@keyframes _pulse-loader-size_xh4c6_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_fkcvm_106{--menuitem-selected-hover-color: #738C00;--menuitem-hover-color: #635C80;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_fkcvm_106 ._highlightFrame_fkcvm_120{display:flex;flex:1;align-items:center;padding:8px;border-radius:8px;gap:8px}._menuItem_fkcvm_106 ._rightIcon_fkcvm_128{display:inherit;margin-left:auto;color:#635c80}._menuItem--selected_fkcvm_133{color:#201649}._menuItem--selected_fkcvm_133 ._leftIcon_fkcvm_136{color:#738c00}._menuItem--selected_fkcvm_133 ._highlightFrame_fkcvm_120{background-color:#f2fbc4}._menuItem--selected_fkcvm_133:hover{color:var(--menuitem-selected-hover-color)}._menuItem_fkcvm_106:not(._menuItem--selected_fkcvm_133):hover{color:var(--menuitem-hover-color)}._menuItem_fkcvm_106:not(._menuItem--selected_fkcvm_133):hover ._highlightFrame_fkcvm_120{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")}._backdrop_mb7hx_106{position:fixed;z-index:-1;background:#0003;top:0;right:0;bottom:0;left:0}@media screen and (max-width: 689px){._backdrop_mb7hx_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_ss4j4_106{position:fixed;z-index:1300;display:flex;align-items:center;justify-content:center;top:0;right:0;bottom:0;left:0}._modal_ss4j4_106 ._modalWrapper_ss4j4_114{min-width:560px;border-radius:0;background-color:#fff;box-shadow:0 6px 32px #2016491a;outline:none}@media screen and (min-width: 690px){._modal_ss4j4_106 ._modalWrapper_ss4j4_114{border-radius:16px}}._modal_ss4j4_106 ._modalWrapper_ss4j4_114 ._modalHeader_ss4j4_126{padding:16px}._modal_ss4j4_106 ._modalWrapper_ss4j4_114 ._modalHeader_ss4j4_126 header{padding:0}._modal_ss4j4_106 ._modalWrapper_ss4j4_114 header button:first-child{display:none}@media screen and (max-width: 689px){._modal_ss4j4_106 ._modalWrapper_ss4j4_114{width:100%;min-width:auto;height:100%}._modal_ss4j4_106 ._modalWrapper_ss4j4_114 header button:last-child{display:none}._modal_ss4j4_106 ._modalWrapper_ss4j4_114 header button:first-child{display:block}}._modal_ss4j4_106 ._modalFooter_ss4j4_148{display:none;flex-direction:row;align-items:center;justify-content:space-between;margin:16px;gap:16px}._modal_ss4j4_106 ._modalFooter--alwaysVisible_ss4j4_156{display:flex}@media screen and (min-width: 690px){._modal_ss4j4_106 ._modalFooter_ss4j4_148{display:flex}}@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_eadjz_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_iil8v_106 ._navItem_iil8v_106{display:flex;width:100%;flex-direction:column;align-items:center;padding:0 4px 4px;color:#635c80;cursor:pointer}@media screen and (min-width: 690px){._listItem_iil8v_106 ._navItem_iil8v_106{padding:0 8px 8px}}._listItem_iil8v_106 ._navItem_iil8v_106 ._selector_iil8v_120{height:4px;align-self:stretch;border-radius:0 0 4px 4px;margin-bottom:4px;background-color:#cae85d;visibility:hidden}._listItem_iil8v_106 ._navItem--active_iil8v_128{padding-right:4px;padding-left:4px;color:#738c00}._listItem_iil8v_106 ._navItem--active_iil8v_128 ._selector_iil8v_120{height:4px;align-self:stretch;border-radius:0 0 4px 4px;background-color:#cae85d;visibility:visible}._label_iil8v_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")}._root_1j4ie_113{position:relative;overflow:hidden;flex-shrink:0;border:solid 1px #d2d0db;background-color:#d2d0db}._root--24_1j4ie_120{width:24px;height:24px}._root--28_1j4ie_124{width:28px;height:28px}._root--32_1j4ie_128{width:32px;height:32px}._root--40_1j4ie_132{width:40px;height:40px}._root--48_1j4ie_136{width:48px;height:48px}._root--56_1j4ie_140{width:56px;height:56px}._root--64_1j4ie_144{width:64px;height:64px}._root--80_1j4ie_148{width:80px;height:80px}._root--120_1j4ie_152{width:120px;height:120px}._root--280_1j4ie_156{width:280px;height:280px}._root--square_1j4ie_160._root--24_1j4ie_120,._root--square_1j4ie_160._root--32_1j4ie_128{border-radius:4px}._root--square_1j4ie_160._root--40_1j4ie_132,._root--square_1j4ie_160._root--48_1j4ie_136{border-radius:8px}._root--square_1j4ie_160._root--56_1j4ie_140,._root--square_1j4ie_160._root--64_1j4ie_144{border-radius:12px}._root--square_1j4ie_160._root--80_1j4ie_148,._root--square_1j4ie_160._root--120_1j4ie_152{border-radius:16px}._root--circular_1j4ie_172{border-radius:50%}._root--isPlaceholder_1j4ie_175:before{position:absolute;z-index:1;width:100%;height:100%;background-color:#d2d0db;content:"";opacity:.4}._root_1j4ie_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")}._root_1mgrn_106{display:flex;justify-content:space-between;padding:8px 12px;background-color:#fff;gap:12px}._root_1mgrn_106 ._thumbnail_1mgrn_113{flex-shrink:0;border:1px solid #d2d0db}._root_1mgrn_106 ._iconWrapper_1mgrn_117{display:flex;width:56px;height:56px;align-items:center;justify-content:center;border-radius:4px;background:#f4f3f6;color:#635c80}._root_1mgrn_106 ._detail_1mgrn_127{display:flex;overflow:hidden;flex-direction:column;flex-grow:1;justify-content:center;color:#635c80;gap:2px;white-space:nowrap}._root_1mgrn_106 ._detail_1mgrn_127 ._notificationText_1mgrn_137{color:#201649;line-height:20px}._seen_1mgrn_142{background-color:#fff9e5}._seen_1mgrn_142 ._bubble_1mgrn_145{width:8px;height:8px;flex-shrink:0;align-self:center;border-radius:16px;background:#cc339f}@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_r4p4i_106{display:flex;width:100%;height:100%;align-items:center;justify-content:center;border-radius:8px}._wrapper_r4p4i_106 path{stroke:#635c80}._wrapper--large_r4p4i_117{background-color:#d2d0db}._wrapper--small_r4p4i_120{border:1px solid #d2d0db;background-color:#f4f3f6}._wrapper--iconWrapper_r4p4i_124{width:72px;height:72px;border-radius:999px}._wrapper_r4p4i_106._wrapper--iconWrapper_r4p4i_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_myrx5_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_yaqqw_106{position:relative;display:flex;align-items:center;justify-content:space-between}._radio_yaqqw_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_yaqqw_106 input._radio--small_yaqqw_124{width:24px;height:24px}._radio_yaqqw_106 input:not(:disabled){cursor:pointer}._radio_yaqqw_106 input:disabled{border-color:#d2d0db}._radio_yaqqw_106 input:checked{border-color:#201649;background-color:#201649;transition:0s}._radio_yaqqw_106 input:checked:disabled{border-color:#a6a2b6;background-color:#a6a2b6}._radio_yaqqw_106 input:hover:not(:disabled,:checked){border-color:#635c80;background-color:#f4f3f6}._radio_yaqqw_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_yaqqw_106 label._radio--small_yaqqw_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_yaqqw_106 input:not(:disabled)~label{color:#635c80;cursor:pointer}._radio_yaqqw_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:20px;text-decoration:none;text-indent:0px;text-transform:none}._radio_yaqqw_106 input:checked~label._radio--small_yaqqw_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_yaqqw_106 input:disabled~label{color:#a6a2b6}._radio_yaqqw_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_1sycx_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")}._root_18ryf_106{position:relative;width:100%}._toggle_18ryf_111{display:flex;width:100%;flex-direction:row;justify-content:space-between;padding:16px;border:1px solid #a6a2b6;border-radius:16px;background:#fff;cursor:pointer}._toggle_18ryf_111 ._selectedLabel_18ryf_122{color:#201649}._toggle_18ryf_111:focus{border-color:#201649}._toggle_18ryf_111:hover{background:#f4f3f6}._toggle_18ryf_111 ._label_18ryf_131{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:#635c80}._toggle_18ryf_111._disabled_18ryf_137{color:#a6a2b6;cursor:unset}._toggle_18ryf_111._disabled_18ryf_137 ._selectedLabel_18ryf_122,._toggle_18ryf_111._disabled_18ryf_137 ._label_18ryf_131{color:#a6a2b6}._toggle_18ryf_111._disabled_18ryf_137:hover{background:#fff}._toggle_18ryf_111._disabled_18ryf_137:focus{border-color:#a6a2b6}._toggle_18ryf_111._filled_18ryf_153{border:1px solid #f4f3f6;border-radius:16px;background:#f4f3f6}._toggle_18ryf_111._filled_18ryf_153:focus{border-color:#a6a2b6}._toggle_18ryf_111._filled_18ryf_153:hover{background:#e9e8ed}._toggle_18ryf_111._filled_18ryf_153 ._label_18ryf_131{color:#635c80}._toggle_18ryf_111._filled_18ryf_153._disabled_18ryf_137{color:#a6a2b6;cursor:unset}._toggle_18ryf_111._filled_18ryf_153._disabled_18ryf_137 ._selectedLabel_18ryf_122,._toggle_18ryf_111._filled_18ryf_153._disabled_18ryf_137 ._label_18ryf_131{color:#a6a2b6}._toggle_18ryf_111._filled_18ryf_153._disabled_18ryf_137:hover{background:#f4f3f6}._toggle_18ryf_111._filled_18ryf_153._disabled_18ryf_137:focus{border-color:#f4f3f6}._toggle_18ryf_111._error_18ryf_183{border-color:#cc339f;background:#fde6f7}._toggle_18ryf_111._error_18ryf_183:focus,._toggle_18ryf_111._error_18ryf_183:hover{border-color:#cc339f;background:#fde6f7}._icon_18ryf_192{transition:transform .3s}._icon_18ryf_192._expanded_18ryf_196{transform:rotate(180deg)}._hidden_18ryf_200{display:none}._option_18ryf_204{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;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding:8px 12px;color:#635c80;cursor:pointer}._option_18ryf_204:hover{background:#f4f3f6;color:#201649}._option_18ryf_204._selected_18ryf_122{background:#f2fbc4;color:#201649}._option_18ryf_204._selected_18ryf_122:hover{color:#635c80}._dropdown_18ryf_234{position:absolute;z-index:1;overflow:hidden;width:100%;border-radius:8px;background:#fff;box-shadow:0 4px 20px #2016491a}._errorMessage_18ryf_244{padding:0 8px;color:#cc339f}@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")}._sticker_l4sw0_106{display:flex;align-items:center;justify-content:center;border-radius:999px;background-color:var(--sticker-bg-color)}._sticker--color-green_l4sw0_113{--sticker-bg-color: #cae85d}._sticker--color-pink_l4sw0_116{--sticker-bg-color: #ff9de2}._sticker--color-lavender_l4sw0_119{--sticker-bg-color: #7c5bff}._sticker--color-lavender_l4sw0_119 path{stroke:#fff}._sticker--color-teal_l4sw0_125{--sticker-bg-color: #01819C}._sticker--color-teal_l4sw0_125 path{stroke:#fff}._sticker--color-orange_l4sw0_131{--sticker-bg-color: #ebaa77}._sticker--color-grey_l4sw0_134{--sticker-bg-color: #d2d0db}._sticker--size-small_l4sw0_137{width:48px;height:48px}._sticker--size-medium_l4sw0_141{width:56px;height:56px}._sticker--size-large_l4sw0_145{width:64px;height:64px}@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_8720r_106{width:100%}._label_8720r_110{position:absolute;top:24px;right:16px;left:16px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;transform:translateY(-50%);transition:top .3s,font-size .3s}._textArea_8720r_122{width:100%;min-height:96px;background-color:transparent;color:#201649}._textArea_8720r_122:focus-visible{outline:none}._textArea_8720r_122+label{color:#635c80}._textArea_8720r_122:not(:-moz-placeholder-shown)+label{top:16px}._textArea_8720r_122:focus+label,._textArea_8720r_122:not(:placeholder-shown)+label{top:16px}._textArea_8720r_122: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}._textArea_8720r_122:focus+label>span,._textArea_8720r_122: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}._textAreaContainer_8720r_150{position:relative}._textAreaContainer_8720r_150:focus-within{outline:#a6a2b6 2px solid}._textAreaContainer--dark_8720r_156{background-color:#f4f3f6}._textAreaContainer--dark_8720r_156:hover{background-color:#e9e8ed}._textAreaContainer--dark_8720r_156:disabled{color:#a6a2b6}._textAreaContainer--dark_8720r_156:disabled:hover{background-color:#f4f3f6}._textAreaContainer--dark_8720r_156:disabled+label{color:#a6a2b6}._textAreaContainer--light_8720r_171{border:1px solid #a6a2b6;background-color:#fff}._textAreaContainer--light_8720r_171:hover{border-color:#635c80;background-color:#f4f3f6}._textAreaContainer--light_8720r_171:disabled{border-color:#d2d0db;color:#a6a2b6}._textAreaContainer--light_8720r_171:disabled:hover{background-color:#fff}._textAreaContainer--light_8720r_171:disabled+label{color:#a6a2b6}._textAreaContainer--medium_8720r_189{border-radius:16px}._textAreaContainer--medium_8720r_189:not(:-moz-placeholder-shown){padding-top:26px;padding-bottom:6px}._textAreaContainer--medium_8720r_189:focus,._textAreaContainer--medium_8720r_189:not(:placeholder-shown){padding-top:26px;padding-bottom:6px}._textAreaContainer--medium_8720r_189 ._textArea_8720r_122{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;padding:0 16px;line-height:24px}._textAreaContainer--small_8720r_210{border-radius:12px}._textAreaContainer--small_8720r_210 ._textArea_8720r_122{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;padding:12px 16px 0;line-height:20px}._textAreaContainer--small_8720r_210 ._textArea_8720r_122:not(:-moz-placeholder-shown)+label{display:none}._textAreaContainer--small_8720r_210 ._textArea_8720r_122:focus+label,._textAreaContainer--small_8720r_210 ._textArea_8720r_122:not(:placeholder-shown)+label{display:none}._textAreaContainer--error_8720r_230{border:1px solid #CC339F;background-color:#fde6f7;color:#201649}._textAreaContainer--error_8720r_230:focus{border-color:#cc339f}._textAreaContainer--error_8720r_230:hover{border-color:#cc339f;background-color:#fde6f7}._textAreaContainer--error_8720r_230:disabled{border-color:#cc339f}._textAreaContainer--error_8720r_230:disabled:hover{background-color:#fde6f7}._textAreaContainer--errorMessage_8720r_248{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")}._wrapper_1crfz_106{width:100%}._wrapper_1crfz_106 ._textInputContainer_1crfz_109{position:relative}._wrapper_1crfz_106 ._textInputContainer_1crfz_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_1crfz_106 ._textInputContainer_1crfz_109 ._textInput_1crfz_109{width:100%;color:#201649;outline:none;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}._wrapper_1crfz_106 ._textInputContainer_1crfz_109 ._textInput_1crfz_109+label{color:#635c80}._wrapper_1crfz_106 ._textInputContainer_1crfz_109 ._textInput_1crfz_109:not(:-moz-placeholder-shown)+label{top:16px}._wrapper_1crfz_106 ._textInputContainer_1crfz_109 ._textInput_1crfz_109:focus+label,._wrapper_1crfz_106 ._textInputContainer_1crfz_109 ._textInput_1crfz_109:not(:placeholder-shown)+label{top:16px}._wrapper_1crfz_106 ._textInputContainer_1crfz_109 ._textInput_1crfz_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_1crfz_106 ._textInputContainer_1crfz_109 ._textInput_1crfz_109:focus+label>span,._wrapper_1crfz_106 ._textInputContainer_1crfz_109 ._textInput_1crfz_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_1crfz_106 ._textInputContainer_1crfz_109 ._textInput--medium_1crfz_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_1crfz_106 ._textInputContainer_1crfz_109 ._textInput--medium_1crfz_149:not(:-moz-placeholder-shown){padding-top:26px;padding-bottom:6px}._wrapper_1crfz_106 ._textInputContainer_1crfz_109 ._textInput--medium_1crfz_149:focus,._wrapper_1crfz_106 ._textInputContainer_1crfz_109 ._textInput--medium_1crfz_149:not(:placeholder-shown){padding-top:26px;padding-bottom:6px}._wrapper_1crfz_106 ._textInputContainer_1crfz_109 ._textInput--small_1crfz_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_1crfz_106 ._textInputContainer_1crfz_109 ._textInput--small_1crfz_169:not(:-moz-placeholder-shown)+label{display:none}._wrapper_1crfz_106 ._textInputContainer_1crfz_109 ._textInput--small_1crfz_169:focus+label,._wrapper_1crfz_106 ._textInputContainer_1crfz_109 ._textInput--small_1crfz_169:not(:placeholder-shown)+label{display:none}._wrapper_1crfz_106 ._textInputContainer_1crfz_109 ._textInput--dark_1crfz_188{background-color:#f4f3f6}._wrapper_1crfz_106 ._textInputContainer_1crfz_109 ._textInput--dark_1crfz_188:hover{background-color:#e9e8ed}._wrapper_1crfz_106 ._textInputContainer_1crfz_109 ._textInput--dark_1crfz_188:disabled{color:#a6a2b6}._wrapper_1crfz_106 ._textInputContainer_1crfz_109 ._textInput--dark_1crfz_188:disabled:hover{background-color:#f4f3f6}._wrapper_1crfz_106 ._textInputContainer_1crfz_109 ._textInput--dark_1crfz_188:disabled+label{color:#a6a2b6}._wrapper_1crfz_106 ._textInputContainer_1crfz_109 ._textInput--light_1crfz_203{border:1px solid #a6a2b6;background-color:#fff}._wrapper_1crfz_106 ._textInputContainer_1crfz_109 ._textInput--light_1crfz_203:hover{border-color:#635c80;background-color:#f4f3f6}._wrapper_1crfz_106 ._textInputContainer_1crfz_109 ._textInput--light_1crfz_203:disabled{border-color:#d2d0db;color:#a6a2b6}._wrapper_1crfz_106 ._textInputContainer_1crfz_109 ._textInput--light_1crfz_203:disabled:hover{background-color:#fff}._wrapper_1crfz_106 ._textInputContainer_1crfz_109 ._textInput--light_1crfz_203:disabled+label{color:#a6a2b6}._wrapper_1crfz_106 ._textInputContainer_1crfz_109 ._textInput--error_1crfz_221{border:1px solid #CC339F;background-color:#fde6f7;color:#201649}._wrapper_1crfz_106 ._textInputContainer_1crfz_109 ._textInput--error_1crfz_221:focus{border-color:#cc339f}._wrapper_1crfz_106 ._textInputContainer_1crfz_109 ._textInput--error_1crfz_221:hover{border-color:#cc339f;background-color:#fde6f7}._wrapper_1crfz_106 ._textInputContainer_1crfz_109 ._textInput--error_1crfz_221:disabled{border-color:#cc339f}._wrapper_1crfz_106 ._textInputContainer_1crfz_109 ._textInput--error_1crfz_221:disabled:hover{background-color:#fde6f7}._wrapper_1crfz_106 ._textInputContainer--errorMessage_1crfz_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")}._tile_phuce_106{--tile-bg-color: #f4f3f6;--tile-color: #635C80;--tile-value-color: #01819C;display:flex;min-width:80px;flex-direction:column;align-items:center;padding:8px 4px;border-radius:12px;background-color:var(--tile-bg-color);color:var(--tile-color)}._tile--fullWidth_phuce_119{width:100%}._tile--icon_phuce_122{padding:4px 4px 8px}._tile__value_phuce_126{color:var(--tile-value-color)}._tile_phuce_106:hover{--tile-bg-color: #e9e8ed}._tile_phuce_106:focus{--tile-bg-color: #d2d0db}._tile_phuce_106:disabled{--tile-color: #a6a2b6;--tile-value-color: #a6a2b6;cursor:default}._tile_phuce_106:disabled:hover,._tile_phuce_106:disabled:focus{--tile-bg-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")}._switch_1cu02_106{position:relative;display:inline-block;width:48px;height:28px}._switch_1cu02_106 ._slider_1cu02_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_1cu02_106 ._slider_1cu02_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_1cu02_106 ._slider_1cu02_112._focusVisible_1cu02_134{box-shadow:inset 0 0 0 1.5px #43adc3!important}._switch_1cu02_106 input{position:absolute;z-index:2;width:48px;height:28px;opacity:0}._switch_1cu02_106 input:not(:disabled){cursor:pointer}._switch_1cu02_106 input:hover+._slider_1cu02_112{box-shadow:inset 0 0 0 1.5px #635c80}._switch_1cu02_106 input:disabled+._slider_1cu02_112{opacity:.4}._switch_1cu02_106 input:checked+._slider_1cu02_112{background-color:#201649;box-shadow:inset 0 0 0 1.5px #201649}._switch_1cu02_106 input:checked+._slider_1cu02_112:before{transform:translate(-2px)}._switch_1cu02_106 input:checked:hover+._slider_1cu02_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_14m6o_106{display:flex;width:100%;align-items:center;padding:8px 16px;background-color:#fff;color:#635c80;cursor:pointer;gap:12px}._toggleInput_14m6o_106 svg{flex-shrink:0}._toggleInput_14m6o_106 ._textLabel_14m6o_119{flex-grow:1}._toggleInput_14m6o_106 ._switch_14m6o_122{flex-shrink:0}._toggleInput--checked_14m6o_125{color:#201649}._toggleInput--disabled_14m6o_128{cursor:unset}._toggleInput--withBorder_14m6o_131{padding:12px 16px;border-radius:16px;box-shadow:inset 0 0 0 1px #d2d0db}