@goodhood-web/ui 1.8.0 → 1.8.1-development.1
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 +1 -1
- package/index.mjs +2 -2
- package/package.json +1 -1
- package/style.css +1 -1
package/index.js
CHANGED
|
@@ -203,4 +203,4 @@ ${t}</tr>
|
|
|
203
203
|
`}tablecell(t,a){const o=a.header?"th":"td";return(a.align?`<${o} align="${a.align}">`:`<${o}>`)+t+`</${o}>
|
|
204
204
|
`}strong(t){return`<strong>${t}</strong>`}em(t){return`<em>${t}</em>`}codespan(t){return`<code>${t}</code>`}br(){return"<br>"}del(t){return`<del>${t}</del>`}link(t,a,o){const i=mf(t);if(i===null)return o;t=i;let u='<a href="'+t+'"';return a&&(u+=' title="'+a+'"'),u+=">"+o+"</a>",u}image(t,a,o){const i=mf(t);if(i===null)return o;t=i;let u=`<img src="${t}" alt="${o}"`;return a&&(u+=` title="${a}"`),u+=">",u}text(t){return t}}class md{strong(t){return t}em(t){return t}codespan(t){return t}del(t){return t}html(t){return t}text(t){return t}link(t,a,o){return""+o}image(t,a,o){return""+o}br(){return""}}class kn{constructor(t){dt(this,"options");dt(this,"renderer");dt(this,"textRenderer");this.options=t||ha,this.options.renderer=this.options.renderer||new Kl,this.renderer=this.options.renderer,this.renderer.options=this.options,this.textRenderer=new md}static parse(t,a){return new kn(a).parse(t)}static parseInline(t,a){return new kn(a).parseInline(t)}parse(t,a=!0){let o="";for(let i=0;i<t.length;i++){const u=t[i];if(this.options.extensions&&this.options.extensions.renderers&&this.options.extensions.renderers[u.type]){const d=u,v=this.options.extensions.renderers[d.type].call({parser:this},d);if(v!==!1||!["space","hr","heading","code","table","blockquote","list","html","paragraph","text"].includes(d.type)){o+=v||"";continue}}switch(u.type){case"space":continue;case"hr":{o+=this.renderer.hr();continue}case"heading":{const d=u;o+=this.renderer.heading(this.parseInline(d.tokens),d.depth,wb(this.parseInline(d.tokens,this.textRenderer)));continue}case"code":{const d=u;o+=this.renderer.code(d.text,d.lang,!!d.escaped);continue}case"table":{const d=u;let v="",m="";for(let _=0;_<d.header.length;_++)m+=this.renderer.tablecell(this.parseInline(d.header[_].tokens),{header:!0,align:d.align[_]});v+=this.renderer.tablerow(m);let x="";for(let _=0;_<d.rows.length;_++){const k=d.rows[_];m="";for(let M=0;M<k.length;M++)m+=this.renderer.tablecell(this.parseInline(k[M].tokens),{header:!1,align:d.align[M]});x+=this.renderer.tablerow(m)}o+=this.renderer.table(v,x);continue}case"blockquote":{const d=u,v=this.parse(d.tokens);o+=this.renderer.blockquote(v);continue}case"list":{const d=u,v=d.ordered,m=d.start,x=d.loose;let _="";for(let k=0;k<d.items.length;k++){const M=d.items[k],F=M.checked,D=M.task;let U="";if(M.task){const B=this.renderer.checkbox(!!F);x?M.tokens.length>0&&M.tokens[0].type==="paragraph"?(M.tokens[0].text=B+" "+M.tokens[0].text,M.tokens[0].tokens&&M.tokens[0].tokens.length>0&&M.tokens[0].tokens[0].type==="text"&&(M.tokens[0].tokens[0].text=B+" "+M.tokens[0].tokens[0].text)):M.tokens.unshift({type:"text",text:B+" "}):U+=B+" "}U+=this.parse(M.tokens,x),_+=this.renderer.listitem(U,D,!!F)}o+=this.renderer.list(_,v,m);continue}case"html":{const d=u;o+=this.renderer.html(d.text,d.block);continue}case"paragraph":{const d=u;o+=this.renderer.paragraph(this.parseInline(d.tokens));continue}case"text":{let d=u,v=d.tokens?this.parseInline(d.tokens):d.text;for(;i+1<t.length&&t[i+1].type==="text";)d=t[++i],v+=`
|
|
205
205
|
`+(d.tokens?this.parseInline(d.tokens):d.text);o+=a?this.renderer.paragraph(v):v;continue}default:{const d='Token with "'+u.type+'" type was not found.';if(this.options.silent)return console.error(d),"";throw new Error(d)}}}return o}parseInline(t,a){a=a||this.renderer;let o="";for(let i=0;i<t.length;i++){const u=t[i];if(this.options.extensions&&this.options.extensions.renderers&&this.options.extensions.renderers[u.type]){const d=this.options.extensions.renderers[u.type].call({parser:this},u);if(d!==!1||!["escape","html","link","image","strong","em","codespan","br","del","text"].includes(u.type)){o+=d||"";continue}}switch(u.type){case"escape":{const d=u;o+=a.text(d.text);break}case"html":{const d=u;o+=a.html(d.text);break}case"link":{const d=u;o+=a.link(d.href,d.title,this.parseInline(d.tokens,a));break}case"image":{const d=u;o+=a.image(d.href,d.title,d.text);break}case"strong":{const d=u;o+=a.strong(this.parseInline(d.tokens,a));break}case"em":{const d=u;o+=a.em(this.parseInline(d.tokens,a));break}case"codespan":{const d=u;o+=a.codespan(d.text);break}case"br":{o+=a.br();break}case"del":{const d=u;o+=a.del(this.parseInline(d.tokens,a));break}case"text":{const d=u;o+=a.text(d.text);break}default:{const d='Token with "'+u.type+'" type was not found.';if(this.options.silent)return console.error(d),"";throw new Error(d)}}}return o}}class As{constructor(t){dt(this,"options");this.options=t||ha}preprocess(t){return t}postprocess(t){return t}processAllTokens(t){return t}}dt(As,"passThroughHooks",new Set(["preprocess","postprocess","processAllTokens"]));var pa,Nu,S1;class Gb{constructor(...t){yd(this,pa);dt(this,"defaults",cd());dt(this,"options",this.setOptions);dt(this,"parse",_l(this,pa,Nu).call(this,xn.lex,kn.parse));dt(this,"parseInline",_l(this,pa,Nu).call(this,xn.lexInline,kn.parseInline));dt(this,"Parser",kn);dt(this,"Renderer",Kl);dt(this,"TextRenderer",md);dt(this,"Lexer",xn);dt(this,"Tokenizer",Jl);dt(this,"Hooks",As);this.use(...t)}walkTokens(t,a){var i,u;let o=[];for(const d of t)switch(o=o.concat(a.call(this,d)),d.type){case"table":{const v=d;for(const m of v.header)o=o.concat(this.walkTokens(m.tokens,a));for(const m of v.rows)for(const x of m)o=o.concat(this.walkTokens(x.tokens,a));break}case"list":{const v=d;o=o.concat(this.walkTokens(v.items,a));break}default:{const v=d;(u=(i=this.defaults.extensions)==null?void 0:i.childTokens)!=null&&u[v.type]?this.defaults.extensions.childTokens[v.type].forEach(m=>{const x=v[m].flat(1/0);o=o.concat(this.walkTokens(x,a))}):v.tokens&&(o=o.concat(this.walkTokens(v.tokens,a)))}}return o}use(...t){const a=this.defaults.extensions||{renderers:{},childTokens:{}};return t.forEach(o=>{const i={...o};if(i.async=this.defaults.async||i.async||!1,o.extensions&&(o.extensions.forEach(u=>{if(!u.name)throw new Error("extension name required");if("renderer"in u){const d=a.renderers[u.name];d?a.renderers[u.name]=function(...v){let m=u.renderer.apply(this,v);return m===!1&&(m=d.apply(this,v)),m}:a.renderers[u.name]=u.renderer}if("tokenizer"in u){if(!u.level||u.level!=="block"&&u.level!=="inline")throw new Error("extension level must be 'block' or 'inline'");const d=a[u.level];d?d.unshift(u.tokenizer):a[u.level]=[u.tokenizer],u.start&&(u.level==="block"?a.startBlock?a.startBlock.push(u.start):a.startBlock=[u.start]:u.level==="inline"&&(a.startInline?a.startInline.push(u.start):a.startInline=[u.start]))}"childTokens"in u&&u.childTokens&&(a.childTokens[u.name]=u.childTokens)}),i.extensions=a),o.renderer){const u=this.defaults.renderer||new Kl(this.defaults);for(const d in o.renderer){if(!(d in u))throw new Error(`renderer '${d}' does not exist`);if(d==="options")continue;const v=d,m=o.renderer[v],x=u[v];u[v]=(..._)=>{let k=m.apply(u,_);return k===!1&&(k=x.apply(u,_)),k||""}}i.renderer=u}if(o.tokenizer){const u=this.defaults.tokenizer||new Jl(this.defaults);for(const d in o.tokenizer){if(!(d in u))throw new Error(`tokenizer '${d}' does not exist`);if(["options","rules","lexer"].includes(d))continue;const v=d,m=o.tokenizer[v],x=u[v];u[v]=(..._)=>{let k=m.apply(u,_);return k===!1&&(k=x.apply(u,_)),k}}i.tokenizer=u}if(o.hooks){const u=this.defaults.hooks||new As;for(const d in o.hooks){if(!(d in u))throw new Error(`hook '${d}' does not exist`);if(d==="options")continue;const v=d,m=o.hooks[v],x=u[v];As.passThroughHooks.has(d)?u[v]=_=>{if(this.defaults.async)return Promise.resolve(m.call(u,_)).then(M=>x.call(u,M));const k=m.call(u,_);return x.call(u,k)}:u[v]=(..._)=>{let k=m.apply(u,_);return k===!1&&(k=x.apply(u,_)),k}}i.hooks=u}if(o.walkTokens){const u=this.defaults.walkTokens,d=o.walkTokens;i.walkTokens=function(v){let m=[];return m.push(d.call(this,v)),u&&(m=m.concat(u.call(this,v))),m}}this.defaults={...this.defaults,...i}}),this}setOptions(t){return this.defaults={...this.defaults,...t},this}lexer(t,a){return xn.lex(t,a??this.defaults)}parser(t,a){return kn.parse(t,a??this.defaults)}}pa=new WeakSet,Nu=function(t,a){return(o,i)=>{const u={...i},d={...this.defaults,...u};this.defaults.async===!0&&u.async===!1&&(d.silent||console.warn("marked(): The async option was set to true by an extension. The async: false option sent to parse will be ignored."),d.async=!0);const v=_l(this,pa,S1).call(this,!!d.silent,!!d.async);if(typeof o>"u"||o===null)return v(new Error("marked(): input parameter is undefined or null"));if(typeof o!="string")return v(new Error("marked(): input parameter is of type "+Object.prototype.toString.call(o)+", string expected"));if(d.hooks&&(d.hooks.options=d),d.async)return Promise.resolve(d.hooks?d.hooks.preprocess(o):o).then(m=>t(m,d)).then(m=>d.hooks?d.hooks.processAllTokens(m):m).then(m=>d.walkTokens?Promise.all(this.walkTokens(m,d.walkTokens)).then(()=>m):m).then(m=>a(m,d)).then(m=>d.hooks?d.hooks.postprocess(m):m).catch(v);try{d.hooks&&(o=d.hooks.preprocess(o));let m=t(o,d);d.hooks&&(m=d.hooks.processAllTokens(m)),d.walkTokens&&this.walkTokens(m,d.walkTokens);let x=a(m,d);return d.hooks&&(x=d.hooks.postprocess(x)),x}catch(m){return v(m)}}},S1=function(t,a){return o=>{if(o.message+=`
|
|
206
|
-
Please report this to https://github.com/markedjs/marked.`,t){const i="<p>An error occurred:</p><pre>"+Ir(o.message+"",!0)+"</pre>";return a?Promise.resolve(i):i}if(a)return Promise.reject(o);throw o}};const fa=new Gb;function lt(r,t){return fa.parse(r,t)}lt.options=lt.setOptions=function(r){return fa.setOptions(r),lt.defaults=fa.defaults,p1(lt.defaults),lt};lt.getDefaults=cd;lt.defaults=ha;lt.use=function(...r){return fa.use(...r),lt.defaults=fa.defaults,p1(lt.defaults),lt};lt.walkTokens=function(r,t){return fa.walkTokens(r,t)};lt.parseInline=fa.parseInline;lt.Parser=kn;lt.parser=kn.parse;lt.Renderer=Kl;lt.TextRenderer=md;lt.Lexer=xn;lt.lexer=xn.lex;lt.Tokenizer=Jl;lt.Hooks=As;lt.parse=lt;lt.options;lt.setOptions;lt.use;lt.walkTokens;lt.parseInline;kn.parse;xn.lex;const Xb=r=>r.replace(/"/g,"QUOTE"),Jb=r=>r.replace(new RegExp("QUOTE","g"),'"');function Qb({className:r,inline:t=!1,text:a}){const o=Jb(lb(Xb(a)));return P.jsx("span",{className:r,dangerouslySetInnerHTML:{__html:t?lt.parseInline(o):lt.parse(o)}})}const Kb="_menuItem_ttg90_106",e3="_highlightFrame_ttg90_120",t3="_rightIcon_ttg90_128",r3="_leftIcon_ttg90_136",ra={menuItem:Kb,highlightFrame:e3,rightIcon:t3,"menuItem--selected":"_menuItem--selected_ttg90_133",leftIcon:r3,"menuItem--compact":"_menuItem--compact_ttg90_147","highlightFrame--compact":"_highlightFrame--compact_ttg90_157"},n3=({className:r,compact:t,href:a,isSelected:o,labelPillClassName:i,labelPillText:u,leftIcon:d,onClick:v,rightIcon:m,role:x,text:_})=>{const k=()=>t?"body-regular":o?"h5":"body-large";return P.jsx(Pr,{role:x,onClick:v,className:Pe(r,ra.menuItem,{[ra["menuItem--selected"]]:o,[ra["menuItem--compact"]]:t}),...a?{href:a}:{},children:P.jsxs("span",{className:Pe(ra.highlightFrame,{[ra["menuItem--compact"]]:t}),children:[d&&P.jsx("span",{className:ra.leftIcon,children:d}),P.jsx(ze,{type:k(),as:"span",children:_}),u&&P.jsx(l1,{label:u,size:"medium",className:i}),m&&P.jsx("span",{className:ra.rightIcon,children:m})]})})},o3="_menuTile_o61bq_106",a3="_menuTile__value_o61bq_126",Dl={menuTile:o3,"menuTile--fullWidth":"_menuTile--fullWidth_o61bq_119","menuTile--icon":"_menuTile--icon_o61bq_122",menuTile__value:a3},i3=({fullWidth:r=!1,icon:t,primaryText:a,secondaryText:o,...i})=>P.jsxs(Pr,{...i,className:Pe(Dl.menuTile,{[Dl["menuTile--icon"]]:t,[Dl["menuTile--fullWidth"]]:r}),children:[t&&P.jsx(Lt,{name:t}),a&&P.jsx(ze,{type:"detail-bold",className:Dl.menuTile__value,children:a}),o&&P.jsx(ze,{type:"detail-medium",children:o})]}),s3="_backdrop_1lf8q_106",l3={backdrop:s3},E1=O.forwardRef((r,t)=>P.jsx("div",{ref:t,...r,className:l3.backdrop}));E1.displayName="Backdrop";const c3="_modal_ftzhr_106",u3="_modalWrapper_ftzhr_114",d3="_modalHeader_ftzhr_130",f3="_modalFooter_ftzhr_143",Ol={modal:c3,modalWrapper:u3,modalHeader:d3,modalFooter:f3},p3=({ariaLabel:r,ariaLabelledBy:t,closeButtonText:a="Abbrechen",headerTitle:o,modalBody:i,modalFooter:u,onClose:d,open:v})=>P.jsx(rd,{"aria-label":r,"aria-labelledby":t,open:v,onClose:d,slots:{backdrop:E1},className:Ol.modal,children:P.jsxs("div",{className:Ol.modalWrapper,children:[P.jsx(id,{className:Ol.modalHeader,headline:o,rightElement:P.jsx(da,{icon:"cross_circle",onClick:d,size:"small",ariaLabel:"Schließen"})}),P.jsx(ad,{children:i}),P.jsxs("div",{className:Ol.modalFooter,children:[P.jsx(Cn,{onClick:d,color:"blue",size:"large",text:a}),u]})]})}),h3="_navBar_1b0o6_106",m3={navBar:h3},g3=({children:r,onChange:t,value:a})=>{const[o,i]=O.useState(a||""),u=d=>{t(d),i(d)};return P.jsx("ul",{className:m3.navBar,children:O.Children.map(r,d=>O.cloneElement(d,{active:d.props.id.toLowerCase()===o.toLowerCase(),onChange:u}))})},v3="_listItem_e2my2_106",y3="_navItem_e2my2_106",w3="_selector_e2my2_120",b3="_label_e2my2_141",Ss={listItem:v3,navItem:y3,selector:w3,"navItem--active":"_navItem--active_e2my2_128",label:b3},x3=({active:r,ariaLabel:t,icon:a,id:o,label:i,onChange:u})=>{const d=()=>{u&&u(o)};return P.jsx("li",{className:Ss.listItem,children:P.jsxs(Pr,{className:Pe(Ss.navItem,{[Ss["navItem--active"]]:r}),onClick:d,"aria-label":t,children:[P.jsx("div",{className:Ss.selector}),a,i&&P.jsx(ze,{className:Ss.label,type:"detail-medium",as:"span",children:i})]})})},k3="_notice__content_1fvlz_106",S3="_notice__header_1fvlz_113",E3="_notice__iconHeadline_1fvlz_119",fr={notice__content:k3,notice__header:S3,notice__iconHeadline:E3,"notice--small":"_notice--small_1fvlz_124","notice--medium":"_notice--medium_1fvlz_127","notice--sticky":"_notice--sticky_1fvlz_130","notice--embedded":"_notice--embedded_1fvlz_133","notice--pink":"_notice--pink_1fvlz_137","notice--green":"_notice--green_1fvlz_140","notice--grey":"_notice--grey_1fvlz_143"},C3=({context:r,dismissible:t,iconName:a,notificationBubble:o,onClick:i,onDismiss:u,primaryText:d,secondaryText:v,size:m,textButton:x,type:_})=>{const k=Pe(fr[`notice--${m}`],fr[`notice--${_}`],{[fr["notice--green"]]:r==="infoGreen",[fr["notice--grey"]]:r==="infoGrey"}),M=t&&v;return P.jsxs("div",{className:fr.notice,children:[P.jsxs("div",{className:Pe(fr.notice__content,k),children:[P.jsxs("div",{className:fr.notice__header,children:[P.jsxs("div",{className:fr.notice__iconHeadline,children:[a&&P.jsx(Lt,{name:a,size:"24"}),o&&P.jsx(Os,{...o}),d&&P.jsx(ze,{type:m==="small"?"detail-bold":"h5",children:d})]}),M&&P.jsx(da,{onClick:u,icon:"cross",ariaLabel:"Schließen",size:"small"}),!v&&x&&P.jsx(Cn,{onClick:i,color:"blue",size:m,text:x})]}),v&&P.jsx(ze,{type:m==="small"?"detail-medium":"body-regular",children:v}),v&&x&&P.jsx(Cn,{onClick:i,color:"blue",size:m,text:x})]}),_==="sticky"&&P.jsx(o1,{})]})},_3=({dismissible:r,iconName:t,notificationBubble:a,onDismiss:o,primaryText:i,secondaryText:u,size:d})=>{const v=Pe(fr["notice--pink"],fr[`notice--${d}`],fr["notice--embedded"]);return P.jsx("div",{className:fr.notice,children:P.jsxs("div",{className:Pe(fr.notice__content,v),children:[P.jsxs("div",{className:fr.notice__header,children:[P.jsxs("div",{className:fr.notice__iconHeadline,children:[t&&P.jsx(Lt,{name:t,size:"24"}),a&&P.jsx(Os,{...a}),i&&P.jsx(ze,{type:d==="small"?"detail-bold":"h5",children:i})]}),r&&P.jsx(da,{onClick:o,icon:"cross",ariaLabelledBy:"Schließen",size:"small"})]}),u&&P.jsx(ze,{type:d==="small"?"detail-medium":"body-regular",children:u})]})})},R3=r=>r.context==="warning"?P.jsx(_3,{...r}):P.jsx(C3,{...r}),T3="_root_1g8mo_106",Bl={root:T3,"root--24":"_root--24_1g8mo_113","root--28":"_root--28_1g8mo_117","root--32":"_root--32_1g8mo_121","root--40":"_root--40_1g8mo_125","root--48":"_root--48_1g8mo_129","root--56":"_root--56_1g8mo_133","root--64":"_root--64_1g8mo_137","root--80":"_root--80_1g8mo_141","root--120":"_root--120_1g8mo_145","root--280":"_root--280_1g8mo_149","root--square":"_root--square_1g8mo_153","root--circular":"_root--circular_1g8mo_165","root--isPlaceholder":"_root--isPlaceholder_1g8mo_168"},pc=({alt:r,className:t,isPlaceholder:a,shape:o,size:i,src:u})=>{const d=Bl["root--isPlaceholder"];return P.jsx("div",{className:Pe(Bl.root,t,Bl[`root--${i}`],Bl[`root--${o}`],{[d]:a}),children:u&&P.jsx(s1,{src:u,alt:r})})},M3="_root_11paf_106",I3="_thumbnail_11paf_118",A3="_iconWrapper_11paf_122",L3="_detail_11paf_133",P3="_title_11paf_141",F3="_notificationText_11paf_148",D3="_unread_11paf_158",O3="_bubble_11paf_161",yo={root:M3,thumbnail:I3,iconWrapper:A3,detail:L3,title:P3,notificationText:F3,unread:D3,bubble:O3},B3=({defaultIcon:r,imgSrc:t,linkText:a,onNotificationClick:o,timeAgo:i,title:u,unread:d=!1})=>P.jsxs(Pr,{onClick:o,className:Pe(yo.root,{[yo.unread]:d}),children:[t?P.jsx(pc,{alt:u,src:t,shape:"square",size:"56",className:yo.thumbnail}):P.jsx("div",{className:yo.iconWrapper,children:r}),P.jsxs("div",{className:yo.detail,children:[P.jsx(ze,{type:"detail-medium",className:yo.title,children:u}),P.jsx(ze,{type:"body-semibold",className:yo.notificationText,children:a}),P.jsx(ze,{type:"detail-medium",children:i})]}),P.jsx("div",{className:yo.bubble})]}),j3="_wrapper_jgtis_106",jl={wrapper:j3,"wrapper--large":"_wrapper--large_jgtis_117","wrapper--small":"_wrapper--small_jgtis_120","wrapper--iconWrapper":"_wrapper--iconWrapper_jgtis_124"},N3=({className:r,icon:t,size:a})=>{const o=xi(t,[Lt]);return P.jsx("div",{className:Pe(jl.wrapper,r,{[jl[`wrapper--${a}`]]:a}),"data-testid":"placeholder-thumbnail",children:P.jsx("div",{className:Pe(jl.wrapper,{[jl["wrapper--iconWrapper"]]:a==="large"}),children:o})})},$3="_base_pz0sp_106",V3={base:$3};var $l=(r=>(r[r.lg=16]="lg",r[r.md=12]="md",r[r.sm=8]="sm",r[r.xl=24]="xl",r))($l||{});const C1=O.forwardRef(({anchor:r,children:t,container:a,handleClickAway:o,id:i,offset:u="sm",open:d,placement:v,strategy:m="fixed"},x)=>{let _=$l.sm;typeof u=="object"?_=u:$l[u]&&(_=$l[u]);let k;return o?k=P.jsx(Wl,{onClickAway:o,touchEvent:!1,children:P.jsx("div",{children:t})}):k=t,P.jsx(t1,{ref:x,className:V3.base,id:i,open:d,anchor:r,offset:_,placement:v,container:a,strategy:m,children:k})});C1.displayName="Popup";const W3="_radio_k830y_106",wf={radio:W3,"radio--small":"_radio--small_k830y_124"};function H3({checked:r,disabled:t,id:a,label:o,onChange:i,size:u,value:d}){const v=wf[`radio--${u}`];return P.jsxs("span",{className:wf.radio,children:[P.jsx("input",{checked:r,onChange:i,"aria-disabled":t,"aria-label":o,className:v,value:d,disabled:t,type:"radio",role:"radio",id:a}),P.jsx("label",{htmlFor:a,className:v,children:o})]})}const U3="_radiobuttoncluster_17n52_106",z3={radiobuttoncluster:U3};function q3(r){const{children:t,disabled:a,onChange:o,value:i}=r;function u(v){o(v)}const d=O.Children.map(t,v=>O.cloneElement(v,{checked:i===v.props.value,onChange:u}));return P.jsx(i1,{disabled:a,className:z3.radiobuttoncluster,children:d})}const Z3="_root_1oeju_106",Y3="_toggle_1oeju_111",G3="_label_1oeju_121",X3="_disabled_1oeju_136",J3="_filled_1oeju_163",Q3="_error_1oeju_166",K3="_icon_1oeju_175",ex="_expanded_1oeju_179",tx="_hidden_1oeju_183",rx="_option_1oeju_187",nx="_selected_1oeju_211",ox="_dropdown_1oeju_219",ax="_errorMessage_1oeju_229",dr={root:Z3,toggle:Y3,label:G3,"toggle--dark":"_toggle--dark_1oeju_129",disabled:X3,"toggle--light":"_toggle--light_1oeju_145",filled:J3,error:Q3,icon:K3,expanded:ex,hidden:tx,option:rx,selected:nx,dropdown:ox,errorMessage:ax},ix=r=>{const t=[];return O.Children.forEach(r,a=>{if(O.isValidElement(a)&&a.type==="option"){const o=a.props.value,i=a.props.label||a.props.children;t.push({label:i,value:o})}}),t};function sx(r,t){return r.find(a=>a.value===t)}function lx({options:r,value:t}){const a=sx(r,t);return a?a.label:null}function cx({child:r,isSelected:t}){const{label:a,value:o}=r,{getRootProps:i}=a0({disabled:!1,label:a,value:o});return P.jsx("div",{...i(),className:Pe(dr.option,{[dr.selected]:t}),children:a})}function ux({children:r,colorScheme:t,disabled:a,errorMessage:o,onChange:i,placeholder:u,value:d}){const v=O.useRef(null),[m,x]=O.useState(!1),_=(q,Q)=>{i(Q)},{contextValue:k,getButtonProps:M,getListboxProps:F}=c0({disabled:a,listboxRef:v,onChange:_,onOpenChange:x,open:m,value:d}),D=ix(r),U=lx({options:D,value:d}),B=!!o,A=!!U,z=dr[`toggle--${t}`];return P.jsxs("div",{className:dr.root,children:[P.jsxs("div",{className:Pe(dr.toggle,z,{[dr.filled]:A&&!a},{[dr.disabled]:a},{[dr.error]:B}),...M(),children:[P.jsx("span",{className:dr.label,children:P.jsx(ze,{type:"body-large",className:Pe({[dr.selectedLabel]:U}),children:U||(u??" ")})}),P.jsx(Lt,{name:"chevron_down",size:"24",className:Pe(dr.icon,{[dr.expanded]:m})})]}),P.jsx("div",{className:Pe(dr.dropdown,{[dr.hidden]:!m}),...F(),children:P.jsx(u0,{value:k,children:D.map((q,Q)=>P.jsx(cx,{child:q,isSelected:q.value===d},Q))})}),o&&P.jsx(ze,{type:"detail-bold",className:dr.errorMessage,children:o})]})}const dx="_backdrop_11wot_106",fx={backdrop:dx},_1=O.forwardRef((r,t)=>P.jsx("div",{ref:t,...r,className:fx.backdrop}));_1.displayName="Backdrop";const px="_sheet_qnncf_106",hx="_sheetWrapper_qnncf_114",mx="_sheetHeader_qnncf_126",gx="_sheetFooter_qnncf_148",Es={sheet:px,sheetWrapper:hx,sheetHeader:mx,sheetFooter:gx,"sheetFooter--alwaysVisible":"_sheetFooter--alwaysVisible_qnncf_156"},vx=({ariaLabel:r,ariaLabelledBy:t,closeButtonText:a="Abbrechen",onClose:o,open:i,sheetBody:u,sheetFooter:d,sheetHeader:v})=>P.jsx(rd,{"aria-label":r,"aria-labelledby":t,open:i,onClose:o,slots:{backdrop:_1},className:Es.sheet,children:P.jsxs("div",{className:Es.sheetWrapper,children:[P.jsx("div",{className:Es.sheetHeader,children:v}),u,P.jsxs("div",{className:Pe(Es.sheetFooter,{[Es["sheetFooter--alwaysVisible"]]:!!d}),children:[P.jsx(Cn,{onClick:o,color:"blue",size:"large",text:a}),d]})]})});function ec(){return ec=Object.assign?Object.assign.bind():function(r){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var o in a)({}).hasOwnProperty.call(a,o)&&(r[o]=a[o])}return r},ec.apply(null,arguments)}function R1(r,t){if(r==null)return{};var a={};for(var o in r)if({}.hasOwnProperty.call(r,o)){if(t.indexOf(o)>=0)continue;a[o]=r[o]}return a}function $u(r,t){return $u=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(a,o){return a.__proto__=o,a},$u(r,t)}function T1(r,t){r.prototype=Object.create(t.prototype),r.prototype.constructor=r,$u(r,t)}function yx(r,t){return r.classList?!!t&&r.classList.contains(t):(" "+(r.className.baseVal||r.className)+" ").indexOf(" "+t+" ")!==-1}function wx(r,t){r.classList?r.classList.add(t):yx(r,t)||(typeof r.className=="string"?r.className=r.className+" "+t:r.setAttribute("class",(r.className&&r.className.baseVal||"")+" "+t))}function bf(r,t){return r.replace(new RegExp("(^|\\s)"+t+"(?:\\s|$)","g"),"$1").replace(/\s+/g," ").replace(/^\s*|\s*$/g,"")}function bx(r,t){r.classList?r.classList.remove(t):typeof r.className=="string"?r.className=bf(r.className,t):r.setAttribute("class",bf(r.className&&r.className.baseVal||"",t))}const xf={disabled:!1};var xx=process.env.NODE_ENV!=="production"?Y.oneOfType([Y.number,Y.shape({enter:Y.number,exit:Y.number,appear:Y.number}).isRequired]):null,kx=process.env.NODE_ENV!=="production"?Y.oneOfType([Y.string,Y.shape({enter:Y.string,exit:Y.string,active:Y.string}),Y.shape({enter:Y.string,enterDone:Y.string,enterActive:Y.string,exit:Y.string,exitDone:Y.string,exitActive:Y.string})]):null;const M1=O.createContext(null);var I1=function(t){return t.scrollTop},Rs="unmounted",aa="exited",ia="entering",gi="entered",Vu="exiting",_n=function(r){T1(t,r);function t(o,i){var u;u=r.call(this,o,i)||this;var d=i,v=d&&!d.isMounting?o.enter:o.appear,m;return u.appearStatus=null,o.in?v?(m=aa,u.appearStatus=ia):m=gi:o.unmountOnExit||o.mountOnEnter?m=Rs:m=aa,u.state={status:m},u.nextCallback=null,u}t.getDerivedStateFromProps=function(i,u){var d=i.in;return d&&u.status===Rs?{status:aa}:null};var a=t.prototype;return a.componentDidMount=function(){this.updateStatus(!0,this.appearStatus)},a.componentDidUpdate=function(i){var u=null;if(i!==this.props){var d=this.state.status;this.props.in?d!==ia&&d!==gi&&(u=ia):(d===ia||d===gi)&&(u=Vu)}this.updateStatus(!1,u)},a.componentWillUnmount=function(){this.cancelNextCallback()},a.getTimeouts=function(){var i=this.props.timeout,u,d,v;return u=d=v=i,i!=null&&typeof i!="number"&&(u=i.exit,d=i.enter,v=i.appear!==void 0?i.appear:d),{exit:u,enter:d,appear:v}},a.updateStatus=function(i,u){if(i===void 0&&(i=!1),u!==null)if(this.cancelNextCallback(),u===ia){if(this.props.unmountOnExit||this.props.mountOnEnter){var d=this.props.nodeRef?this.props.nodeRef.current:_s.findDOMNode(this);d&&I1(d)}this.performEnter(i)}else this.performExit();else this.props.unmountOnExit&&this.state.status===aa&&this.setState({status:Rs})},a.performEnter=function(i){var u=this,d=this.props.enter,v=this.context?this.context.isMounting:i,m=this.props.nodeRef?[v]:[_s.findDOMNode(this),v],x=m[0],_=m[1],k=this.getTimeouts(),M=v?k.appear:k.enter;if(!i&&!d||xf.disabled){this.safeSetState({status:gi},function(){u.props.onEntered(x)});return}this.props.onEnter(x,_),this.safeSetState({status:ia},function(){u.props.onEntering(x,_),u.onTransitionEnd(M,function(){u.safeSetState({status:gi},function(){u.props.onEntered(x,_)})})})},a.performExit=function(){var i=this,u=this.props.exit,d=this.getTimeouts(),v=this.props.nodeRef?void 0:_s.findDOMNode(this);if(!u||xf.disabled){this.safeSetState({status:aa},function(){i.props.onExited(v)});return}this.props.onExit(v),this.safeSetState({status:Vu},function(){i.props.onExiting(v),i.onTransitionEnd(d.exit,function(){i.safeSetState({status:aa},function(){i.props.onExited(v)})})})},a.cancelNextCallback=function(){this.nextCallback!==null&&(this.nextCallback.cancel(),this.nextCallback=null)},a.safeSetState=function(i,u){u=this.setNextCallback(u),this.setState(i,u)},a.setNextCallback=function(i){var u=this,d=!0;return this.nextCallback=function(v){d&&(d=!1,u.nextCallback=null,i(v))},this.nextCallback.cancel=function(){d=!1},this.nextCallback},a.onTransitionEnd=function(i,u){this.setNextCallback(u);var d=this.props.nodeRef?this.props.nodeRef.current:_s.findDOMNode(this),v=i==null&&!this.props.addEndListener;if(!d||v){setTimeout(this.nextCallback,0);return}if(this.props.addEndListener){var m=this.props.nodeRef?[this.nextCallback]:[d,this.nextCallback],x=m[0],_=m[1];this.props.addEndListener(x,_)}i!=null&&setTimeout(this.nextCallback,i)},a.render=function(){var i=this.state.status;if(i===Rs)return null;var u=this.props,d=u.children;u.in,u.mountOnEnter,u.unmountOnExit,u.appear,u.enter,u.exit,u.timeout,u.addEndListener,u.onEnter,u.onEntering,u.onEntered,u.onExit,u.onExiting,u.onExited,u.nodeRef;var v=R1(u,["children","in","mountOnEnter","unmountOnExit","appear","enter","exit","timeout","addEndListener","onEnter","onEntering","onEntered","onExit","onExiting","onExited","nodeRef"]);return O.createElement(M1.Provider,{value:null},typeof d=="function"?d(i,v):O.cloneElement(O.Children.only(d),v))},t}(O.Component);_n.contextType=M1;_n.propTypes=process.env.NODE_ENV!=="production"?{nodeRef:Y.shape({current:typeof Element>"u"?Y.any:function(r,t,a,o,i,u){var d=r[t];return Y.instanceOf(d&&"ownerDocument"in d?d.ownerDocument.defaultView.Element:Element)(r,t,a,o,i,u)}}),children:Y.oneOfType([Y.func.isRequired,Y.element.isRequired]).isRequired,in:Y.bool,mountOnEnter:Y.bool,unmountOnExit:Y.bool,appear:Y.bool,enter:Y.bool,exit:Y.bool,timeout:function(t){var a=xx;t.addEndListener||(a=a.isRequired);for(var o=arguments.length,i=new Array(o>1?o-1:0),u=1;u<o;u++)i[u-1]=arguments[u];return a.apply(void 0,[t].concat(i))},addEndListener:Y.func,onEnter:Y.func,onEntering:Y.func,onEntered:Y.func,onExit:Y.func,onExiting:Y.func,onExited:Y.func}:{};function mi(){}_n.defaultProps={in:!1,mountOnEnter:!1,unmountOnExit:!1,appear:!1,enter:!0,exit:!0,onEnter:mi,onEntering:mi,onEntered:mi,onExit:mi,onExiting:mi,onExited:mi};_n.UNMOUNTED=Rs;_n.EXITED=aa;_n.ENTERING=ia;_n.ENTERED=gi;_n.EXITING=Vu;var Sx=function(t,a){return t&&a&&a.split(" ").forEach(function(o){return wx(t,o)})},Tu=function(t,a){return t&&a&&a.split(" ").forEach(function(o){return bx(t,o)})},gd=function(r){T1(t,r);function t(){for(var o,i=arguments.length,u=new Array(i),d=0;d<i;d++)u[d]=arguments[d];return o=r.call.apply(r,[this].concat(u))||this,o.appliedClasses={appear:{},enter:{},exit:{}},o.onEnter=function(v,m){var x=o.resolveArguments(v,m),_=x[0],k=x[1];o.removeClasses(_,"exit"),o.addClass(_,k?"appear":"enter","base"),o.props.onEnter&&o.props.onEnter(v,m)},o.onEntering=function(v,m){var x=o.resolveArguments(v,m),_=x[0],k=x[1],M=k?"appear":"enter";o.addClass(_,M,"active"),o.props.onEntering&&o.props.onEntering(v,m)},o.onEntered=function(v,m){var x=o.resolveArguments(v,m),_=x[0],k=x[1],M=k?"appear":"enter";o.removeClasses(_,M),o.addClass(_,M,"done"),o.props.onEntered&&o.props.onEntered(v,m)},o.onExit=function(v){var m=o.resolveArguments(v),x=m[0];o.removeClasses(x,"appear"),o.removeClasses(x,"enter"),o.addClass(x,"exit","base"),o.props.onExit&&o.props.onExit(v)},o.onExiting=function(v){var m=o.resolveArguments(v),x=m[0];o.addClass(x,"exit","active"),o.props.onExiting&&o.props.onExiting(v)},o.onExited=function(v){var m=o.resolveArguments(v),x=m[0];o.removeClasses(x,"exit"),o.addClass(x,"exit","done"),o.props.onExited&&o.props.onExited(v)},o.resolveArguments=function(v,m){return o.props.nodeRef?[o.props.nodeRef.current,v]:[v,m]},o.getClassNames=function(v){var m=o.props.classNames,x=typeof m=="string",_=x&&m?m+"-":"",k=x?""+_+v:m[v],M=x?k+"-active":m[v+"Active"],F=x?k+"-done":m[v+"Done"];return{baseClassName:k,activeClassName:M,doneClassName:F}},o}var a=t.prototype;return a.addClass=function(i,u,d){var v=this.getClassNames(u)[d+"ClassName"],m=this.getClassNames("enter"),x=m.doneClassName;u==="appear"&&d==="done"&&x&&(v+=" "+x),d==="active"&&i&&I1(i),v&&(this.appliedClasses[u][d]=v,Sx(i,v))},a.removeClasses=function(i,u){var d=this.appliedClasses[u],v=d.base,m=d.active,x=d.done;this.appliedClasses[u]={},v&&Tu(i,v),m&&Tu(i,m),x&&Tu(i,x)},a.render=function(){var i=this.props;i.classNames;var u=R1(i,["classNames"]);return O.createElement(_n,ec({},u,{onEnter:this.onEnter,onEntered:this.onEntered,onEntering:this.onEntering,onExit:this.onExit,onExiting:this.onExiting,onExited:this.onExited}))},t}(O.Component);gd.defaultProps={classNames:""};gd.propTypes=process.env.NODE_ENV!=="production"?ec({},_n.propTypes,{classNames:kx,onEnter:Y.func,onEntering:Y.func,onEntered:Y.func,onExit:Y.func,onExiting:Y.func,onExited:Y.func}):{};const Ex="_snackbarbottom_194fm_1",Cx="_snackbar_194fm_138",_x="_snackbar__left_194fm_162",Rx="_snackbar__right_194fm_168",Tx="_snackbar__textLabel_194fm_173",Mx="_snackbar__textButton_194fm_181",Ix="_snackbar__dismiss_194fm_184",Ax="_snackbar__icon_194fm_187",Sr={"animation--enter":"_animation--enter_194fm_120","animation--enter-active":"_animation--enter-active_194fm_124",snackbarbottom:Ex,"animation--exit":"_animation--exit_194fm_129","animation--exit-active":"_animation--exit-active_194fm_133",snackbar:Cx,snackbar__left:_x,snackbar__right:Rx,snackbar__textLabel:Tx,snackbar__textButton:Mx,snackbar__dismiss:Ix,snackbar__icon:Ax},Lx=60,kf=600,Px=({dismissable:r=!1,isOpen:t,leftIconLarge:a,leftIconSmall:o,onClick:i,onClose:u,rightIconLarge:d,rightIconSmall:v,textButton:m,textLabel:x})=>{const[_,k]=O.useState(!1),[M,F]=O.useState(0),[D,U]=O.useState(4e3),B=O.useRef(null),{getRootProps:A}=d0({autoHideDuration:D,onClose:u,open:t}),z=V=>{const ne=V.changedTouches[0].clientY;F(ne),U(null)},q=V=>{requestAnimationFrame(()=>{if(B.current){const ie=V.changedTouches[0].clientY,de=M-Math.max(M,ie),he=Math.abs(1e3/de);B.current.style.marginBottom=`${de}px`,B.current.style.opacity=`${he}%`}})},Q=V=>{const ne=V.changedTouches[0].clientY,ie=()=>{B.current&&(B.current.style.marginBottom="0",B.current.style.opacity="100%"),U(4e3),k(!1)};ne-M>Lx?(k(!0),u&&u(),B.current&&(B.current.style.opacity="0"),setTimeout(()=>{ie()},kf+10)):ie()};return P.jsx(gd,{nodeRef:B,timeout:kf,in:t,classNames:{enter:Sr["animation--enter"],enterActive:Sr["animation--enter-active"],exit:Pe({[Sr["animation--exit"]]:!_}),exitActive:Pe({[Sr["animation--exit-active"]]:!_})},unmountOnExit:!0,children:P.jsxs("div",{role:"alertdialog",...A,className:Sr.snackbar,onTouchMove:q,onTouchStart:z,onTouchEnd:Q,ref:B,children:[P.jsxs("div",{className:Sr.snackbar__left,children:[a&&P.jsx(Lt,{name:a,size:"32",className:Sr.snackbar__icon}),o&&P.jsx(Lt,{name:o,size:"24",className:Sr.snackbar__icon}),x&&P.jsx(ze,{type:"body-semibold",className:Sr.snackbar__textLabel,children:x})]}),P.jsxs("div",{className:Sr.snackbar__right,children:[d&&P.jsx(Lt,{name:d,size:"32",className:Sr.snackbar__icon}),v&&P.jsx(Lt,{name:v,size:"24",className:Sr.snackbar__icon}),m&&P.jsx("div",{className:Sr.snackbar__textButton,children:P.jsx(Cn,{color:"green",size:"medium",text:m,onClick:i})})]}),r&&P.jsx(da,{icon:"cross",size:"small",ariaLabel:"Schließen",onClick:u,className:Sr.snackbar__dismiss})]})})},Fx="_wrapper_nsyzs_106",Dx="_label_nsyzs_110",Ox="_textArea_nsyzs_124",Bx="_textAreaContainer_nsyzs_152",wo={wrapper:Fx,label:Dx,textArea:Ox,textAreaContainer:Bx,"textAreaContainer--dark":"_textAreaContainer--dark_nsyzs_158","textAreaContainer--light":"_textAreaContainer--light_nsyzs_173","textAreaContainer--medium":"_textAreaContainer--medium_nsyzs_191","textAreaContainer--small":"_textAreaContainer--small_nsyzs_212","textAreaContainer--error":"_textAreaContainer--error_nsyzs_232","textAreaContainer--errorMessage":"_textAreaContainer--errorMessage_nsyzs_250"},jx=({colorScheme:r,errorMessage:t,id:a,label:o,name:i,ref:u,size:d,...v})=>{const{getInputProps:m,getRootProps:x}=jf({inputRef:u,...v}),_=m(),{disabled:k}=_,M=!!t,F=wo[`textAreaContainer--${r}`],D=wo[`textAreaContainer--${d}`];return P.jsxs("div",{className:wo.wrapper,children:[P.jsxs("div",{className:Pe(wo.textAreaContainer,D,F,{[wo["textAreaContainer--error"]]:M}),...x(),children:[P.jsx("textarea",{..._,id:a,name:i,"aria-disabled":k,"aria-label":o,className:Pe(wo.textArea),placeholder:""}),P.jsx("label",{className:wo.label,htmlFor:a,children:P.jsx(ze,{type:d==="medium"?"body-large":"body-regular",children:o})})]}),M&&P.jsx(ze,{className:wo["textAreaContainer--errorMessage"],type:"detail-bold",children:t})]})},Nx="_wrapper_1t6h5_106",$x="_textInputContainer_1t6h5_109",Vx="_textInput_1t6h5_109",na={wrapper:Nx,textInputContainer:$x,textInput:Vx,"textInput--medium":"_textInput--medium_1t6h5_153","textInput--small":"_textInput--small_1t6h5_173","textInput--dark":"_textInput--dark_1t6h5_192","textInput--light":"_textInput--light_1t6h5_207","textInput--error":"_textInput--error_1t6h5_225","textInputContainer--errorMessage":"_textInputContainer--errorMessage_1t6h5_243"},Wx=({colorScheme:r,errorMessage:t,id:a,label:o,name:i,ref:u,size:d,...v})=>{const{getInputProps:m,getRootProps:x}=jf({inputRef:u,...v}),_=m(),{disabled:k}=_,M=!!t,F=na[`textInput--${r}`],D=na[`textInput--${d}`];return P.jsxs("div",{className:na.wrapper,children:[P.jsxs("div",{className:na.textInputContainer,...x(),children:[P.jsx("input",{..._,id:a,type:"text",name:i,"aria-disabled":k,"aria-label":o,className:Pe(na.textInput,D,F,{[na["textInput--error"]]:M}),placeholder:""}),P.jsx("label",{htmlFor:a,children:P.jsx(ze,{type:d==="medium"?"body-large":"body-regular",children:o})})]}),M&&P.jsx(ze,{className:na["textInputContainer--errorMessage"],type:"detail-bold",children:t})]})},Hx="_wrapper_bd6jp_106",Ux="_isPlaceholder_bd6jp_114",zx="_square_bd6jp_126",qx="_circular_bd6jp_129",Zx="_label_bd6jp_132",Cs={wrapper:Hx,isPlaceholder:Ux,square:zx,circular:qx,label:Zx},Yx=({alt:r,isPlaceholder:t,label:a,placeholderIcon:o,shape:i,src:u})=>P.jsxs("div",{className:Cs.wrapper,children:[!t&&u&&P.jsx(pc,{className:Cs[i],src:u,alt:r,shape:i,size:"64"}),t&&o&&P.jsx("div",{className:Pe(Cs.isPlaceholder,Cs[i]),children:P.jsx(Lt,{name:o})}),P.jsx(ze,{as:"span",type:"detail-medium",className:Cs.label,children:a})]}),Gx="_thumbnailWrapper_a828p_106",Xx="_thumbnailWrapper__thumbnail_a828p_110",Sf={thumbnailWrapper:Gx,thumbnailWrapper__thumbnail:Xx},Jx=({ariaLabel:r,children:t,thumbnail:a})=>P.jsx(ac,{badgeContent:P.jsx(pc,{...a}),className:Sf.thumbnailWrapper,slotProps:{badge:{className:Sf.thumbnailWrapper__thumbnail}},"aria-label":r,role:"status",children:t}),Qx="_slider_1a5cx_112",Kx="_focusVisible_1a5cx_134",Mu={switch:"_switch_1a5cx_106",slider:Qx,focusVisible:Kx},A1=r=>{const{checked:t,disabled:a,focusVisible:o,getInputProps:i}=f0(r),{className:u,id:d}=r;return P.jsxs("span",{className:Pe(Mu.switch,u),children:[P.jsx("input",{...i(),type:"checkbox","aria-checked":t,"aria-disabled":a,role:"switch",id:d,"data-testid":"toggle-switch"}),P.jsx("span",{className:Pe(Mu.slider,{[Mu.focusVisible]:o})})]})},e4="_toggleInput_1j7zm_106",t4="_textWrapper_1j7zm_119",oa={toggleInput:e4,textWrapper:t4,"textWrapper--withDescription":"_textWrapper--withDescription_1j7zm_124",switch:"_switch_1j7zm_127","toggleInput--checked":"_toggleInput--checked_1j7zm_130","toggleInput--disabled":"_toggleInput--disabled_1j7zm_133","toggleInput--withBorder":"_toggleInput--withBorder_1j7zm_136"},r4=({checked:r,defaultChecked:t,description:a,disabled:o,icon:i,label:u,onChange:d,withBorder:v})=>P.jsxs("label",{className:Pe(oa.toggleInput,{[oa["toggleInput--withBorder"]]:v,[oa["toggleInput--checked"]]:r,[oa["toggleInput--disabled"]]:o}),children:[i&&P.jsx(Lt,{name:i,size:"32"}),P.jsxs("div",{className:Pe(oa.textWrapper,{[oa["textWrapper--withDescription"]]:a}),children:[P.jsx(ze,{type:"body-large",children:u}),a&&P.jsx(ze,{type:"body-regular",children:a})]}),P.jsx(A1,{onChange:d,disabled:o,checked:r,defaultChecked:t,className:oa.switch})]});exports.ActionBar=fy;exports.Badge=Ry;exports.BadgeIcon=nd;exports.BadgeLabel=Oy;exports.BodyText=pw;exports.BottomSheet=bw;exports.Button=Pr;exports.ButtonPrimary=od;exports.ButtonSecondary=Sw;exports.ButtonTertiary=n1;exports.Card=Mw;exports.CardBody=ad;exports.CardHeader=id;exports.Divider=o1;exports.EmptyState=jw;exports.FeedItemCategory=$w;exports.FeedTile=Uw;exports.Fieldset=i1;exports.Form=Zw;exports.Icon=Lt;exports.IconButton=da;exports.Image=s1;exports.LabelPill=l1;exports.Legend=eb;exports.Loader=nb;exports.Markdown=Qb;exports.MenuItem=n3;exports.MenuTile=i3;exports.Modal=p3;exports.NavBar=g3;exports.NavItem=x3;exports.Notice=R3;exports.NotificationBubble=Os;exports.NotificationListItem=B3;exports.PlaceholderThumbnail=N3;exports.Popup=C1;exports.RadioButton=H3;exports.RadioButtonCluster=q3;exports.Select=ux;exports.Sheet=vx;exports.Snackbar=Px;exports.Sticker=a1;exports.TextArea=jx;exports.TextButton=Cn;exports.TextInput=Wx;exports.Thumbnail=pc;exports.ThumbnailWithLabel=Yx;exports.ThumbnailWrapper=Jx;exports.Toggle=A1;exports.ToggleInput=r4;exports.Typography=ze;
|
|
206
|
+
Please report this to https://github.com/markedjs/marked.`,t){const i="<p>An error occurred:</p><pre>"+Ir(o.message+"",!0)+"</pre>";return a?Promise.resolve(i):i}if(a)return Promise.reject(o);throw o}};const fa=new Gb;function lt(r,t){return fa.parse(r,t)}lt.options=lt.setOptions=function(r){return fa.setOptions(r),lt.defaults=fa.defaults,p1(lt.defaults),lt};lt.getDefaults=cd;lt.defaults=ha;lt.use=function(...r){return fa.use(...r),lt.defaults=fa.defaults,p1(lt.defaults),lt};lt.walkTokens=function(r,t){return fa.walkTokens(r,t)};lt.parseInline=fa.parseInline;lt.Parser=kn;lt.parser=kn.parse;lt.Renderer=Kl;lt.TextRenderer=md;lt.Lexer=xn;lt.lexer=xn.lex;lt.Tokenizer=Jl;lt.Hooks=As;lt.parse=lt;lt.options;lt.setOptions;lt.use;lt.walkTokens;lt.parseInline;kn.parse;xn.lex;const Xb=r=>r.replace(/"/g,"QUOTE"),Jb=r=>r.replace(new RegExp("QUOTE","g"),'"');function Qb({className:r,inline:t=!1,text:a}){const o=Jb(lb(Xb(a)));return P.jsx("span",{className:r,dangerouslySetInnerHTML:{__html:t?lt.parseInline(o):lt.parse(o)}})}const Kb="_menuItem_ttg90_106",e3="_highlightFrame_ttg90_120",t3="_rightIcon_ttg90_128",r3="_leftIcon_ttg90_136",ra={menuItem:Kb,highlightFrame:e3,rightIcon:t3,"menuItem--selected":"_menuItem--selected_ttg90_133",leftIcon:r3,"menuItem--compact":"_menuItem--compact_ttg90_147","highlightFrame--compact":"_highlightFrame--compact_ttg90_157"},n3=({className:r,compact:t,href:a,isSelected:o,labelPillClassName:i,labelPillText:u,leftIcon:d,onClick:v,rightIcon:m,role:x,text:_})=>{const k=()=>t?"body-regular":o?"h5":"body-large";return P.jsx(Pr,{role:x,onClick:v,className:Pe(r,ra.menuItem,{[ra["menuItem--selected"]]:o,[ra["menuItem--compact"]]:t}),...a?{href:a}:{},children:P.jsxs("span",{className:Pe(ra.highlightFrame,{[ra["menuItem--compact"]]:t}),children:[d&&P.jsx("span",{className:ra.leftIcon,children:d}),P.jsx(ze,{type:k(),as:"span",children:_}),u&&P.jsx(l1,{label:u,size:"medium",className:i}),m&&P.jsx("span",{className:ra.rightIcon,children:m})]})})},o3="_menuTile_o61bq_106",a3="_menuTile__value_o61bq_126",Dl={menuTile:o3,"menuTile--fullWidth":"_menuTile--fullWidth_o61bq_119","menuTile--icon":"_menuTile--icon_o61bq_122",menuTile__value:a3},i3=({fullWidth:r=!1,icon:t,primaryText:a,secondaryText:o,...i})=>P.jsxs(Pr,{...i,className:Pe(Dl.menuTile,{[Dl["menuTile--icon"]]:t,[Dl["menuTile--fullWidth"]]:r}),children:[t&&P.jsx(Lt,{name:t}),a&&P.jsx(ze,{type:"detail-bold",className:Dl.menuTile__value,children:a}),o&&P.jsx(ze,{type:"detail-medium",children:o})]}),s3="_backdrop_1lf8q_106",l3={backdrop:s3},E1=O.forwardRef((r,t)=>P.jsx("div",{ref:t,...r,className:l3.backdrop}));E1.displayName="Backdrop";const c3="_modal_ftzhr_106",u3="_modalWrapper_ftzhr_114",d3="_modalHeader_ftzhr_130",f3="_modalFooter_ftzhr_143",Ol={modal:c3,modalWrapper:u3,modalHeader:d3,modalFooter:f3},p3=({ariaLabel:r,ariaLabelledBy:t,closeButtonText:a="Abbrechen",headerTitle:o,modalBody:i,modalFooter:u,onClose:d,open:v})=>P.jsx(rd,{"aria-label":r,"aria-labelledby":t,open:v,onClose:d,slots:{backdrop:E1},className:Ol.modal,children:P.jsxs("div",{className:Ol.modalWrapper,children:[P.jsx(id,{className:Ol.modalHeader,headline:o,rightElement:P.jsx(da,{icon:"cross_circle",onClick:d,size:"small",ariaLabel:"Schließen"})}),P.jsx(ad,{children:i}),P.jsxs("div",{className:Ol.modalFooter,children:[P.jsx(Cn,{onClick:d,color:"blue",size:"large",text:a}),u]})]})}),h3="_navBar_1b0o6_106",m3={navBar:h3},g3=({children:r,onChange:t,value:a})=>{const[o,i]=O.useState(a||""),u=d=>{t(d),i(d)};return P.jsx("ul",{className:m3.navBar,children:O.Children.map(r,d=>O.cloneElement(d,{active:d.props.id.toLowerCase()===o.toLowerCase(),onChange:u}))})},v3="_listItem_e2my2_106",y3="_navItem_e2my2_106",w3="_selector_e2my2_120",b3="_label_e2my2_141",Ss={listItem:v3,navItem:y3,selector:w3,"navItem--active":"_navItem--active_e2my2_128",label:b3},x3=({active:r,ariaLabel:t,icon:a,id:o,label:i,onChange:u})=>{const d=()=>{u&&u(o)};return P.jsx("li",{className:Ss.listItem,children:P.jsxs(Pr,{className:Pe(Ss.navItem,{[Ss["navItem--active"]]:r}),onClick:d,"aria-label":t,children:[P.jsx("div",{className:Ss.selector}),a,i&&P.jsx(ze,{className:Ss.label,type:"detail-medium",as:"span",children:i})]})})},k3="_notice__content_1fvlz_106",S3="_notice__header_1fvlz_113",E3="_notice__iconHeadline_1fvlz_119",fr={notice__content:k3,notice__header:S3,notice__iconHeadline:E3,"notice--small":"_notice--small_1fvlz_124","notice--medium":"_notice--medium_1fvlz_127","notice--sticky":"_notice--sticky_1fvlz_130","notice--embedded":"_notice--embedded_1fvlz_133","notice--pink":"_notice--pink_1fvlz_137","notice--green":"_notice--green_1fvlz_140","notice--grey":"_notice--grey_1fvlz_143"},C3=({context:r,dismissible:t,iconName:a,notificationBubble:o,onClick:i,onDismiss:u,primaryText:d,secondaryText:v,size:m,textButton:x,type:_})=>{const k=Pe(fr[`notice--${m}`],fr[`notice--${_}`],{[fr["notice--green"]]:r==="infoGreen",[fr["notice--grey"]]:r==="infoGrey"}),M=t&&v;return P.jsxs("div",{className:fr.notice,children:[P.jsxs("div",{className:Pe(fr.notice__content,k),children:[P.jsxs("div",{className:fr.notice__header,children:[P.jsxs("div",{className:fr.notice__iconHeadline,children:[a&&P.jsx(Lt,{name:a,size:"24"}),o&&P.jsx(Os,{...o}),d&&P.jsx(ze,{type:m==="small"?"detail-bold":"h5",children:d})]}),M&&P.jsx(da,{onClick:u,icon:"cross",ariaLabel:"Schließen",size:"small"}),!v&&x&&P.jsx(Cn,{onClick:i,color:"blue",size:m,text:x})]}),v&&P.jsx(ze,{type:m==="small"?"detail-medium":"body-regular",children:v}),v&&x&&P.jsx(Cn,{onClick:i,color:"blue",size:m,text:x})]}),_==="sticky"&&P.jsx(o1,{})]})},_3=({dismissible:r,iconName:t,notificationBubble:a,onDismiss:o,primaryText:i,secondaryText:u,size:d})=>{const v=Pe(fr["notice--pink"],fr[`notice--${d}`],fr["notice--embedded"]);return P.jsx("div",{className:fr.notice,children:P.jsxs("div",{className:Pe(fr.notice__content,v),children:[P.jsxs("div",{className:fr.notice__header,children:[P.jsxs("div",{className:fr.notice__iconHeadline,children:[t&&P.jsx(Lt,{name:t,size:"24"}),a&&P.jsx(Os,{...a}),i&&P.jsx(ze,{type:d==="small"?"detail-bold":"h5",children:i})]}),r&&P.jsx(da,{onClick:o,icon:"cross",ariaLabelledBy:"Schließen",size:"small"})]}),u&&P.jsx(ze,{type:d==="small"?"detail-medium":"body-regular",children:u})]})})},R3=r=>r.context==="warning"?P.jsx(_3,{...r}):P.jsx(C3,{...r}),T3="_root_1g8mo_106",Bl={root:T3,"root--24":"_root--24_1g8mo_113","root--28":"_root--28_1g8mo_117","root--32":"_root--32_1g8mo_121","root--40":"_root--40_1g8mo_125","root--48":"_root--48_1g8mo_129","root--56":"_root--56_1g8mo_133","root--64":"_root--64_1g8mo_137","root--80":"_root--80_1g8mo_141","root--120":"_root--120_1g8mo_145","root--280":"_root--280_1g8mo_149","root--square":"_root--square_1g8mo_153","root--circular":"_root--circular_1g8mo_165","root--isPlaceholder":"_root--isPlaceholder_1g8mo_168"},pc=({alt:r,className:t,isPlaceholder:a,shape:o,size:i,src:u})=>{const d=Bl["root--isPlaceholder"];return P.jsx("div",{className:Pe(Bl.root,t,Bl[`root--${i}`],Bl[`root--${o}`],{[d]:a}),children:u&&P.jsx(s1,{src:u,alt:r})})},M3="_root_11paf_106",I3="_thumbnail_11paf_118",A3="_iconWrapper_11paf_122",L3="_detail_11paf_133",P3="_title_11paf_141",F3="_notificationText_11paf_148",D3="_unread_11paf_158",O3="_bubble_11paf_161",yo={root:M3,thumbnail:I3,iconWrapper:A3,detail:L3,title:P3,notificationText:F3,unread:D3,bubble:O3},B3=({defaultIcon:r,imgSrc:t,linkText:a,onNotificationClick:o,timeAgo:i,title:u,unread:d=!1})=>P.jsxs(Pr,{onClick:o,className:Pe(yo.root,{[yo.unread]:d}),children:[t?P.jsx(pc,{alt:u,src:t,shape:"square",size:"56",className:yo.thumbnail}):P.jsx("div",{className:yo.iconWrapper,children:r}),P.jsxs("div",{className:yo.detail,children:[P.jsx(ze,{type:"detail-medium",className:yo.title,children:u}),P.jsx(ze,{type:"body-semibold",className:yo.notificationText,children:a}),P.jsx(ze,{type:"detail-medium",children:i})]}),P.jsx("div",{className:yo.bubble})]}),j3="_wrapper_jgtis_106",jl={wrapper:j3,"wrapper--large":"_wrapper--large_jgtis_117","wrapper--small":"_wrapper--small_jgtis_120","wrapper--iconWrapper":"_wrapper--iconWrapper_jgtis_124"},N3=({className:r,icon:t,size:a})=>{const o=xi(t,[Lt]);return P.jsx("div",{className:Pe(jl.wrapper,r,{[jl[`wrapper--${a}`]]:a}),"data-testid":"placeholder-thumbnail",children:P.jsx("div",{className:Pe(jl.wrapper,{[jl["wrapper--iconWrapper"]]:a==="large"}),children:o})})},$3="_base_pz0sp_106",V3={base:$3};var $l=(r=>(r[r.lg=16]="lg",r[r.md=12]="md",r[r.sm=8]="sm",r[r.xl=24]="xl",r))($l||{});const C1=O.forwardRef(({anchor:r,children:t,container:a,handleClickAway:o,id:i,offset:u="sm",open:d,placement:v,strategy:m="fixed"},x)=>{let _=$l.sm;typeof u=="object"?_=u:$l[u]&&(_=$l[u]);let k;return o?k=P.jsx(Wl,{onClickAway:o,touchEvent:!1,children:P.jsx("div",{children:t})}):k=t,P.jsx(t1,{ref:x,className:V3.base,id:i,open:d,anchor:r,offset:_,placement:v,container:a,strategy:m,children:k})});C1.displayName="Popup";const W3="_radio_k830y_106",wf={radio:W3,"radio--small":"_radio--small_k830y_124"};function H3({checked:r,disabled:t,id:a,label:o,onChange:i,size:u,value:d}){const v=wf[`radio--${u}`];return P.jsxs("span",{className:wf.radio,children:[P.jsx("input",{checked:r,onChange:i,"aria-disabled":t,"aria-label":o,className:v,value:d,disabled:t,type:"radio",role:"radio",id:a}),P.jsx("label",{htmlFor:a,className:v,children:o})]})}const U3="_radiobuttoncluster_17n52_106",z3={radiobuttoncluster:U3};function q3(r){const{children:t,disabled:a,onChange:o,value:i}=r;function u(v){o(v)}const d=O.Children.map(t,v=>O.cloneElement(v,{checked:i===v.props.value,onChange:u}));return P.jsx(i1,{disabled:a,className:z3.radiobuttoncluster,children:d})}const Z3="_root_1oeju_106",Y3="_toggle_1oeju_111",G3="_label_1oeju_121",X3="_disabled_1oeju_136",J3="_filled_1oeju_163",Q3="_error_1oeju_166",K3="_icon_1oeju_175",ex="_expanded_1oeju_179",tx="_hidden_1oeju_183",rx="_option_1oeju_187",nx="_selected_1oeju_211",ox="_dropdown_1oeju_219",ax="_errorMessage_1oeju_229",dr={root:Z3,toggle:Y3,label:G3,"toggle--dark":"_toggle--dark_1oeju_129",disabled:X3,"toggle--light":"_toggle--light_1oeju_145",filled:J3,error:Q3,icon:K3,expanded:ex,hidden:tx,option:rx,selected:nx,dropdown:ox,errorMessage:ax},ix=r=>{const t=[];return O.Children.forEach(r,a=>{if(O.isValidElement(a)&&a.type==="option"){const o=a.props.value,i=a.props.label||a.props.children;t.push({label:i,value:o})}}),t};function sx(r,t){return r.find(a=>a.value===t)}function lx({options:r,value:t}){const a=sx(r,t);return a?a.label:null}function cx({child:r,isSelected:t}){const{label:a,value:o}=r,{getRootProps:i}=a0({disabled:!1,label:a,value:o});return P.jsx("div",{...i(),className:Pe(dr.option,{[dr.selected]:t}),children:a})}function ux({children:r,colorScheme:t,disabled:a,errorMessage:o,onChange:i,placeholder:u,value:d}){const v=O.useRef(null),[m,x]=O.useState(!1),_=(q,Q)=>{i(Q)},{contextValue:k,getButtonProps:M,getListboxProps:F}=c0({disabled:a,listboxRef:v,onChange:_,onOpenChange:x,open:m,value:d}),D=ix(r),U=lx({options:D,value:d}),B=!!o,A=!!U,z=dr[`toggle--${t}`];return P.jsxs("div",{className:dr.root,children:[P.jsxs("div",{className:Pe(dr.toggle,z,{[dr.filled]:A&&!a},{[dr.disabled]:a},{[dr.error]:B}),...M(),children:[P.jsx("span",{className:dr.label,children:P.jsx(ze,{type:"body-large",className:Pe({[dr.selectedLabel]:U}),children:U||(u??" ")})}),P.jsx(Lt,{name:"chevron_down",size:"24",className:Pe(dr.icon,{[dr.expanded]:m})})]}),P.jsx("div",{className:Pe(dr.dropdown,{[dr.hidden]:!m}),...F(),children:P.jsx(u0,{value:k,children:D.map((q,Q)=>P.jsx(cx,{child:q,isSelected:q.value===d},Q))})}),o&&P.jsx(ze,{type:"detail-bold",className:dr.errorMessage,children:o})]})}const dx="_backdrop_11wot_106",fx={backdrop:dx},_1=O.forwardRef((r,t)=>P.jsx("div",{ref:t,...r,className:fx.backdrop}));_1.displayName="Backdrop";const px="_sheet_qnncf_106",hx="_sheetWrapper_qnncf_114",mx="_sheetHeader_qnncf_126",gx="_sheetFooter_qnncf_148",Es={sheet:px,sheetWrapper:hx,sheetHeader:mx,sheetFooter:gx,"sheetFooter--alwaysVisible":"_sheetFooter--alwaysVisible_qnncf_156"},vx=({ariaLabel:r,ariaLabelledBy:t,closeButtonText:a="Abbrechen",onClose:o,open:i,sheetBody:u,sheetFooter:d,sheetHeader:v})=>P.jsx(rd,{"aria-label":r,"aria-labelledby":t,open:i,onClose:o,slots:{backdrop:_1},className:Es.sheet,children:P.jsxs("div",{className:Es.sheetWrapper,children:[P.jsx("div",{className:Es.sheetHeader,children:v}),u,P.jsxs("div",{className:Pe(Es.sheetFooter,{[Es["sheetFooter--alwaysVisible"]]:!!d}),children:[P.jsx(Cn,{onClick:o,color:"blue",size:"large",text:a}),d]})]})});function ec(){return ec=Object.assign?Object.assign.bind():function(r){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var o in a)({}).hasOwnProperty.call(a,o)&&(r[o]=a[o])}return r},ec.apply(null,arguments)}function R1(r,t){if(r==null)return{};var a={};for(var o in r)if({}.hasOwnProperty.call(r,o)){if(t.indexOf(o)>=0)continue;a[o]=r[o]}return a}function $u(r,t){return $u=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(a,o){return a.__proto__=o,a},$u(r,t)}function T1(r,t){r.prototype=Object.create(t.prototype),r.prototype.constructor=r,$u(r,t)}function yx(r,t){return r.classList?!!t&&r.classList.contains(t):(" "+(r.className.baseVal||r.className)+" ").indexOf(" "+t+" ")!==-1}function wx(r,t){r.classList?r.classList.add(t):yx(r,t)||(typeof r.className=="string"?r.className=r.className+" "+t:r.setAttribute("class",(r.className&&r.className.baseVal||"")+" "+t))}function bf(r,t){return r.replace(new RegExp("(^|\\s)"+t+"(?:\\s|$)","g"),"$1").replace(/\s+/g," ").replace(/^\s*|\s*$/g,"")}function bx(r,t){r.classList?r.classList.remove(t):typeof r.className=="string"?r.className=bf(r.className,t):r.setAttribute("class",bf(r.className&&r.className.baseVal||"",t))}const xf={disabled:!1};var xx=process.env.NODE_ENV!=="production"?Y.oneOfType([Y.number,Y.shape({enter:Y.number,exit:Y.number,appear:Y.number}).isRequired]):null,kx=process.env.NODE_ENV!=="production"?Y.oneOfType([Y.string,Y.shape({enter:Y.string,exit:Y.string,active:Y.string}),Y.shape({enter:Y.string,enterDone:Y.string,enterActive:Y.string,exit:Y.string,exitDone:Y.string,exitActive:Y.string})]):null;const M1=O.createContext(null);var I1=function(t){return t.scrollTop},Rs="unmounted",aa="exited",ia="entering",gi="entered",Vu="exiting",_n=function(r){T1(t,r);function t(o,i){var u;u=r.call(this,o,i)||this;var d=i,v=d&&!d.isMounting?o.enter:o.appear,m;return u.appearStatus=null,o.in?v?(m=aa,u.appearStatus=ia):m=gi:o.unmountOnExit||o.mountOnEnter?m=Rs:m=aa,u.state={status:m},u.nextCallback=null,u}t.getDerivedStateFromProps=function(i,u){var d=i.in;return d&&u.status===Rs?{status:aa}:null};var a=t.prototype;return a.componentDidMount=function(){this.updateStatus(!0,this.appearStatus)},a.componentDidUpdate=function(i){var u=null;if(i!==this.props){var d=this.state.status;this.props.in?d!==ia&&d!==gi&&(u=ia):(d===ia||d===gi)&&(u=Vu)}this.updateStatus(!1,u)},a.componentWillUnmount=function(){this.cancelNextCallback()},a.getTimeouts=function(){var i=this.props.timeout,u,d,v;return u=d=v=i,i!=null&&typeof i!="number"&&(u=i.exit,d=i.enter,v=i.appear!==void 0?i.appear:d),{exit:u,enter:d,appear:v}},a.updateStatus=function(i,u){if(i===void 0&&(i=!1),u!==null)if(this.cancelNextCallback(),u===ia){if(this.props.unmountOnExit||this.props.mountOnEnter){var d=this.props.nodeRef?this.props.nodeRef.current:_s.findDOMNode(this);d&&I1(d)}this.performEnter(i)}else this.performExit();else this.props.unmountOnExit&&this.state.status===aa&&this.setState({status:Rs})},a.performEnter=function(i){var u=this,d=this.props.enter,v=this.context?this.context.isMounting:i,m=this.props.nodeRef?[v]:[_s.findDOMNode(this),v],x=m[0],_=m[1],k=this.getTimeouts(),M=v?k.appear:k.enter;if(!i&&!d||xf.disabled){this.safeSetState({status:gi},function(){u.props.onEntered(x)});return}this.props.onEnter(x,_),this.safeSetState({status:ia},function(){u.props.onEntering(x,_),u.onTransitionEnd(M,function(){u.safeSetState({status:gi},function(){u.props.onEntered(x,_)})})})},a.performExit=function(){var i=this,u=this.props.exit,d=this.getTimeouts(),v=this.props.nodeRef?void 0:_s.findDOMNode(this);if(!u||xf.disabled){this.safeSetState({status:aa},function(){i.props.onExited(v)});return}this.props.onExit(v),this.safeSetState({status:Vu},function(){i.props.onExiting(v),i.onTransitionEnd(d.exit,function(){i.safeSetState({status:aa},function(){i.props.onExited(v)})})})},a.cancelNextCallback=function(){this.nextCallback!==null&&(this.nextCallback.cancel(),this.nextCallback=null)},a.safeSetState=function(i,u){u=this.setNextCallback(u),this.setState(i,u)},a.setNextCallback=function(i){var u=this,d=!0;return this.nextCallback=function(v){d&&(d=!1,u.nextCallback=null,i(v))},this.nextCallback.cancel=function(){d=!1},this.nextCallback},a.onTransitionEnd=function(i,u){this.setNextCallback(u);var d=this.props.nodeRef?this.props.nodeRef.current:_s.findDOMNode(this),v=i==null&&!this.props.addEndListener;if(!d||v){setTimeout(this.nextCallback,0);return}if(this.props.addEndListener){var m=this.props.nodeRef?[this.nextCallback]:[d,this.nextCallback],x=m[0],_=m[1];this.props.addEndListener(x,_)}i!=null&&setTimeout(this.nextCallback,i)},a.render=function(){var i=this.state.status;if(i===Rs)return null;var u=this.props,d=u.children;u.in,u.mountOnEnter,u.unmountOnExit,u.appear,u.enter,u.exit,u.timeout,u.addEndListener,u.onEnter,u.onEntering,u.onEntered,u.onExit,u.onExiting,u.onExited,u.nodeRef;var v=R1(u,["children","in","mountOnEnter","unmountOnExit","appear","enter","exit","timeout","addEndListener","onEnter","onEntering","onEntered","onExit","onExiting","onExited","nodeRef"]);return O.createElement(M1.Provider,{value:null},typeof d=="function"?d(i,v):O.cloneElement(O.Children.only(d),v))},t}(O.Component);_n.contextType=M1;_n.propTypes=process.env.NODE_ENV!=="production"?{nodeRef:Y.shape({current:typeof Element>"u"?Y.any:function(r,t,a,o,i,u){var d=r[t];return Y.instanceOf(d&&"ownerDocument"in d?d.ownerDocument.defaultView.Element:Element)(r,t,a,o,i,u)}}),children:Y.oneOfType([Y.func.isRequired,Y.element.isRequired]).isRequired,in:Y.bool,mountOnEnter:Y.bool,unmountOnExit:Y.bool,appear:Y.bool,enter:Y.bool,exit:Y.bool,timeout:function(t){var a=xx;t.addEndListener||(a=a.isRequired);for(var o=arguments.length,i=new Array(o>1?o-1:0),u=1;u<o;u++)i[u-1]=arguments[u];return a.apply(void 0,[t].concat(i))},addEndListener:Y.func,onEnter:Y.func,onEntering:Y.func,onEntered:Y.func,onExit:Y.func,onExiting:Y.func,onExited:Y.func}:{};function mi(){}_n.defaultProps={in:!1,mountOnEnter:!1,unmountOnExit:!1,appear:!1,enter:!0,exit:!0,onEnter:mi,onEntering:mi,onEntered:mi,onExit:mi,onExiting:mi,onExited:mi};_n.UNMOUNTED=Rs;_n.EXITED=aa;_n.ENTERING=ia;_n.ENTERED=gi;_n.EXITING=Vu;var Sx=function(t,a){return t&&a&&a.split(" ").forEach(function(o){return wx(t,o)})},Tu=function(t,a){return t&&a&&a.split(" ").forEach(function(o){return bx(t,o)})},gd=function(r){T1(t,r);function t(){for(var o,i=arguments.length,u=new Array(i),d=0;d<i;d++)u[d]=arguments[d];return o=r.call.apply(r,[this].concat(u))||this,o.appliedClasses={appear:{},enter:{},exit:{}},o.onEnter=function(v,m){var x=o.resolveArguments(v,m),_=x[0],k=x[1];o.removeClasses(_,"exit"),o.addClass(_,k?"appear":"enter","base"),o.props.onEnter&&o.props.onEnter(v,m)},o.onEntering=function(v,m){var x=o.resolveArguments(v,m),_=x[0],k=x[1],M=k?"appear":"enter";o.addClass(_,M,"active"),o.props.onEntering&&o.props.onEntering(v,m)},o.onEntered=function(v,m){var x=o.resolveArguments(v,m),_=x[0],k=x[1],M=k?"appear":"enter";o.removeClasses(_,M),o.addClass(_,M,"done"),o.props.onEntered&&o.props.onEntered(v,m)},o.onExit=function(v){var m=o.resolveArguments(v),x=m[0];o.removeClasses(x,"appear"),o.removeClasses(x,"enter"),o.addClass(x,"exit","base"),o.props.onExit&&o.props.onExit(v)},o.onExiting=function(v){var m=o.resolveArguments(v),x=m[0];o.addClass(x,"exit","active"),o.props.onExiting&&o.props.onExiting(v)},o.onExited=function(v){var m=o.resolveArguments(v),x=m[0];o.removeClasses(x,"exit"),o.addClass(x,"exit","done"),o.props.onExited&&o.props.onExited(v)},o.resolveArguments=function(v,m){return o.props.nodeRef?[o.props.nodeRef.current,v]:[v,m]},o.getClassNames=function(v){var m=o.props.classNames,x=typeof m=="string",_=x&&m?m+"-":"",k=x?""+_+v:m[v],M=x?k+"-active":m[v+"Active"],F=x?k+"-done":m[v+"Done"];return{baseClassName:k,activeClassName:M,doneClassName:F}},o}var a=t.prototype;return a.addClass=function(i,u,d){var v=this.getClassNames(u)[d+"ClassName"],m=this.getClassNames("enter"),x=m.doneClassName;u==="appear"&&d==="done"&&x&&(v+=" "+x),d==="active"&&i&&I1(i),v&&(this.appliedClasses[u][d]=v,Sx(i,v))},a.removeClasses=function(i,u){var d=this.appliedClasses[u],v=d.base,m=d.active,x=d.done;this.appliedClasses[u]={},v&&Tu(i,v),m&&Tu(i,m),x&&Tu(i,x)},a.render=function(){var i=this.props;i.classNames;var u=R1(i,["classNames"]);return O.createElement(_n,ec({},u,{onEnter:this.onEnter,onEntered:this.onEntered,onEntering:this.onEntering,onExit:this.onExit,onExiting:this.onExiting,onExited:this.onExited}))},t}(O.Component);gd.defaultProps={classNames:""};gd.propTypes=process.env.NODE_ENV!=="production"?ec({},_n.propTypes,{classNames:kx,onEnter:Y.func,onEntering:Y.func,onEntered:Y.func,onExit:Y.func,onExiting:Y.func,onExited:Y.func}):{};const Ex="_snackbarbottom_194fm_1",Cx="_snackbar_194fm_138",_x="_snackbar__left_194fm_162",Rx="_snackbar__right_194fm_168",Tx="_snackbar__textLabel_194fm_173",Mx="_snackbar__textButton_194fm_181",Ix="_snackbar__dismiss_194fm_184",Ax="_snackbar__icon_194fm_187",Sr={"animation--enter":"_animation--enter_194fm_120","animation--enter-active":"_animation--enter-active_194fm_124",snackbarbottom:Ex,"animation--exit":"_animation--exit_194fm_129","animation--exit-active":"_animation--exit-active_194fm_133",snackbar:Cx,snackbar__left:_x,snackbar__right:Rx,snackbar__textLabel:Tx,snackbar__textButton:Mx,snackbar__dismiss:Ix,snackbar__icon:Ax},Lx=60,kf=600,Px=({dismissable:r=!1,isOpen:t,leftIconLarge:a,leftIconSmall:o,onClick:i,onClose:u,rightIconLarge:d,rightIconSmall:v,textButton:m,textLabel:x})=>{const[_,k]=O.useState(!1),[M,F]=O.useState(0),[D,U]=O.useState(4e3),B=O.useRef(null),{getRootProps:A}=d0({autoHideDuration:D,onClose:u,open:t}),z=V=>{const ne=V.changedTouches[0].clientY;F(ne),U(null)},q=V=>{requestAnimationFrame(()=>{if(B.current){const ie=V.changedTouches[0].clientY,de=M-Math.max(M,ie),he=Math.abs(1e3/de);B.current.style.marginBottom=`${de}px`,B.current.style.opacity=`${he}%`}})},Q=V=>{const ne=V.changedTouches[0].clientY,ie=()=>{B.current&&(B.current.style.marginBottom="0",B.current.style.opacity="100%"),U(4e3),k(!1)};ne-M>Lx?(k(!0),u&&u(),B.current&&(B.current.style.opacity="0"),setTimeout(()=>{ie()},kf+10)):ie()};return P.jsx(gd,{nodeRef:B,timeout:kf,in:t,classNames:{enter:Sr["animation--enter"],enterActive:Sr["animation--enter-active"],exit:Pe({[Sr["animation--exit"]]:!_}),exitActive:Pe({[Sr["animation--exit-active"]]:!_})},unmountOnExit:!0,children:P.jsxs("div",{role:"alertdialog",...A,className:Sr.snackbar,onTouchMove:q,onTouchStart:z,onTouchEnd:Q,ref:B,children:[P.jsxs("div",{className:Sr.snackbar__left,children:[a&&P.jsx(Lt,{name:a,size:"32",className:Sr.snackbar__icon}),o&&P.jsx(Lt,{name:o,size:"24",className:Sr.snackbar__icon}),x&&P.jsx(ze,{type:"body-semibold",className:Sr.snackbar__textLabel,children:x})]}),P.jsxs("div",{className:Sr.snackbar__right,children:[d&&P.jsx(Lt,{name:d,size:"32",className:Sr.snackbar__icon}),v&&P.jsx(Lt,{name:v,size:"24",className:Sr.snackbar__icon}),m&&P.jsx("div",{className:Sr.snackbar__textButton,children:P.jsx(Cn,{color:"green",size:"medium",text:m,onClick:i})})]}),r&&P.jsx(da,{icon:"cross",size:"small",ariaLabel:"Schließen",onClick:u,className:Sr.snackbar__dismiss})]})})},Fx="_wrapper_nsyzs_106",Dx="_label_nsyzs_110",Ox="_textArea_nsyzs_124",Bx="_textAreaContainer_nsyzs_152",wo={wrapper:Fx,label:Dx,textArea:Ox,textAreaContainer:Bx,"textAreaContainer--dark":"_textAreaContainer--dark_nsyzs_158","textAreaContainer--light":"_textAreaContainer--light_nsyzs_173","textAreaContainer--medium":"_textAreaContainer--medium_nsyzs_191","textAreaContainer--small":"_textAreaContainer--small_nsyzs_212","textAreaContainer--error":"_textAreaContainer--error_nsyzs_232","textAreaContainer--errorMessage":"_textAreaContainer--errorMessage_nsyzs_250"},jx=({colorScheme:r,errorMessage:t,id:a,label:o,name:i,ref:u,size:d,...v})=>{const{getInputProps:m,getRootProps:x}=jf({inputRef:u,...v}),_=m(),{disabled:k}=_,M=!!t,F=wo[`textAreaContainer--${r}`],D=wo[`textAreaContainer--${d}`];return P.jsxs("div",{className:wo.wrapper,children:[P.jsxs("div",{className:Pe(wo.textAreaContainer,D,F,{[wo["textAreaContainer--error"]]:M}),...x(),children:[P.jsx("textarea",{..._,id:a,name:i,"aria-disabled":k,"aria-label":o,className:Pe(wo.textArea),placeholder:""}),P.jsx("label",{className:wo.label,htmlFor:a,children:P.jsx(ze,{type:d==="medium"?"body-large":"body-regular",children:o})})]}),M&&P.jsx(ze,{className:wo["textAreaContainer--errorMessage"],type:"detail-bold",children:t})]})},Nx="_wrapper_1t6h5_106",$x="_textInputContainer_1t6h5_109",Vx="_textInput_1t6h5_109",na={wrapper:Nx,textInputContainer:$x,textInput:Vx,"textInput--medium":"_textInput--medium_1t6h5_153","textInput--small":"_textInput--small_1t6h5_173","textInput--dark":"_textInput--dark_1t6h5_192","textInput--light":"_textInput--light_1t6h5_207","textInput--error":"_textInput--error_1t6h5_225","textInputContainer--errorMessage":"_textInputContainer--errorMessage_1t6h5_243"},Wx=({colorScheme:r,errorMessage:t,id:a,label:o,name:i,ref:u,size:d,...v})=>{const{getInputProps:m,getRootProps:x}=jf({inputRef:u,...v}),_=m(),{disabled:k}=_,M=!!t,F=na[`textInput--${r}`],D=na[`textInput--${d}`];return P.jsxs("div",{className:na.wrapper,children:[P.jsxs("div",{className:na.textInputContainer,...x(),children:[P.jsx("input",{..._,id:a,type:"text",name:i,"aria-disabled":k,"aria-label":o,className:Pe(na.textInput,D,F,{[na["textInput--error"]]:M}),placeholder:""}),P.jsx("label",{htmlFor:a,children:P.jsx(ze,{type:d==="medium"?"body-large":"body-regular",children:o})})]}),M&&P.jsx(ze,{className:na["textInputContainer--errorMessage"],type:"detail-bold",children:t})]})},Hx="_wrapper_bd6jp_106",Ux="_isPlaceholder_bd6jp_114",zx="_square_bd6jp_126",qx="_circular_bd6jp_129",Zx="_label_bd6jp_132",Cs={wrapper:Hx,isPlaceholder:Ux,square:zx,circular:qx,label:Zx},Yx=({alt:r,isPlaceholder:t,label:a,placeholderIcon:o,shape:i,src:u})=>P.jsxs("div",{className:Cs.wrapper,children:[!t&&u&&P.jsx(pc,{className:Cs[i],src:u,alt:r,shape:i,size:"64"}),t&&o&&P.jsx("div",{className:Pe(Cs.isPlaceholder,Cs[i]),children:P.jsx(Lt,{name:o})}),P.jsx(ze,{as:"span",type:"detail-medium",className:Cs.label,children:a})]}),Gx="_thumbnailWrapper_a828p_106",Xx="_thumbnailWrapper__thumbnail_a828p_110",Sf={thumbnailWrapper:Gx,thumbnailWrapper__thumbnail:Xx},Jx=({ariaLabel:r,children:t,thumbnail:a})=>P.jsx(ac,{badgeContent:P.jsx(pc,{...a}),className:Sf.thumbnailWrapper,slotProps:{badge:{className:Sf.thumbnailWrapper__thumbnail}},"aria-label":r,role:"status",children:t}),Qx="_slider_sz75s_112",Kx="_focusVisible_sz75s_134",Mu={switch:"_switch_sz75s_106",slider:Qx,focusVisible:Kx},A1=r=>{const{checked:t,disabled:a,focusVisible:o,getInputProps:i}=f0(r),{className:u,id:d}=r;return P.jsxs("span",{className:Pe(Mu.switch,u),children:[P.jsx("input",{...i(),type:"checkbox","aria-checked":t,"aria-disabled":a,role:"switch",id:d,"data-testid":"toggle-switch"}),P.jsx("span",{className:Pe(Mu.slider,{[Mu.focusVisible]:o})})]})},e4="_toggleInput_1j7zm_106",t4="_textWrapper_1j7zm_119",oa={toggleInput:e4,textWrapper:t4,"textWrapper--withDescription":"_textWrapper--withDescription_1j7zm_124",switch:"_switch_1j7zm_127","toggleInput--checked":"_toggleInput--checked_1j7zm_130","toggleInput--disabled":"_toggleInput--disabled_1j7zm_133","toggleInput--withBorder":"_toggleInput--withBorder_1j7zm_136"},r4=({checked:r,defaultChecked:t,description:a,disabled:o,icon:i,label:u,onChange:d,withBorder:v})=>P.jsxs("label",{className:Pe(oa.toggleInput,{[oa["toggleInput--withBorder"]]:v,[oa["toggleInput--checked"]]:r,[oa["toggleInput--disabled"]]:o}),children:[i&&P.jsx(Lt,{name:i,size:"32"}),P.jsxs("div",{className:Pe(oa.textWrapper,{[oa["textWrapper--withDescription"]]:a}),children:[P.jsx(ze,{type:"body-large",children:u}),a&&P.jsx(ze,{type:"body-regular",children:a})]}),P.jsx(A1,{onChange:d,disabled:o,checked:r,defaultChecked:t,className:oa.switch})]});exports.ActionBar=fy;exports.Badge=Ry;exports.BadgeIcon=nd;exports.BadgeLabel=Oy;exports.BodyText=pw;exports.BottomSheet=bw;exports.Button=Pr;exports.ButtonPrimary=od;exports.ButtonSecondary=Sw;exports.ButtonTertiary=n1;exports.Card=Mw;exports.CardBody=ad;exports.CardHeader=id;exports.Divider=o1;exports.EmptyState=jw;exports.FeedItemCategory=$w;exports.FeedTile=Uw;exports.Fieldset=i1;exports.Form=Zw;exports.Icon=Lt;exports.IconButton=da;exports.Image=s1;exports.LabelPill=l1;exports.Legend=eb;exports.Loader=nb;exports.Markdown=Qb;exports.MenuItem=n3;exports.MenuTile=i3;exports.Modal=p3;exports.NavBar=g3;exports.NavItem=x3;exports.Notice=R3;exports.NotificationBubble=Os;exports.NotificationListItem=B3;exports.PlaceholderThumbnail=N3;exports.Popup=C1;exports.RadioButton=H3;exports.RadioButtonCluster=q3;exports.Select=ux;exports.Sheet=vx;exports.Snackbar=Px;exports.Sticker=a1;exports.TextArea=jx;exports.TextButton=Cn;exports.TextInput=Wx;exports.Thumbnail=pc;exports.ThumbnailWithLabel=Yx;exports.ThumbnailWrapper=Jx;exports.Toggle=A1;exports.ToggleInput=r4;exports.Typography=ze;
|
package/index.mjs
CHANGED
|
@@ -18696,8 +18696,8 @@ const ox = "_snackbarbottom_194fm_1", ax = "_snackbar_194fm_138", ix = "_snackba
|
|
|
18696
18696
|
role: "status",
|
|
18697
18697
|
children: t
|
|
18698
18698
|
}
|
|
18699
|
-
), Tx = "
|
|
18700
|
-
switch: "
|
|
18699
|
+
), Tx = "_slider_sz75s_112", Rx = "_focusVisible_sz75s_134", Au = {
|
|
18700
|
+
switch: "_switch_sz75s_106",
|
|
18701
18701
|
slider: Tx,
|
|
18702
18702
|
focusVisible: Rx
|
|
18703
18703
|
}, Mx = (r) => {
|
package/package.json
CHANGED
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")}._actionBar_1fusi_106{background-color:#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")}._baseBtn_1shs3_106{cursor:pointer;text-decoration:none}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._h1_1btw1_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_1btw1_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_1btw1_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_1btw1_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_1btw1_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_1btw1_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_1btw1_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_1btw1_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_1btw1_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_1btw1_223{margin-bottom:8;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_1btw1_236{margin-bottom:8;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_1btw1_249{margin-bottom:8;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-text-link_1btw1_262{margin-bottom:8;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:14px;font-weight:500;letter-spacing:0;line-height:20px;text-decoration:underline;text-indent:0px;text-transform:none}._detail-medium_1btw1_275{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_1btw1_288{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_1btw1_301{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_1btw1_314{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")}._tertiaryButton_52x8y_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}._tertiaryButton--fullWidth_52x8y_117{width:100%}._tertiaryButton--medium_52x8y_120{height:40px;padding:0 16px}._tertiaryButton--small_52x8y_124,._tertiaryButton--tiny_52x8y_124{height:32px;padding:0 12px}._tertiaryButton--green_52x8y_128{border:1px solid #738C00;background-color:transparent;color:#738c00}._tertiaryButton--green_52x8y_128:hover{border-color:#b5d622;background-color:#f2fbc4}._tertiaryButton--green_52x8y_128:active{border-color:#b5d622}._tertiaryButton--pink_52x8y_140{border:1px solid #CC339F;background-color:transparent;color:#cc339f}._tertiaryButton--pink_52x8y_140:hover{border-color:#ec7bcb;background-color:#fde6f7}._tertiaryButton--pink_52x8y_140:active{border-color:#ec7bcb}._tertiaryButton--blue_52x8y_152{border:1px solid #01819C;background-color:transparent;color:#01819c}._tertiaryButton--blue_52x8y_152:hover{border-color:#43adc3;background-color:#e0f5f9}._tertiaryButton--blue_52x8y_152:active{border-color:#43adc3}._tertiaryButton--loading_52x8y_164 span{cursor:default;visibility:hidden}._tertiaryButton_52x8y_106:disabled{border:1px solid #d2d0db;background-color:transparent;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")}._actionBarCta_17m7z_106{display:flex;align-items:center;padding:12px;gap:16px}._actionBarCta__text_17m7z_112{flex-grow:1;color:#635c80;text-wrap:wrap}._actionBarCta__button_17m7z_117{flex-shrink: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")}._actionBarList_1tp3q_106{display:flex;padding:12px 16px;gap:24px}@media (width <= 450px){._actionBarList_1tp3q_106{justify-content:space-between;padding:8px 12px;gap:0}._actionBarList__actionItem_1tp3q_117{flex-direction:column;flex-grow: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")}._iconComponent_px93e_106{display:block}._iconComponent_px93e_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")}._actionItem_1hgc3_106{display:flex;align-items:center;justify-content:center;background-color:#fff;color:#635c80;gap:4px}._actionItem_1hgc3_106:disabled{color:#d2d0db;cursor:unset}@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_1uv0a_106{width:20px;height:20px}._badgeIcon--size-medium_1uv0a_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_1ux8t_106{position:relative;display:inline-block}._badge__list_1ux8t_110{position:absolute;top:-6px;right:-6px;display:inline-flex}._badge__icon_1ux8t_116:nth-child(2),._badge__icon_1ux8t_116:nth-child(3){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")}._bubbleContent_1ip6j_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_1ip6j_106{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-origin:100% 0;white-space:nowrap}._bubble--badge_1ip6j_136{position:absolute;z-index:auto;top:6px;right:6px;transform:translate(50%,-50%)}._bubble--empty_1ip6j_143{width:8px;height:8px;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")}._textButton_1v7x3_106{display:flex;height:1.5rem;min-height:1.5rem;align-items:center;justify-content:center;gap:8px}._textButton--green_1v7x3_114{color:#cae85d}._textButton--green_1v7x3_114:hover{color:#b5d622}._textButton--blue_1v7x3_120{color:#01819c}._textButton--blue_1v7x3_120:hover{color:#98cbd6}._textButton--deepPurple_1v7x3_126{color:#635c80}._textButton--deepPurple_1v7x3_126:hover{color:#201649}._textButton_1v7x3_106:active{background:none}._textButton_1v7x3_106:disabled{color:#d2d0db;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")}._badgeLabel_t2tql_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_t2tql_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")}._bodyText_1v7lx_106{display:flex;flex-direction:column;gap:8px}._bodyText--notClickable_1v7lx_111{cursor:default}._bodyText--post_1v7lx_114{padding:8px 12px 0;margin-bottom:8px}._bodyText--modal_1v7lx_118{padding:12px 16px}._bodyText_1v7lx_106 button{justify-content:flex-start}@media screen and (max-width: 689px){._bodyText__text--collapsed_1v7lx_125{display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:3;text-overflow:ellipsis}}._bodyText__textButton_1v7lx_133{display:block}@media screen and (min-width: 690px){._bodyText__textButton_1v7lx_133{display:none}}._bodyText_1v7lx_106 a{color:#201649}._bodyText__showMore_1v7lx_144{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")}._overlay_qn50j_106{position:fixed;z-index:10000;top:0;left:0;width:100%;height:100%;animation:_fade-in_qn50j_1 .5s ease-out forwards;background:#000}._sheet_qn50j_117{position:fixed;z-index:10001;bottom:0;left:0;width:100%;padding:0;border:none;animation:_slide-up_qn50j_1 .5s forwards;background:inherit}._sheet_qn50j_117 ._sheetWrapper_qn50j_128{display:flex;flex-direction:column;background-color:#fff;border-top-left-radius:16px;border-top-right-radius:16px;box-shadow:0 6px 32px #20164933;color:#201649;outline:none}._sheet_qn50j_117 ._sheetWrapper_qn50j_128 ._sheetBody_qn50j_138{padding:4px 16px}._sheet_qn50j_117 ._sheetWrapper_qn50j_128 ._sheetHeader_qn50j_141{padding:24px 16px 12px}._sheet_qn50j_117 ._sheetWrapper_qn50j_128 ._sheetHeader_qn50j_141 header{padding:0}._sheet_qn50j_117 ._sheetWrapper_qn50j_128 ._sheetHeader_qn50j_141 header h3{color:#201649}._sheet_qn50j_117 ._sheetWrapper_qn50j_128 ._sheetFooter_qn50j_150{display:flex;flex-direction:column;align-items:center;justify-content:center;padding:8px 12px 32px;gap:12px}@keyframes _slide-up_qn50j_1{0%{transform:translateY(100%)}to{transform:translateY(0)}}@keyframes _fade-in_qn50j_1{0%{opacity:0}to{opacity:.5}}@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_6hx2l_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--fullWidth_6hx2l_117{width:100%}._primaryButton--medium_6hx2l_120{height:40px;padding:0 16px}._primaryButton--small_6hx2l_124,._primaryButton--tiny_6hx2l_124{height:32px;padding:0 12px}._primaryButton--highlight_6hx2l_128{background-color:#ff9de2}._primaryButton--highlight_6hx2l_128:hover{background-color:#ec7bcb}._primaryButton--primary_6hx2l_134{background-color:#cae85d}._primaryButton--primary_6hx2l_134:hover{background-color:#b5d622}._primaryButton--transparent_6hx2l_140{border:1px solid #201649;background-color:transparent}._primaryButton--transparent_6hx2l_140:hover{border-color:#ec7bcb;background-color:#ec7bcb}._primaryButton--loading_6hx2l_148 span{cursor:default;visibility:hidden}._primaryButton_6hx2l_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")}._secondaryButton_1oqqo_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}._secondaryButton--fullWidth_1oqqo_117{width:100%}._secondaryButton--medium_1oqqo_120{height:40px;padding:0 16px}._secondaryButton--small_1oqqo_124,._secondaryButton--tiny_1oqqo_124{height:32px;padding:0 12px}._secondaryButton--green_1oqqo_128{background-color:#f2fbc4}._secondaryButton--green_1oqqo_128:hover{background-color:#cae85d}._secondaryButton--pink_1oqqo_134{background-color:#fde6f7;color:#cc339f}._secondaryButton--pink_1oqqo_134:hover{background-color:#ff9de2;color:#201649}._secondaryButton--grey_1oqqo_142{background-color:#f4f3f6}._secondaryButton--grey_1oqqo_142:hover{background-color:#e9e8ed}._secondaryButton--loading_1oqqo_148 span{cursor:default;visibility:hidden}._secondaryButton_1oqqo_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_ghq2l_106{display:flex;overflow:hidden;width:100%;flex-direction:column;padding:16px;background-color:#fff;box-shadow:0 2px 8px #21164a0a,0 0 0 1px #e9e8ed;color:#201649}._root--border-radius_ghq2l_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_z8bwx_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_1nhjr_106{display:flex;align-items:center;padding-bottom:12px;color:inherit;gap:8px}._title_1nhjr_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_1astm_106{display:flex;align-items:center}._dividerLine_1astm_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")}._sticker_1m9em_106{display:flex;align-items:center;justify-content:center;border-radius:999px;background-color:var(--sticker-bg-color)}._sticker--color-green_1m9em_113{--sticker-bg-color: #cae85d}._sticker--color-pink_1m9em_116{--sticker-bg-color: #ff9de2}._sticker--color-lavender_1m9em_119{--sticker-bg-color: #7c5bff}._sticker--color-lavender_1m9em_119 path{stroke:#fff}._sticker--color-teal_1m9em_125{--sticker-bg-color: #01819C}._sticker--color-teal_1m9em_125 path{stroke:#fff}._sticker--color-orange_1m9em_131{--sticker-bg-color: #ebaa77}._sticker--color-grey_1m9em_134{--sticker-bg-color: #d2d0db}._sticker--size-small_1m9em_137{width:48px;height:48px}._sticker--size-medium_1m9em_141{width:56px;height:56px}._sticker--size-large_1m9em_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")}._emptyState_wydl1_106{display:flex;flex-direction:column;align-items:center;padding:24px 16px}._emptyState__text_wydl1_112{display:flex;flex-direction:column;text-align:center}._emptyState__secondaryText_wydl1_117{color:#635c80}._emptyState__buttons_wydl1_120{display:flex;width:100%;flex-direction:column;gap:8px}._emptyState--small_wydl1_126{gap:16px}._emptyState--small__text_wydl1_129{gap:4px}._emptyState--medium_wydl1_132{gap:24px}._emptyState--medium__text_wydl1_135{gap:8px}._emptyState--large_wydl1_138{gap:24px}._emptyState--large__text_wydl1_141{gap: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")}._feedItemCategory_1utsd_106{display:inline-flex;height:-moz-fit-content;height:fit-content;align-items:center;padding:4px 8px;border-radius:0 0 8px 8px;text-wrap:nowrap}._feedItemCategory--theme_1utsd_114{background-color:#cae85d;color:#201649}._feedItemCategory--closedPost_1utsd_118{background-color:#f4f3f6;color:#201649}@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")}._feedTile_xnzsg_106{display:flex;flex-direction:column;align-items:center;justify-content:center;padding:8px;border:1px #ffffff solid;border-radius:8px;background-color:#fff;box-shadow:0 2px 8px #21164a0a,0 0 0 1px #e9e8ed;gap:4px;text-align:center}._feedTile__icon_xnzsg_119{flex-shrink:0}._feedTile_xnzsg_106:hover{border-color:#635c80}._feedTile_xnzsg_106:active{border-color:#f4f3f6;background-color:#f4f3f6}@media screen and (max-width: 799px){._feedTile_xnzsg_106{flex-flow:row wrap;gap:8px;text-align:left}._feedTile__text_xnzsg_135{width:-moz-min-content;width:min-content;flex-grow:1}}._feedTile--fullWidth_xnzsg_140{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")}._fieldset_o9167_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_5b491_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_5b491_106:disabled{background:none;cursor:default}._iconButton_5b491_106:hover,._iconButton_5b491_106:active{background:none}._iconButton--circular_5b491_127{border-radius:999px;background:#cae85d}._iconButton--circular_5b491_127:disabled{background:#fff}._iconButton--circular_5b491_127:hover{background:#b5d622}._iconButton--circular_5b491_127:active{background:#cae85d}._iconButton--circular-small_5b491_140{width:40px;height:40px}._iconButton--circular-medium_5b491_144{width:48px;height:48px}._iconButton--circular-large_5b491_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_2h8bl_106{display:inline-flex;align-items:center;justify-content:center;border-radius:16px;background:#01819c}._labelPill_2h8bl_106 span{color:#fff;line-height:16px;text-align:center}._labelPill--small_2h8bl_118{height:20px;padding:0 8px}._labelPill--medium_2h8bl_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_1efwm_106{display:flex;flex-direction:column;padding-bottom:12px;gap:8px}._legend_1efwm_106 ._text_1efwm_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_1l3jw_106{display:flex;height:100%;align-items:center;justify-content:center;padding:16px 0}._wrapper_1l3jw_106 ._loadingSpinner_1l3jw_113{display:inline-block}._wrapper_1l3jw_106 ._loadingSpinner_1l3jw_113:after,._wrapper_1l3jw_106 ._loadingSpinner_1l3jw_113:before{content:"";display:inline-block;width:20px;height:20px;border-radius:50%;animation:_pulse-loader-size_1l3jw_1 1s ease infinite;background:#9c9c9c}._wrapper_1l3jw_106 ._loadingSpinner_1l3jw_113 i{display:inline-block;width:20px;height:20px;border-radius:50%;animation:_pulse-loader-size_1l3jw_1 1s ease infinite;background:#9c9c9c;animation-delay:.5s;transform:scale(.2)}@keyframes _pulse-loader-size_1l3jw_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_ttg90_106{--menuitem-selected-hover-color: #738C00;--menuitem-hover-color: #635C80;display:flex;width:100%;flex-shrink:0;align-items:center;padding:0 4px;background-color:#fff;color:#201649;cursor:pointer;gap:8px;text-decoration:none}._menuItem_ttg90_106 ._highlightFrame_ttg90_120{display:flex;flex:1;align-items:center;padding:8px;border-radius:8px;gap:8px}._menuItem_ttg90_106 ._rightIcon_ttg90_128{display:inherit;margin-left:auto;color:#635c80}._menuItem--selected_ttg90_133{color:#201649}._menuItem--selected_ttg90_133 ._leftIcon_ttg90_136{color:#738c00}._menuItem--selected_ttg90_133 ._highlightFrame_ttg90_120{background-color:#f2fbc4}@media (hover: hover) and (pointer: fine){._menuItem--selected_ttg90_133:hover{color:var(--menuitem-selected-hover-color)}}._menuItem--compact_ttg90_147{height:40px}@media (hover: hover) and (pointer: fine){._menuItem_ttg90_106:not(._menuItem--selected_ttg90_133):hover{color:var(--menuitem-hover-color)}._menuItem_ttg90_106:not(._menuItem--selected_ttg90_133):hover ._highlightFrame_ttg90_120{background-color:#f4f3f6}._menuItem_ttg90_106:not(._menuItem--selected_ttg90_133):hover ._highlightFrame--compact_ttg90_157{height:40px}}._menuItem_ttg90_106:not(._menuItem--selected_ttg90_133):active{color:var(--menuitem-hover-color)}._menuItem_ttg90_106:not(._menuItem--selected_ttg90_133):active ._highlightFrame_ttg90_120{background-color:#f4f3f6}._menuItem_ttg90_106:not(._menuItem--selected_ttg90_133):active ._highlightFrame--compact_ttg90_157{height:40px}@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")}._menuTile_o61bq_106{--tile-bg-color: #f4f3f6;--tile-color: #635C80;--tile-value-color: #4D17E5;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)}._menuTile--fullWidth_o61bq_119{width:100%}._menuTile--icon_o61bq_122{padding:4px 4px 8px}._menuTile__value_o61bq_126{color:var(--tile-value-color)}._menuTile_o61bq_106:hover{--tile-bg-color: #e9e8ed}._menuTile_o61bq_106:focus{--tile-bg-color: #d2d0db}._menuTile_o61bq_106:disabled{--tile-color: #a6a2b6;--tile-value-color: #a6a2b6;cursor:default}._menuTile_o61bq_106:disabled:hover,._menuTile_o61bq_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")}._backdrop_1lf8q_106{position:fixed;z-index:-1;background:#0003;top:0;right:0;bottom:0;left: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")}._modal_ftzhr_106{position:fixed;z-index:1300;display:flex;align-items:center;justify-content:center;top:0;right:0;bottom:0;left:0}._modal_ftzhr_106 ._modalWrapper_ftzhr_114{display:flex;max-width:90vw;max-height:90vh;flex-direction:column;border-radius:16px;background-color:#fff;box-shadow:0 6px 32px #2016491a;outline:none;overflow-x:hidden}@media screen and (min-width: 690px){._modal_ftzhr_106 ._modalWrapper_ftzhr_114{max-width:560px}}._modal_ftzhr_106 ._modalWrapper_ftzhr_114 ._modalHeader_ftzhr_130{position:sticky;z-index:1;top:0;padding:16px;background-color:#fff}._modal_ftzhr_106 ._modalWrapper_ftzhr_114 ._modalHeader_ftzhr_130 header{padding:0}._modal_ftzhr_106 ._modalWrapper_ftzhr_114 header button:first-child{display:none}._modal_ftzhr_106 ._modalFooter_ftzhr_143{display:flex;flex-direction:row;align-items:center;justify-content:space-between;margin:16px;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")}._navBar_1b0o6_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_e2my2_106 ._navItem_e2my2_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_e2my2_106 ._navItem_e2my2_106{padding:0 8px 8px}}._listItem_e2my2_106 ._navItem_e2my2_106 ._selector_e2my2_120{height:4px;align-self:stretch;border-radius:0 0 4px 4px;margin-bottom:4px;background-color:#cae85d;visibility:hidden}._listItem_e2my2_106 ._navItem--active_e2my2_128{padding-right:4px;padding-left:4px;color:#738c00}._listItem_e2my2_106 ._navItem--active_e2my2_128 ._selector_e2my2_120{height:4px;align-self:stretch;border-radius:0 0 4px 4px;background-color:#cae85d;visibility:visible}._label_e2my2_141{display:block;max-width:calc(100% - 1px);display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:1;text-overflow:ellipsis}@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")}._notice__content_1fvlz_106{--notice-bg-color: #f4f3f6;display:flex;flex-direction:column;align-items:flex-start;background-color:var(--notice-bg-color)}._notice__header_1fvlz_113{display:flex;width:100%;align-items:center;justify-content:space-between}._notice__iconHeadline_1fvlz_119{display:flex;align-items:center;gap:8px}._notice--small_1fvlz_124{gap:4px}._notice--medium_1fvlz_127{gap:8px}._notice--sticky_1fvlz_130{padding:16px}._notice--embedded_1fvlz_133{padding:8px;border-radius:8px}._notice--pink_1fvlz_137{--notice-bg-color: #ff9de2}._notice--green_1fvlz_140{--notice-bg-color: #f2fbc4}._notice--grey_1fvlz_143{--notice-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")}._root_1g8mo_106{position:relative;overflow:hidden;flex-shrink:0;border:solid 1px #d2d0db;background-color:#d2d0db}._root--24_1g8mo_113{width:24px;height:24px}._root--28_1g8mo_117{width:28px;height:28px}._root--32_1g8mo_121{width:32px;height:32px}._root--40_1g8mo_125{width:40px;height:40px}._root--48_1g8mo_129{width:48px;height:48px}._root--56_1g8mo_133{width:56px;height:56px}._root--64_1g8mo_137{width:64px;height:64px}._root--80_1g8mo_141{width:80px;height:80px}._root--120_1g8mo_145{width:120px;height:120px}._root--280_1g8mo_149{width:280px;height:280px}._root--square_1g8mo_153._root--24_1g8mo_113,._root--square_1g8mo_153._root--32_1g8mo_121{border-radius:4px}._root--square_1g8mo_153._root--40_1g8mo_125,._root--square_1g8mo_153._root--48_1g8mo_129{border-radius:8px}._root--square_1g8mo_153._root--56_1g8mo_133,._root--square_1g8mo_153._root--64_1g8mo_137{border-radius:12px}._root--square_1g8mo_153._root--80_1g8mo_141,._root--square_1g8mo_153._root--120_1g8mo_145{border-radius:16px}._root--circular_1g8mo_165{border-radius:50%}._root--isPlaceholder_1g8mo_168:before{position:absolute;z-index:1;width:100%;height:100%;background-color:#d2d0db;content:"";opacity:.4}._root_1g8mo_106 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_11paf_106{display:flex;width:100%;justify-content:space-between;padding:8px 12px;background-color:#fff;cursor:pointer;gap:12px}._root_11paf_106:hover{background-color:#f4f3f6}._root_11paf_106 ._thumbnail_11paf_118{flex-shrink:0;border:1px solid #d2d0db}._root_11paf_106 ._iconWrapper_11paf_122{display:flex;width:56px;height:56px;flex-shrink:0;align-items:center;justify-content:center;border-radius:4px;background:#f4f3f6;color:#635c80}._root_11paf_106 ._detail_11paf_133{display:flex;flex-direction:column;flex-grow:1;justify-content:center;color:#635c80;gap:2px}._root_11paf_106 ._detail_11paf_133 ._title_11paf_141{display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:1;text-overflow:ellipsis}._root_11paf_106 ._detail_11paf_133 ._notificationText_11paf_148{color:#201649;line-height:20px;display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:2;text-overflow:ellipsis}._unread_11paf_158{background-color:#fff9e5}._unread_11paf_158 ._bubble_11paf_161{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_jgtis_106{display:flex;width:100%;height:100%;align-items:center;justify-content:center;border-radius:8px}._wrapper_jgtis_106 path{stroke:#635c80}._wrapper--large_jgtis_117{background-color:#d2d0db}._wrapper--small_jgtis_120{border:1px solid #d2d0db;background-color:#f4f3f6}._wrapper--iconWrapper_jgtis_124{width:72px;height:72px;border-radius:999px}._wrapper_jgtis_106._wrapper--iconWrapper_jgtis_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_pz0sp_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_k830y_106{position:relative;display:flex;align-items:center;justify-content:space-between}._radio_k830y_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_k830y_106 input._radio--small_k830y_124{width:24px;height:24px}._radio_k830y_106 input:not(:disabled){cursor:pointer}._radio_k830y_106 input:disabled{border-color:#d2d0db}._radio_k830y_106 input:checked{border-color:#201649;background-color:#201649;transition:0s}._radio_k830y_106 input:checked:disabled{border-color:#a6a2b6;background-color:#a6a2b6}._radio_k830y_106 input:hover:not(:disabled,:checked){border-color:#635c80;background-color:#f4f3f6}._radio_k830y_106 label{display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:1;text-overflow:ellipsis;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_k830y_106 label._radio--small_k830y_124{margin-bottom:8;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_k830y_106 input:not(:disabled)~label{color:#635c80;cursor:pointer}._radio_k830y_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_k830y_106 input:checked~label._radio--small_k830y_124{margin-bottom:8;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_k830y_106 input:disabled~label{color:#a6a2b6}._radio_k830y_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_17n52_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_1oeju_106{position:relative;width:100%}._toggle_1oeju_111{display:flex;width:100%;flex-direction:row;justify-content:space-between;padding:16px;border-radius:16px;background:#fff;cursor:pointer}._toggle_1oeju_111 ._label_1oeju_121{display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:1;text-overflow:ellipsis;color:#635c80}._toggle--dark_1oeju_129{border:1px solid #f4f3f6;background-color:#f4f3f6}._toggle--dark_1oeju_129:hover{background-color:#e9e8ed}._toggle--dark_1oeju_129._disabled_1oeju_136{color:#a6a2b6}._toggle--dark_1oeju_129._disabled_1oeju_136:hover{background-color:#f4f3f6}._toggle--dark_1oeju_129._disabled_1oeju_136 ._label_1oeju_121{color:#a6a2b6}._toggle--light_1oeju_145{border:1px solid #a6a2b6;background-color:#fff}._toggle--light_1oeju_145:hover{border-color:#635c80;background-color:#f4f3f6}._toggle--light_1oeju_145._disabled_1oeju_136{border-color:#d2d0db;color:#a6a2b6}._toggle--light_1oeju_145._disabled_1oeju_136:hover{background-color:#fff}._toggle--light_1oeju_145._disabled_1oeju_136 ._label_1oeju_121{color:#a6a2b6}._toggle_1oeju_111._filled_1oeju_163 ._label_1oeju_121{color:#201649}._toggle_1oeju_111._error_1oeju_166{border-color:#cc339f;background:#fde6f7}._toggle_1oeju_111._error_1oeju_166:focus,._toggle_1oeju_111._error_1oeju_166:hover{border-color:#cc339f;background:#fde6f7}._icon_1oeju_175{transition:transform .3s}._icon_1oeju_175._expanded_1oeju_179{transform:rotate(180deg)}._hidden_1oeju_183{display:none}._option_1oeju_187{margin-bottom:8;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;display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:1;text-overflow:ellipsis;padding:8px 12px;color:#635c80;cursor:pointer}._option_1oeju_187:hover{background:#f4f3f6;color:#201649}._option_1oeju_187._selected_1oeju_211{background:#f2fbc4;color:#201649}._option_1oeju_187._selected_1oeju_211:hover{color:#635c80}._dropdown_1oeju_219{position:absolute;z-index:1;overflow:hidden;width:100%;border-radius:8px;background:#fff;box-shadow:0 4px 20px #2016491a}._errorMessage_1oeju_229{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")}._backdrop_11wot_106{position:fixed;z-index:-1;background:#0003;top:0;right:0;bottom:0;left:0}@media screen and (max-width: 689px){._backdrop_11wot_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")}._sheet_qnncf_106{position:fixed;z-index:1300;display:flex;align-items:center;justify-content:center;top:0;right:0;bottom:0;left:0}._sheet_qnncf_106 ._sheetWrapper_qnncf_114{min-width:560px;border-radius:0;background-color:#fff;box-shadow:0 6px 32px #2016491a;outline:none}@media screen and (min-width: 690px){._sheet_qnncf_106 ._sheetWrapper_qnncf_114{border-radius:16px}}._sheet_qnncf_106 ._sheetWrapper_qnncf_114 ._sheetHeader_qnncf_126{padding:16px}._sheet_qnncf_106 ._sheetWrapper_qnncf_114 ._sheetHeader_qnncf_126 header{padding:0}._sheet_qnncf_106 ._sheetWrapper_qnncf_114 header button:first-child{display:none}@media screen and (max-width: 689px){._sheet_qnncf_106 ._sheetWrapper_qnncf_114{width:100%;min-width:auto;height:100%}._sheet_qnncf_106 ._sheetWrapper_qnncf_114 header button:last-child{display:none}._sheet_qnncf_106 ._sheetWrapper_qnncf_114 header button:first-child{display:block}}._sheet_qnncf_106 ._sheetFooter_qnncf_148{display:none;flex-direction:row;align-items:center;justify-content:space-between;margin:16px;gap:16px}._sheet_qnncf_106 ._sheetFooter--alwaysVisible_qnncf_156{display:flex}@media screen and (min-width: 690px){._sheet_qnncf_106 ._sheetFooter_qnncf_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")}@keyframes _snackbarbottom_194fm_1{0%{transform:translateY(160%)}45%{transform:translateY(-12%)}70%{transform:translateY(4%)}90%,to{transform:translateY(0)}}._animation--enter_194fm_120{transform:translateY(100%)}._animation--enter-active_194fm_124{animation:_snackbarbottom_194fm_1 .6s;transform:translateY(0)}._animation--exit_194fm_129{transform:translateY(0)}._animation--exit-active_194fm_133{animation:_snackbarbottom_194fm_1 reverse .6s;transform:translateY(160%)}._snackbar_194fm_138{position:fixed;z-index:2;bottom:32px;left:32px;display:flex;width:343px;height:56px;justify-content:space-between;padding:8px 16px;border-radius:8px;background-color:#21164ae6;box-shadow:0 6px 32px #20164933;gap:12px;touch-action:none}@media screen and (max-width: 799px){._snackbar_194fm_138{right:0;bottom:calc(86px + env(safe-area-inset-bottom));left:0;margin:auto}}._snackbar__left_194fm_162{display:flex;flex-grow:1;align-items:center;gap:8px}._snackbar__right_194fm_168{display:flex;align-items:center;gap:8px}._snackbar__textLabel_194fm_173{overflow:hidden;max-height:40px;flex-grow:1;color:#fff;overflow-wrap:break-word;white-space:normal}._snackbar__textButton_194fm_181{text-wrap:nowrap}._snackbar__dismiss_194fm_184{color:#fff}._snackbar__icon_194fm_187{flex-shrink:0;color:#cae85d}@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_nsyzs_106{width:100%}._label_nsyzs_110{position:absolute;top:24px;right:16px;left:16px;display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:1;text-overflow:ellipsis;transform:translateY(-50%);transition:top .3s,font-size .3s}._textArea_nsyzs_124{width:100%;min-height:96px;background-color:transparent;color:#201649}._textArea_nsyzs_124:focus-visible{outline:none}._textArea_nsyzs_124+label{color:#635c80}._textArea_nsyzs_124:not(:-moz-placeholder-shown)+label{top:16px}._textArea_nsyzs_124:focus+label,._textArea_nsyzs_124:not(:placeholder-shown)+label{top:16px}._textArea_nsyzs_124: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_nsyzs_124:focus+label>span,._textArea_nsyzs_124: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_nsyzs_152{position:relative}._textAreaContainer_nsyzs_152:focus-within{outline:#a6a2b6 2px solid}._textAreaContainer--dark_nsyzs_158{background-color:#f4f3f6}._textAreaContainer--dark_nsyzs_158:hover{background-color:#e9e8ed}._textAreaContainer--dark_nsyzs_158:disabled{color:#a6a2b6}._textAreaContainer--dark_nsyzs_158:disabled:hover{background-color:#f4f3f6}._textAreaContainer--dark_nsyzs_158:disabled+label{color:#a6a2b6}._textAreaContainer--light_nsyzs_173{border:1px solid #a6a2b6;background-color:#fff}._textAreaContainer--light_nsyzs_173:hover{border-color:#635c80;background-color:#f4f3f6}._textAreaContainer--light_nsyzs_173:disabled{border-color:#d2d0db;color:#a6a2b6}._textAreaContainer--light_nsyzs_173:disabled:hover{background-color:#fff}._textAreaContainer--light_nsyzs_173:disabled+label{color:#a6a2b6}._textAreaContainer--medium_nsyzs_191{border-radius:16px}._textAreaContainer--medium_nsyzs_191:not(:-moz-placeholder-shown){padding-top:26px;padding-bottom:6px}._textAreaContainer--medium_nsyzs_191:focus,._textAreaContainer--medium_nsyzs_191:not(:placeholder-shown){padding-top:26px;padding-bottom:6px}._textAreaContainer--medium_nsyzs_191 ._textArea_nsyzs_124{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_nsyzs_212{border-radius:12px}._textAreaContainer--small_nsyzs_212 ._textArea_nsyzs_124{margin-bottom:8;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_nsyzs_212 ._textArea_nsyzs_124:not(:-moz-placeholder-shown)+label{display:none}._textAreaContainer--small_nsyzs_212 ._textArea_nsyzs_124:focus+label,._textAreaContainer--small_nsyzs_212 ._textArea_nsyzs_124:not(:placeholder-shown)+label{display:none}._textAreaContainer--error_nsyzs_232{border:1px solid #CC339F;background-color:#fde6f7;color:#201649}._textAreaContainer--error_nsyzs_232:focus{border-color:#cc339f}._textAreaContainer--error_nsyzs_232:hover{border-color:#cc339f;background-color:#fde6f7}._textAreaContainer--error_nsyzs_232:disabled{border-color:#cc339f}._textAreaContainer--error_nsyzs_232:disabled:hover{background-color:#fde6f7}._textAreaContainer--errorMessage_nsyzs_250{display:block;margin-top:4px;margin-left: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")}._wrapper_1t6h5_106{width:100%}._wrapper_1t6h5_106 ._textInputContainer_1t6h5_109{position:relative}._wrapper_1t6h5_106 ._textInputContainer_1t6h5_109 label{position:absolute;top:50%;right:16px;left:16px;display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:1;text-overflow:ellipsis;transform:translateY(-50%);transition:top .3s,font-size .3s}._wrapper_1t6h5_106 ._textInputContainer_1t6h5_109 ._textInput_1t6h5_109{width:100%;color:#201649;outline:none;display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:1;text-overflow:ellipsis}._wrapper_1t6h5_106 ._textInputContainer_1t6h5_109 ._textInput_1t6h5_109+label{color:#635c80}._wrapper_1t6h5_106 ._textInputContainer_1t6h5_109 ._textInput_1t6h5_109:not(:-moz-placeholder-shown)+label{top:16px}._wrapper_1t6h5_106 ._textInputContainer_1t6h5_109 ._textInput_1t6h5_109:focus+label,._wrapper_1t6h5_106 ._textInputContainer_1t6h5_109 ._textInput_1t6h5_109:not(:placeholder-shown)+label{top:16px}._wrapper_1t6h5_106 ._textInputContainer_1t6h5_109 ._textInput_1t6h5_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_1t6h5_106 ._textInputContainer_1t6h5_109 ._textInput_1t6h5_109:focus+label>span,._wrapper_1t6h5_106 ._textInputContainer_1t6h5_109 ._textInput_1t6h5_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_1t6h5_106 ._textInputContainer_1t6h5_109 ._textInput--medium_1t6h5_153{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_1t6h5_106 ._textInputContainer_1t6h5_109 ._textInput--medium_1t6h5_153:not(:-moz-placeholder-shown){padding-top:26px;padding-bottom:6px}._wrapper_1t6h5_106 ._textInputContainer_1t6h5_109 ._textInput--medium_1t6h5_153:focus,._wrapper_1t6h5_106 ._textInputContainer_1t6h5_109 ._textInput--medium_1t6h5_153:not(:placeholder-shown){padding-top:26px;padding-bottom:6px}._wrapper_1t6h5_106 ._textInputContainer_1t6h5_109 ._textInput--small_1t6h5_173{margin-bottom:8;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_1t6h5_106 ._textInputContainer_1t6h5_109 ._textInput--small_1t6h5_173:not(:-moz-placeholder-shown)+label{display:none}._wrapper_1t6h5_106 ._textInputContainer_1t6h5_109 ._textInput--small_1t6h5_173:focus+label,._wrapper_1t6h5_106 ._textInputContainer_1t6h5_109 ._textInput--small_1t6h5_173:not(:placeholder-shown)+label{display:none}._wrapper_1t6h5_106 ._textInputContainer_1t6h5_109 ._textInput--dark_1t6h5_192{background-color:#f4f3f6}._wrapper_1t6h5_106 ._textInputContainer_1t6h5_109 ._textInput--dark_1t6h5_192:hover{background-color:#e9e8ed}._wrapper_1t6h5_106 ._textInputContainer_1t6h5_109 ._textInput--dark_1t6h5_192:disabled{color:#a6a2b6}._wrapper_1t6h5_106 ._textInputContainer_1t6h5_109 ._textInput--dark_1t6h5_192:disabled:hover{background-color:#f4f3f6}._wrapper_1t6h5_106 ._textInputContainer_1t6h5_109 ._textInput--dark_1t6h5_192:disabled+label{color:#a6a2b6}._wrapper_1t6h5_106 ._textInputContainer_1t6h5_109 ._textInput--light_1t6h5_207{border:1px solid #a6a2b6;background-color:#fff}._wrapper_1t6h5_106 ._textInputContainer_1t6h5_109 ._textInput--light_1t6h5_207:hover{border-color:#635c80;background-color:#f4f3f6}._wrapper_1t6h5_106 ._textInputContainer_1t6h5_109 ._textInput--light_1t6h5_207:disabled{border-color:#d2d0db;color:#a6a2b6}._wrapper_1t6h5_106 ._textInputContainer_1t6h5_109 ._textInput--light_1t6h5_207:disabled:hover{background-color:#fff}._wrapper_1t6h5_106 ._textInputContainer_1t6h5_109 ._textInput--light_1t6h5_207:disabled+label{color:#a6a2b6}._wrapper_1t6h5_106 ._textInputContainer_1t6h5_109 ._textInput--error_1t6h5_225{border:1px solid #CC339F;background-color:#fde6f7;color:#201649}._wrapper_1t6h5_106 ._textInputContainer_1t6h5_109 ._textInput--error_1t6h5_225:focus{border-color:#cc339f}._wrapper_1t6h5_106 ._textInputContainer_1t6h5_109 ._textInput--error_1t6h5_225:hover{border-color:#cc339f;background-color:#fde6f7}._wrapper_1t6h5_106 ._textInputContainer_1t6h5_109 ._textInput--error_1t6h5_225:disabled{border-color:#cc339f}._wrapper_1t6h5_106 ._textInputContainer_1t6h5_109 ._textInput--error_1t6h5_225:disabled:hover{background-color:#fde6f7}._wrapper_1t6h5_106 ._textInputContainer--errorMessage_1t6h5_243{display:block;margin-top:4px;margin-left: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")}._wrapper_bd6jp_106{display:flex;width:-moz-fit-content;width:fit-content;flex-direction:column;align-items:center;justify-content:center;gap:4px}._wrapper_bd6jp_106 ._isPlaceholder_bd6jp_114{display:flex;width:64px;height:64px;align-items:center;justify-content:center;border:1px solid #d2d0db;background-color:#f4f3f6}._wrapper_bd6jp_106 ._isPlaceholder_bd6jp_114 svg path{stroke:#635c80}._wrapper_bd6jp_106 ._square_bd6jp_126{border-radius:8px}._wrapper_bd6jp_106 ._circular_bd6jp_129{border-radius:50%}._wrapper_bd6jp_106 ._label_bd6jp_132{max-width:72px;color:#635c80;text-align:center;display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:2;text-overflow:ellipsis}@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")}._thumbnailWrapper_a828p_106{position:relative;display:inline-block}._thumbnailWrapper__thumbnail_a828p_110{position:absolute;right:-4px;bottom:-4px}@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_1a5cx_106{position:relative;display:inline-block;width:48px;height:28px}._switch_1a5cx_106 ._slider_1a5cx_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_1a5cx_106 ._slider_1a5cx_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_1a5cx_106 ._slider_1a5cx_112._focusVisible_1a5cx_134{box-shadow:inset 0 0 0 1.5px #43adc3!important}._switch_1a5cx_106 input{position:absolute;z-index:2;width:48px;height:28px;opacity:0}._switch_1a5cx_106 input:not(:disabled){cursor:pointer}._switch_1a5cx_106 input:hover+._slider_1a5cx_112{box-shadow:inset 0 0 0 1.5px #635c80}._switch_1a5cx_106 input:disabled+._slider_1a5cx_112{opacity:.4}._switch_1a5cx_106 input:checked+._slider_1a5cx_112{background-color:#201649;box-shadow:inset 0 0 0 1.5px #201649}._switch_1a5cx_106 input:checked+._slider_1a5cx_112:before{transform:translate(-2px)}._switch_1a5cx_106 input:checked:hover+._slider_1a5cx_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_1j7zm_106{display:flex;width:100%;align-items:center;padding:8px 16px;background-color:#fff;color:#635c80;cursor:pointer;gap:12px}._toggleInput_1j7zm_106 svg{flex-shrink:0}._toggleInput_1j7zm_106 ._textWrapper_1j7zm_119{display:flex;flex-direction:column;flex-grow:1}._toggleInput_1j7zm_106 ._textWrapper--withDescription_1j7zm_124{gap:4px}._toggleInput_1j7zm_106 ._switch_1j7zm_127{flex-shrink:0}._toggleInput--checked_1j7zm_130{color:#201649}._toggleInput--disabled_1j7zm_133{cursor:unset}._toggleInput--withBorder_1j7zm_136{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")}._actionBar_1fusi_106{background-color:#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")}._baseBtn_1shs3_106{cursor:pointer;text-decoration:none}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._h1_1btw1_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_1btw1_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_1btw1_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_1btw1_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_1btw1_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_1btw1_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_1btw1_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_1btw1_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_1btw1_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_1btw1_223{margin-bottom:8;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_1btw1_236{margin-bottom:8;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_1btw1_249{margin-bottom:8;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-text-link_1btw1_262{margin-bottom:8;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:14px;font-weight:500;letter-spacing:0;line-height:20px;text-decoration:underline;text-indent:0px;text-transform:none}._detail-medium_1btw1_275{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_1btw1_288{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_1btw1_301{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_1btw1_314{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")}._tertiaryButton_52x8y_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}._tertiaryButton--fullWidth_52x8y_117{width:100%}._tertiaryButton--medium_52x8y_120{height:40px;padding:0 16px}._tertiaryButton--small_52x8y_124,._tertiaryButton--tiny_52x8y_124{height:32px;padding:0 12px}._tertiaryButton--green_52x8y_128{border:1px solid #738C00;background-color:transparent;color:#738c00}._tertiaryButton--green_52x8y_128:hover{border-color:#b5d622;background-color:#f2fbc4}._tertiaryButton--green_52x8y_128:active{border-color:#b5d622}._tertiaryButton--pink_52x8y_140{border:1px solid #CC339F;background-color:transparent;color:#cc339f}._tertiaryButton--pink_52x8y_140:hover{border-color:#ec7bcb;background-color:#fde6f7}._tertiaryButton--pink_52x8y_140:active{border-color:#ec7bcb}._tertiaryButton--blue_52x8y_152{border:1px solid #01819C;background-color:transparent;color:#01819c}._tertiaryButton--blue_52x8y_152:hover{border-color:#43adc3;background-color:#e0f5f9}._tertiaryButton--blue_52x8y_152:active{border-color:#43adc3}._tertiaryButton--loading_52x8y_164 span{cursor:default;visibility:hidden}._tertiaryButton_52x8y_106:disabled{border:1px solid #d2d0db;background-color:transparent;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")}._actionBarCta_17m7z_106{display:flex;align-items:center;padding:12px;gap:16px}._actionBarCta__text_17m7z_112{flex-grow:1;color:#635c80;text-wrap:wrap}._actionBarCta__button_17m7z_117{flex-shrink: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")}._actionBarList_1tp3q_106{display:flex;padding:12px 16px;gap:24px}@media (width <= 450px){._actionBarList_1tp3q_106{justify-content:space-between;padding:8px 12px;gap:0}._actionBarList__actionItem_1tp3q_117{flex-direction:column;flex-grow: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")}._iconComponent_px93e_106{display:block}._iconComponent_px93e_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")}._actionItem_1hgc3_106{display:flex;align-items:center;justify-content:center;background-color:#fff;color:#635c80;gap:4px}._actionItem_1hgc3_106:disabled{color:#d2d0db;cursor:unset}@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_1uv0a_106{width:20px;height:20px}._badgeIcon--size-medium_1uv0a_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_1ux8t_106{position:relative;display:inline-block}._badge__list_1ux8t_110{position:absolute;top:-6px;right:-6px;display:inline-flex}._badge__icon_1ux8t_116:nth-child(2),._badge__icon_1ux8t_116:nth-child(3){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")}._bubbleContent_1ip6j_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_1ip6j_106{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-origin:100% 0;white-space:nowrap}._bubble--badge_1ip6j_136{position:absolute;z-index:auto;top:6px;right:6px;transform:translate(50%,-50%)}._bubble--empty_1ip6j_143{width:8px;height:8px;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")}._textButton_1v7x3_106{display:flex;height:1.5rem;min-height:1.5rem;align-items:center;justify-content:center;gap:8px}._textButton--green_1v7x3_114{color:#cae85d}._textButton--green_1v7x3_114:hover{color:#b5d622}._textButton--blue_1v7x3_120{color:#01819c}._textButton--blue_1v7x3_120:hover{color:#98cbd6}._textButton--deepPurple_1v7x3_126{color:#635c80}._textButton--deepPurple_1v7x3_126:hover{color:#201649}._textButton_1v7x3_106:active{background:none}._textButton_1v7x3_106:disabled{color:#d2d0db;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")}._badgeLabel_t2tql_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_t2tql_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")}._bodyText_1v7lx_106{display:flex;flex-direction:column;gap:8px}._bodyText--notClickable_1v7lx_111{cursor:default}._bodyText--post_1v7lx_114{padding:8px 12px 0;margin-bottom:8px}._bodyText--modal_1v7lx_118{padding:12px 16px}._bodyText_1v7lx_106 button{justify-content:flex-start}@media screen and (max-width: 689px){._bodyText__text--collapsed_1v7lx_125{display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:3;text-overflow:ellipsis}}._bodyText__textButton_1v7lx_133{display:block}@media screen and (min-width: 690px){._bodyText__textButton_1v7lx_133{display:none}}._bodyText_1v7lx_106 a{color:#201649}._bodyText__showMore_1v7lx_144{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")}._overlay_qn50j_106{position:fixed;z-index:10000;top:0;left:0;width:100%;height:100%;animation:_fade-in_qn50j_1 .5s ease-out forwards;background:#000}._sheet_qn50j_117{position:fixed;z-index:10001;bottom:0;left:0;width:100%;padding:0;border:none;animation:_slide-up_qn50j_1 .5s forwards;background:inherit}._sheet_qn50j_117 ._sheetWrapper_qn50j_128{display:flex;flex-direction:column;background-color:#fff;border-top-left-radius:16px;border-top-right-radius:16px;box-shadow:0 6px 32px #20164933;color:#201649;outline:none}._sheet_qn50j_117 ._sheetWrapper_qn50j_128 ._sheetBody_qn50j_138{padding:4px 16px}._sheet_qn50j_117 ._sheetWrapper_qn50j_128 ._sheetHeader_qn50j_141{padding:24px 16px 12px}._sheet_qn50j_117 ._sheetWrapper_qn50j_128 ._sheetHeader_qn50j_141 header{padding:0}._sheet_qn50j_117 ._sheetWrapper_qn50j_128 ._sheetHeader_qn50j_141 header h3{color:#201649}._sheet_qn50j_117 ._sheetWrapper_qn50j_128 ._sheetFooter_qn50j_150{display:flex;flex-direction:column;align-items:center;justify-content:center;padding:8px 12px 32px;gap:12px}@keyframes _slide-up_qn50j_1{0%{transform:translateY(100%)}to{transform:translateY(0)}}@keyframes _fade-in_qn50j_1{0%{opacity:0}to{opacity:.5}}@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_6hx2l_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--fullWidth_6hx2l_117{width:100%}._primaryButton--medium_6hx2l_120{height:40px;padding:0 16px}._primaryButton--small_6hx2l_124,._primaryButton--tiny_6hx2l_124{height:32px;padding:0 12px}._primaryButton--highlight_6hx2l_128{background-color:#ff9de2}._primaryButton--highlight_6hx2l_128:hover{background-color:#ec7bcb}._primaryButton--primary_6hx2l_134{background-color:#cae85d}._primaryButton--primary_6hx2l_134:hover{background-color:#b5d622}._primaryButton--transparent_6hx2l_140{border:1px solid #201649;background-color:transparent}._primaryButton--transparent_6hx2l_140:hover{border-color:#ec7bcb;background-color:#ec7bcb}._primaryButton--loading_6hx2l_148 span{cursor:default;visibility:hidden}._primaryButton_6hx2l_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")}._secondaryButton_1oqqo_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}._secondaryButton--fullWidth_1oqqo_117{width:100%}._secondaryButton--medium_1oqqo_120{height:40px;padding:0 16px}._secondaryButton--small_1oqqo_124,._secondaryButton--tiny_1oqqo_124{height:32px;padding:0 12px}._secondaryButton--green_1oqqo_128{background-color:#f2fbc4}._secondaryButton--green_1oqqo_128:hover{background-color:#cae85d}._secondaryButton--pink_1oqqo_134{background-color:#fde6f7;color:#cc339f}._secondaryButton--pink_1oqqo_134:hover{background-color:#ff9de2;color:#201649}._secondaryButton--grey_1oqqo_142{background-color:#f4f3f6}._secondaryButton--grey_1oqqo_142:hover{background-color:#e9e8ed}._secondaryButton--loading_1oqqo_148 span{cursor:default;visibility:hidden}._secondaryButton_1oqqo_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_ghq2l_106{display:flex;overflow:hidden;width:100%;flex-direction:column;padding:16px;background-color:#fff;box-shadow:0 2px 8px #21164a0a,0 0 0 1px #e9e8ed;color:#201649}._root--border-radius_ghq2l_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_z8bwx_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_1nhjr_106{display:flex;align-items:center;padding-bottom:12px;color:inherit;gap:8px}._title_1nhjr_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_1astm_106{display:flex;align-items:center}._dividerLine_1astm_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")}._sticker_1m9em_106{display:flex;align-items:center;justify-content:center;border-radius:999px;background-color:var(--sticker-bg-color)}._sticker--color-green_1m9em_113{--sticker-bg-color: #cae85d}._sticker--color-pink_1m9em_116{--sticker-bg-color: #ff9de2}._sticker--color-lavender_1m9em_119{--sticker-bg-color: #7c5bff}._sticker--color-lavender_1m9em_119 path{stroke:#fff}._sticker--color-teal_1m9em_125{--sticker-bg-color: #01819C}._sticker--color-teal_1m9em_125 path{stroke:#fff}._sticker--color-orange_1m9em_131{--sticker-bg-color: #ebaa77}._sticker--color-grey_1m9em_134{--sticker-bg-color: #d2d0db}._sticker--size-small_1m9em_137{width:48px;height:48px}._sticker--size-medium_1m9em_141{width:56px;height:56px}._sticker--size-large_1m9em_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")}._emptyState_wydl1_106{display:flex;flex-direction:column;align-items:center;padding:24px 16px}._emptyState__text_wydl1_112{display:flex;flex-direction:column;text-align:center}._emptyState__secondaryText_wydl1_117{color:#635c80}._emptyState__buttons_wydl1_120{display:flex;width:100%;flex-direction:column;gap:8px}._emptyState--small_wydl1_126{gap:16px}._emptyState--small__text_wydl1_129{gap:4px}._emptyState--medium_wydl1_132{gap:24px}._emptyState--medium__text_wydl1_135{gap:8px}._emptyState--large_wydl1_138{gap:24px}._emptyState--large__text_wydl1_141{gap: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")}._feedItemCategory_1utsd_106{display:inline-flex;height:-moz-fit-content;height:fit-content;align-items:center;padding:4px 8px;border-radius:0 0 8px 8px;text-wrap:nowrap}._feedItemCategory--theme_1utsd_114{background-color:#cae85d;color:#201649}._feedItemCategory--closedPost_1utsd_118{background-color:#f4f3f6;color:#201649}@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")}._feedTile_xnzsg_106{display:flex;flex-direction:column;align-items:center;justify-content:center;padding:8px;border:1px #ffffff solid;border-radius:8px;background-color:#fff;box-shadow:0 2px 8px #21164a0a,0 0 0 1px #e9e8ed;gap:4px;text-align:center}._feedTile__icon_xnzsg_119{flex-shrink:0}._feedTile_xnzsg_106:hover{border-color:#635c80}._feedTile_xnzsg_106:active{border-color:#f4f3f6;background-color:#f4f3f6}@media screen and (max-width: 799px){._feedTile_xnzsg_106{flex-flow:row wrap;gap:8px;text-align:left}._feedTile__text_xnzsg_135{width:-moz-min-content;width:min-content;flex-grow:1}}._feedTile--fullWidth_xnzsg_140{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")}._fieldset_o9167_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_5b491_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_5b491_106:disabled{background:none;cursor:default}._iconButton_5b491_106:hover,._iconButton_5b491_106:active{background:none}._iconButton--circular_5b491_127{border-radius:999px;background:#cae85d}._iconButton--circular_5b491_127:disabled{background:#fff}._iconButton--circular_5b491_127:hover{background:#b5d622}._iconButton--circular_5b491_127:active{background:#cae85d}._iconButton--circular-small_5b491_140{width:40px;height:40px}._iconButton--circular-medium_5b491_144{width:48px;height:48px}._iconButton--circular-large_5b491_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_2h8bl_106{display:inline-flex;align-items:center;justify-content:center;border-radius:16px;background:#01819c}._labelPill_2h8bl_106 span{color:#fff;line-height:16px;text-align:center}._labelPill--small_2h8bl_118{height:20px;padding:0 8px}._labelPill--medium_2h8bl_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_1efwm_106{display:flex;flex-direction:column;padding-bottom:12px;gap:8px}._legend_1efwm_106 ._text_1efwm_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_1l3jw_106{display:flex;height:100%;align-items:center;justify-content:center;padding:16px 0}._wrapper_1l3jw_106 ._loadingSpinner_1l3jw_113{display:inline-block}._wrapper_1l3jw_106 ._loadingSpinner_1l3jw_113:after,._wrapper_1l3jw_106 ._loadingSpinner_1l3jw_113:before{content:"";display:inline-block;width:20px;height:20px;border-radius:50%;animation:_pulse-loader-size_1l3jw_1 1s ease infinite;background:#9c9c9c}._wrapper_1l3jw_106 ._loadingSpinner_1l3jw_113 i{display:inline-block;width:20px;height:20px;border-radius:50%;animation:_pulse-loader-size_1l3jw_1 1s ease infinite;background:#9c9c9c;animation-delay:.5s;transform:scale(.2)}@keyframes _pulse-loader-size_1l3jw_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_ttg90_106{--menuitem-selected-hover-color: #738C00;--menuitem-hover-color: #635C80;display:flex;width:100%;flex-shrink:0;align-items:center;padding:0 4px;background-color:#fff;color:#201649;cursor:pointer;gap:8px;text-decoration:none}._menuItem_ttg90_106 ._highlightFrame_ttg90_120{display:flex;flex:1;align-items:center;padding:8px;border-radius:8px;gap:8px}._menuItem_ttg90_106 ._rightIcon_ttg90_128{display:inherit;margin-left:auto;color:#635c80}._menuItem--selected_ttg90_133{color:#201649}._menuItem--selected_ttg90_133 ._leftIcon_ttg90_136{color:#738c00}._menuItem--selected_ttg90_133 ._highlightFrame_ttg90_120{background-color:#f2fbc4}@media (hover: hover) and (pointer: fine){._menuItem--selected_ttg90_133:hover{color:var(--menuitem-selected-hover-color)}}._menuItem--compact_ttg90_147{height:40px}@media (hover: hover) and (pointer: fine){._menuItem_ttg90_106:not(._menuItem--selected_ttg90_133):hover{color:var(--menuitem-hover-color)}._menuItem_ttg90_106:not(._menuItem--selected_ttg90_133):hover ._highlightFrame_ttg90_120{background-color:#f4f3f6}._menuItem_ttg90_106:not(._menuItem--selected_ttg90_133):hover ._highlightFrame--compact_ttg90_157{height:40px}}._menuItem_ttg90_106:not(._menuItem--selected_ttg90_133):active{color:var(--menuitem-hover-color)}._menuItem_ttg90_106:not(._menuItem--selected_ttg90_133):active ._highlightFrame_ttg90_120{background-color:#f4f3f6}._menuItem_ttg90_106:not(._menuItem--selected_ttg90_133):active ._highlightFrame--compact_ttg90_157{height:40px}@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")}._menuTile_o61bq_106{--tile-bg-color: #f4f3f6;--tile-color: #635C80;--tile-value-color: #4D17E5;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)}._menuTile--fullWidth_o61bq_119{width:100%}._menuTile--icon_o61bq_122{padding:4px 4px 8px}._menuTile__value_o61bq_126{color:var(--tile-value-color)}._menuTile_o61bq_106:hover{--tile-bg-color: #e9e8ed}._menuTile_o61bq_106:focus{--tile-bg-color: #d2d0db}._menuTile_o61bq_106:disabled{--tile-color: #a6a2b6;--tile-value-color: #a6a2b6;cursor:default}._menuTile_o61bq_106:disabled:hover,._menuTile_o61bq_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")}._backdrop_1lf8q_106{position:fixed;z-index:-1;background:#0003;top:0;right:0;bottom:0;left: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")}._modal_ftzhr_106{position:fixed;z-index:1300;display:flex;align-items:center;justify-content:center;top:0;right:0;bottom:0;left:0}._modal_ftzhr_106 ._modalWrapper_ftzhr_114{display:flex;max-width:90vw;max-height:90vh;flex-direction:column;border-radius:16px;background-color:#fff;box-shadow:0 6px 32px #2016491a;outline:none;overflow-x:hidden}@media screen and (min-width: 690px){._modal_ftzhr_106 ._modalWrapper_ftzhr_114{max-width:560px}}._modal_ftzhr_106 ._modalWrapper_ftzhr_114 ._modalHeader_ftzhr_130{position:sticky;z-index:1;top:0;padding:16px;background-color:#fff}._modal_ftzhr_106 ._modalWrapper_ftzhr_114 ._modalHeader_ftzhr_130 header{padding:0}._modal_ftzhr_106 ._modalWrapper_ftzhr_114 header button:first-child{display:none}._modal_ftzhr_106 ._modalFooter_ftzhr_143{display:flex;flex-direction:row;align-items:center;justify-content:space-between;margin:16px;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")}._navBar_1b0o6_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_e2my2_106 ._navItem_e2my2_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_e2my2_106 ._navItem_e2my2_106{padding:0 8px 8px}}._listItem_e2my2_106 ._navItem_e2my2_106 ._selector_e2my2_120{height:4px;align-self:stretch;border-radius:0 0 4px 4px;margin-bottom:4px;background-color:#cae85d;visibility:hidden}._listItem_e2my2_106 ._navItem--active_e2my2_128{padding-right:4px;padding-left:4px;color:#738c00}._listItem_e2my2_106 ._navItem--active_e2my2_128 ._selector_e2my2_120{height:4px;align-self:stretch;border-radius:0 0 4px 4px;background-color:#cae85d;visibility:visible}._label_e2my2_141{display:block;max-width:calc(100% - 1px);display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:1;text-overflow:ellipsis}@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")}._notice__content_1fvlz_106{--notice-bg-color: #f4f3f6;display:flex;flex-direction:column;align-items:flex-start;background-color:var(--notice-bg-color)}._notice__header_1fvlz_113{display:flex;width:100%;align-items:center;justify-content:space-between}._notice__iconHeadline_1fvlz_119{display:flex;align-items:center;gap:8px}._notice--small_1fvlz_124{gap:4px}._notice--medium_1fvlz_127{gap:8px}._notice--sticky_1fvlz_130{padding:16px}._notice--embedded_1fvlz_133{padding:8px;border-radius:8px}._notice--pink_1fvlz_137{--notice-bg-color: #ff9de2}._notice--green_1fvlz_140{--notice-bg-color: #f2fbc4}._notice--grey_1fvlz_143{--notice-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")}._root_1g8mo_106{position:relative;overflow:hidden;flex-shrink:0;border:solid 1px #d2d0db;background-color:#d2d0db}._root--24_1g8mo_113{width:24px;height:24px}._root--28_1g8mo_117{width:28px;height:28px}._root--32_1g8mo_121{width:32px;height:32px}._root--40_1g8mo_125{width:40px;height:40px}._root--48_1g8mo_129{width:48px;height:48px}._root--56_1g8mo_133{width:56px;height:56px}._root--64_1g8mo_137{width:64px;height:64px}._root--80_1g8mo_141{width:80px;height:80px}._root--120_1g8mo_145{width:120px;height:120px}._root--280_1g8mo_149{width:280px;height:280px}._root--square_1g8mo_153._root--24_1g8mo_113,._root--square_1g8mo_153._root--32_1g8mo_121{border-radius:4px}._root--square_1g8mo_153._root--40_1g8mo_125,._root--square_1g8mo_153._root--48_1g8mo_129{border-radius:8px}._root--square_1g8mo_153._root--56_1g8mo_133,._root--square_1g8mo_153._root--64_1g8mo_137{border-radius:12px}._root--square_1g8mo_153._root--80_1g8mo_141,._root--square_1g8mo_153._root--120_1g8mo_145{border-radius:16px}._root--circular_1g8mo_165{border-radius:50%}._root--isPlaceholder_1g8mo_168:before{position:absolute;z-index:1;width:100%;height:100%;background-color:#d2d0db;content:"";opacity:.4}._root_1g8mo_106 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_11paf_106{display:flex;width:100%;justify-content:space-between;padding:8px 12px;background-color:#fff;cursor:pointer;gap:12px}._root_11paf_106:hover{background-color:#f4f3f6}._root_11paf_106 ._thumbnail_11paf_118{flex-shrink:0;border:1px solid #d2d0db}._root_11paf_106 ._iconWrapper_11paf_122{display:flex;width:56px;height:56px;flex-shrink:0;align-items:center;justify-content:center;border-radius:4px;background:#f4f3f6;color:#635c80}._root_11paf_106 ._detail_11paf_133{display:flex;flex-direction:column;flex-grow:1;justify-content:center;color:#635c80;gap:2px}._root_11paf_106 ._detail_11paf_133 ._title_11paf_141{display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:1;text-overflow:ellipsis}._root_11paf_106 ._detail_11paf_133 ._notificationText_11paf_148{color:#201649;line-height:20px;display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:2;text-overflow:ellipsis}._unread_11paf_158{background-color:#fff9e5}._unread_11paf_158 ._bubble_11paf_161{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_jgtis_106{display:flex;width:100%;height:100%;align-items:center;justify-content:center;border-radius:8px}._wrapper_jgtis_106 path{stroke:#635c80}._wrapper--large_jgtis_117{background-color:#d2d0db}._wrapper--small_jgtis_120{border:1px solid #d2d0db;background-color:#f4f3f6}._wrapper--iconWrapper_jgtis_124{width:72px;height:72px;border-radius:999px}._wrapper_jgtis_106._wrapper--iconWrapper_jgtis_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_pz0sp_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_k830y_106{position:relative;display:flex;align-items:center;justify-content:space-between}._radio_k830y_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_k830y_106 input._radio--small_k830y_124{width:24px;height:24px}._radio_k830y_106 input:not(:disabled){cursor:pointer}._radio_k830y_106 input:disabled{border-color:#d2d0db}._radio_k830y_106 input:checked{border-color:#201649;background-color:#201649;transition:0s}._radio_k830y_106 input:checked:disabled{border-color:#a6a2b6;background-color:#a6a2b6}._radio_k830y_106 input:hover:not(:disabled,:checked){border-color:#635c80;background-color:#f4f3f6}._radio_k830y_106 label{display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:1;text-overflow:ellipsis;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_k830y_106 label._radio--small_k830y_124{margin-bottom:8;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_k830y_106 input:not(:disabled)~label{color:#635c80;cursor:pointer}._radio_k830y_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_k830y_106 input:checked~label._radio--small_k830y_124{margin-bottom:8;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_k830y_106 input:disabled~label{color:#a6a2b6}._radio_k830y_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_17n52_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_1oeju_106{position:relative;width:100%}._toggle_1oeju_111{display:flex;width:100%;flex-direction:row;justify-content:space-between;padding:16px;border-radius:16px;background:#fff;cursor:pointer}._toggle_1oeju_111 ._label_1oeju_121{display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:1;text-overflow:ellipsis;color:#635c80}._toggle--dark_1oeju_129{border:1px solid #f4f3f6;background-color:#f4f3f6}._toggle--dark_1oeju_129:hover{background-color:#e9e8ed}._toggle--dark_1oeju_129._disabled_1oeju_136{color:#a6a2b6}._toggle--dark_1oeju_129._disabled_1oeju_136:hover{background-color:#f4f3f6}._toggle--dark_1oeju_129._disabled_1oeju_136 ._label_1oeju_121{color:#a6a2b6}._toggle--light_1oeju_145{border:1px solid #a6a2b6;background-color:#fff}._toggle--light_1oeju_145:hover{border-color:#635c80;background-color:#f4f3f6}._toggle--light_1oeju_145._disabled_1oeju_136{border-color:#d2d0db;color:#a6a2b6}._toggle--light_1oeju_145._disabled_1oeju_136:hover{background-color:#fff}._toggle--light_1oeju_145._disabled_1oeju_136 ._label_1oeju_121{color:#a6a2b6}._toggle_1oeju_111._filled_1oeju_163 ._label_1oeju_121{color:#201649}._toggle_1oeju_111._error_1oeju_166{border-color:#cc339f;background:#fde6f7}._toggle_1oeju_111._error_1oeju_166:focus,._toggle_1oeju_111._error_1oeju_166:hover{border-color:#cc339f;background:#fde6f7}._icon_1oeju_175{transition:transform .3s}._icon_1oeju_175._expanded_1oeju_179{transform:rotate(180deg)}._hidden_1oeju_183{display:none}._option_1oeju_187{margin-bottom:8;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;display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:1;text-overflow:ellipsis;padding:8px 12px;color:#635c80;cursor:pointer}._option_1oeju_187:hover{background:#f4f3f6;color:#201649}._option_1oeju_187._selected_1oeju_211{background:#f2fbc4;color:#201649}._option_1oeju_187._selected_1oeju_211:hover{color:#635c80}._dropdown_1oeju_219{position:absolute;z-index:1;overflow:hidden;width:100%;border-radius:8px;background:#fff;box-shadow:0 4px 20px #2016491a}._errorMessage_1oeju_229{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")}._backdrop_11wot_106{position:fixed;z-index:-1;background:#0003;top:0;right:0;bottom:0;left:0}@media screen and (max-width: 689px){._backdrop_11wot_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")}._sheet_qnncf_106{position:fixed;z-index:1300;display:flex;align-items:center;justify-content:center;top:0;right:0;bottom:0;left:0}._sheet_qnncf_106 ._sheetWrapper_qnncf_114{min-width:560px;border-radius:0;background-color:#fff;box-shadow:0 6px 32px #2016491a;outline:none}@media screen and (min-width: 690px){._sheet_qnncf_106 ._sheetWrapper_qnncf_114{border-radius:16px}}._sheet_qnncf_106 ._sheetWrapper_qnncf_114 ._sheetHeader_qnncf_126{padding:16px}._sheet_qnncf_106 ._sheetWrapper_qnncf_114 ._sheetHeader_qnncf_126 header{padding:0}._sheet_qnncf_106 ._sheetWrapper_qnncf_114 header button:first-child{display:none}@media screen and (max-width: 689px){._sheet_qnncf_106 ._sheetWrapper_qnncf_114{width:100%;min-width:auto;height:100%}._sheet_qnncf_106 ._sheetWrapper_qnncf_114 header button:last-child{display:none}._sheet_qnncf_106 ._sheetWrapper_qnncf_114 header button:first-child{display:block}}._sheet_qnncf_106 ._sheetFooter_qnncf_148{display:none;flex-direction:row;align-items:center;justify-content:space-between;margin:16px;gap:16px}._sheet_qnncf_106 ._sheetFooter--alwaysVisible_qnncf_156{display:flex}@media screen and (min-width: 690px){._sheet_qnncf_106 ._sheetFooter_qnncf_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")}@keyframes _snackbarbottom_194fm_1{0%{transform:translateY(160%)}45%{transform:translateY(-12%)}70%{transform:translateY(4%)}90%,to{transform:translateY(0)}}._animation--enter_194fm_120{transform:translateY(100%)}._animation--enter-active_194fm_124{animation:_snackbarbottom_194fm_1 .6s;transform:translateY(0)}._animation--exit_194fm_129{transform:translateY(0)}._animation--exit-active_194fm_133{animation:_snackbarbottom_194fm_1 reverse .6s;transform:translateY(160%)}._snackbar_194fm_138{position:fixed;z-index:2;bottom:32px;left:32px;display:flex;width:343px;height:56px;justify-content:space-between;padding:8px 16px;border-radius:8px;background-color:#21164ae6;box-shadow:0 6px 32px #20164933;gap:12px;touch-action:none}@media screen and (max-width: 799px){._snackbar_194fm_138{right:0;bottom:calc(86px + env(safe-area-inset-bottom));left:0;margin:auto}}._snackbar__left_194fm_162{display:flex;flex-grow:1;align-items:center;gap:8px}._snackbar__right_194fm_168{display:flex;align-items:center;gap:8px}._snackbar__textLabel_194fm_173{overflow:hidden;max-height:40px;flex-grow:1;color:#fff;overflow-wrap:break-word;white-space:normal}._snackbar__textButton_194fm_181{text-wrap:nowrap}._snackbar__dismiss_194fm_184{color:#fff}._snackbar__icon_194fm_187{flex-shrink:0;color:#cae85d}@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_nsyzs_106{width:100%}._label_nsyzs_110{position:absolute;top:24px;right:16px;left:16px;display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:1;text-overflow:ellipsis;transform:translateY(-50%);transition:top .3s,font-size .3s}._textArea_nsyzs_124{width:100%;min-height:96px;background-color:transparent;color:#201649}._textArea_nsyzs_124:focus-visible{outline:none}._textArea_nsyzs_124+label{color:#635c80}._textArea_nsyzs_124:not(:-moz-placeholder-shown)+label{top:16px}._textArea_nsyzs_124:focus+label,._textArea_nsyzs_124:not(:placeholder-shown)+label{top:16px}._textArea_nsyzs_124: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_nsyzs_124:focus+label>span,._textArea_nsyzs_124: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_nsyzs_152{position:relative}._textAreaContainer_nsyzs_152:focus-within{outline:#a6a2b6 2px solid}._textAreaContainer--dark_nsyzs_158{background-color:#f4f3f6}._textAreaContainer--dark_nsyzs_158:hover{background-color:#e9e8ed}._textAreaContainer--dark_nsyzs_158:disabled{color:#a6a2b6}._textAreaContainer--dark_nsyzs_158:disabled:hover{background-color:#f4f3f6}._textAreaContainer--dark_nsyzs_158:disabled+label{color:#a6a2b6}._textAreaContainer--light_nsyzs_173{border:1px solid #a6a2b6;background-color:#fff}._textAreaContainer--light_nsyzs_173:hover{border-color:#635c80;background-color:#f4f3f6}._textAreaContainer--light_nsyzs_173:disabled{border-color:#d2d0db;color:#a6a2b6}._textAreaContainer--light_nsyzs_173:disabled:hover{background-color:#fff}._textAreaContainer--light_nsyzs_173:disabled+label{color:#a6a2b6}._textAreaContainer--medium_nsyzs_191{border-radius:16px}._textAreaContainer--medium_nsyzs_191:not(:-moz-placeholder-shown){padding-top:26px;padding-bottom:6px}._textAreaContainer--medium_nsyzs_191:focus,._textAreaContainer--medium_nsyzs_191:not(:placeholder-shown){padding-top:26px;padding-bottom:6px}._textAreaContainer--medium_nsyzs_191 ._textArea_nsyzs_124{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_nsyzs_212{border-radius:12px}._textAreaContainer--small_nsyzs_212 ._textArea_nsyzs_124{margin-bottom:8;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_nsyzs_212 ._textArea_nsyzs_124:not(:-moz-placeholder-shown)+label{display:none}._textAreaContainer--small_nsyzs_212 ._textArea_nsyzs_124:focus+label,._textAreaContainer--small_nsyzs_212 ._textArea_nsyzs_124:not(:placeholder-shown)+label{display:none}._textAreaContainer--error_nsyzs_232{border:1px solid #CC339F;background-color:#fde6f7;color:#201649}._textAreaContainer--error_nsyzs_232:focus{border-color:#cc339f}._textAreaContainer--error_nsyzs_232:hover{border-color:#cc339f;background-color:#fde6f7}._textAreaContainer--error_nsyzs_232:disabled{border-color:#cc339f}._textAreaContainer--error_nsyzs_232:disabled:hover{background-color:#fde6f7}._textAreaContainer--errorMessage_nsyzs_250{display:block;margin-top:4px;margin-left: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")}._wrapper_1t6h5_106{width:100%}._wrapper_1t6h5_106 ._textInputContainer_1t6h5_109{position:relative}._wrapper_1t6h5_106 ._textInputContainer_1t6h5_109 label{position:absolute;top:50%;right:16px;left:16px;display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:1;text-overflow:ellipsis;transform:translateY(-50%);transition:top .3s,font-size .3s}._wrapper_1t6h5_106 ._textInputContainer_1t6h5_109 ._textInput_1t6h5_109{width:100%;color:#201649;outline:none;display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:1;text-overflow:ellipsis}._wrapper_1t6h5_106 ._textInputContainer_1t6h5_109 ._textInput_1t6h5_109+label{color:#635c80}._wrapper_1t6h5_106 ._textInputContainer_1t6h5_109 ._textInput_1t6h5_109:not(:-moz-placeholder-shown)+label{top:16px}._wrapper_1t6h5_106 ._textInputContainer_1t6h5_109 ._textInput_1t6h5_109:focus+label,._wrapper_1t6h5_106 ._textInputContainer_1t6h5_109 ._textInput_1t6h5_109:not(:placeholder-shown)+label{top:16px}._wrapper_1t6h5_106 ._textInputContainer_1t6h5_109 ._textInput_1t6h5_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_1t6h5_106 ._textInputContainer_1t6h5_109 ._textInput_1t6h5_109:focus+label>span,._wrapper_1t6h5_106 ._textInputContainer_1t6h5_109 ._textInput_1t6h5_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_1t6h5_106 ._textInputContainer_1t6h5_109 ._textInput--medium_1t6h5_153{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_1t6h5_106 ._textInputContainer_1t6h5_109 ._textInput--medium_1t6h5_153:not(:-moz-placeholder-shown){padding-top:26px;padding-bottom:6px}._wrapper_1t6h5_106 ._textInputContainer_1t6h5_109 ._textInput--medium_1t6h5_153:focus,._wrapper_1t6h5_106 ._textInputContainer_1t6h5_109 ._textInput--medium_1t6h5_153:not(:placeholder-shown){padding-top:26px;padding-bottom:6px}._wrapper_1t6h5_106 ._textInputContainer_1t6h5_109 ._textInput--small_1t6h5_173{margin-bottom:8;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_1t6h5_106 ._textInputContainer_1t6h5_109 ._textInput--small_1t6h5_173:not(:-moz-placeholder-shown)+label{display:none}._wrapper_1t6h5_106 ._textInputContainer_1t6h5_109 ._textInput--small_1t6h5_173:focus+label,._wrapper_1t6h5_106 ._textInputContainer_1t6h5_109 ._textInput--small_1t6h5_173:not(:placeholder-shown)+label{display:none}._wrapper_1t6h5_106 ._textInputContainer_1t6h5_109 ._textInput--dark_1t6h5_192{background-color:#f4f3f6}._wrapper_1t6h5_106 ._textInputContainer_1t6h5_109 ._textInput--dark_1t6h5_192:hover{background-color:#e9e8ed}._wrapper_1t6h5_106 ._textInputContainer_1t6h5_109 ._textInput--dark_1t6h5_192:disabled{color:#a6a2b6}._wrapper_1t6h5_106 ._textInputContainer_1t6h5_109 ._textInput--dark_1t6h5_192:disabled:hover{background-color:#f4f3f6}._wrapper_1t6h5_106 ._textInputContainer_1t6h5_109 ._textInput--dark_1t6h5_192:disabled+label{color:#a6a2b6}._wrapper_1t6h5_106 ._textInputContainer_1t6h5_109 ._textInput--light_1t6h5_207{border:1px solid #a6a2b6;background-color:#fff}._wrapper_1t6h5_106 ._textInputContainer_1t6h5_109 ._textInput--light_1t6h5_207:hover{border-color:#635c80;background-color:#f4f3f6}._wrapper_1t6h5_106 ._textInputContainer_1t6h5_109 ._textInput--light_1t6h5_207:disabled{border-color:#d2d0db;color:#a6a2b6}._wrapper_1t6h5_106 ._textInputContainer_1t6h5_109 ._textInput--light_1t6h5_207:disabled:hover{background-color:#fff}._wrapper_1t6h5_106 ._textInputContainer_1t6h5_109 ._textInput--light_1t6h5_207:disabled+label{color:#a6a2b6}._wrapper_1t6h5_106 ._textInputContainer_1t6h5_109 ._textInput--error_1t6h5_225{border:1px solid #CC339F;background-color:#fde6f7;color:#201649}._wrapper_1t6h5_106 ._textInputContainer_1t6h5_109 ._textInput--error_1t6h5_225:focus{border-color:#cc339f}._wrapper_1t6h5_106 ._textInputContainer_1t6h5_109 ._textInput--error_1t6h5_225:hover{border-color:#cc339f;background-color:#fde6f7}._wrapper_1t6h5_106 ._textInputContainer_1t6h5_109 ._textInput--error_1t6h5_225:disabled{border-color:#cc339f}._wrapper_1t6h5_106 ._textInputContainer_1t6h5_109 ._textInput--error_1t6h5_225:disabled:hover{background-color:#fde6f7}._wrapper_1t6h5_106 ._textInputContainer--errorMessage_1t6h5_243{display:block;margin-top:4px;margin-left: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")}._wrapper_bd6jp_106{display:flex;width:-moz-fit-content;width:fit-content;flex-direction:column;align-items:center;justify-content:center;gap:4px}._wrapper_bd6jp_106 ._isPlaceholder_bd6jp_114{display:flex;width:64px;height:64px;align-items:center;justify-content:center;border:1px solid #d2d0db;background-color:#f4f3f6}._wrapper_bd6jp_106 ._isPlaceholder_bd6jp_114 svg path{stroke:#635c80}._wrapper_bd6jp_106 ._square_bd6jp_126{border-radius:8px}._wrapper_bd6jp_106 ._circular_bd6jp_129{border-radius:50%}._wrapper_bd6jp_106 ._label_bd6jp_132{max-width:72px;color:#635c80;text-align:center;display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:2;text-overflow:ellipsis}@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")}._thumbnailWrapper_a828p_106{position:relative;display:inline-block}._thumbnailWrapper__thumbnail_a828p_110{position:absolute;right:-4px;bottom:-4px}@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_sz75s_106{position:relative;display:inline-block;width:48px;height:28px}._switch_sz75s_106 ._slider_sz75s_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_sz75s_106 ._slider_sz75s_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_sz75s_106 ._slider_sz75s_112._focusVisible_sz75s_134{box-shadow:inset 0 0 0 1.5px #43adc3!important}._switch_sz75s_106 input{position:absolute;z-index:2;width:48px;height:28px;opacity:0}._switch_sz75s_106 input:not(:disabled){cursor:pointer}._switch_sz75s_106 input:disabled+._slider_sz75s_112{opacity:.4}._switch_sz75s_106 input:checked+._slider_sz75s_112{background-color:#201649;box-shadow:inset 0 0 0 1.5px #201649}._switch_sz75s_106 input:checked+._slider_sz75s_112:before{transform:translate(-2px)}@media (hover: hover){._switch_sz75s_106 input:hover+._slider_sz75s_112{box-shadow:inset 0 0 0 1.5px #635c80}._switch_sz75s_106 input:checked:hover+._slider_sz75s_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_1j7zm_106{display:flex;width:100%;align-items:center;padding:8px 16px;background-color:#fff;color:#635c80;cursor:pointer;gap:12px}._toggleInput_1j7zm_106 svg{flex-shrink:0}._toggleInput_1j7zm_106 ._textWrapper_1j7zm_119{display:flex;flex-direction:column;flex-grow:1}._toggleInput_1j7zm_106 ._textWrapper--withDescription_1j7zm_124{gap:4px}._toggleInput_1j7zm_106 ._switch_1j7zm_127{flex-shrink:0}._toggleInput--checked_1j7zm_130{color:#201649}._toggleInput--disabled_1j7zm_133{cursor:unset}._toggleInput--withBorder_1j7zm_136{padding:12px 16px;border-radius:16px;box-shadow:inset 0 0 0 1px #d2d0db}
|