@goodhood-web/ui 1.12.0-development.11 → 1.12.0-development.12
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 +6 -6
- package/lib/Organisms/Modals/Sheet/Sheet.types.d.ts +1 -1
- package/package.json +1 -1
- package/style.css +1 -1
package/index.js
CHANGED
|
@@ -213,4 +213,4 @@ ${t}</tr>
|
|
|
213
213
|
`}tablecell(t){const a=this.parser.parseInline(t.tokens),i=t.header?"th":"td";return(t.align?`<${i} align="${t.align}">`:`<${i}>`)+a+`</${i}>
|
|
214
214
|
`}strong({tokens:t}){return`<strong>${this.parser.parseInline(t)}</strong>`}em({tokens:t}){return`<em>${this.parser.parseInline(t)}</em>`}codespan({text:t}){return`<code>${t}</code>`}br(t){return"<br>"}del({tokens:t}){return`<del>${this.parser.parseInline(t)}</del>`}link({href:t,title:a,tokens:i}){const o=this.parser.parseInline(i),u=If(t);if(u===null)return o;t=u;let d='<a href="'+t+'"';return a&&(d+=' title="'+a+'"'),d+=">"+o+"</a>",d}image({href:t,title:a,text:i}){const o=If(t);if(o===null)return i;t=o;let u=`<img src="${t}" alt="${i}"`;return a&&(u+=` title="${a}"`),u+=">",u}text(t){return"tokens"in t&&t.tokens?this.parser.parseInline(t.tokens):t.text}}class Md{strong({text:t}){return t}em({text:t}){return t}codespan({text:t}){return t}del({text:t}){return t}html({text:t}){return t}text({text:t}){return t}link({text:t}){return""+t}image({text:t}){return""+t}br(){return""}}class Cn{constructor(t){ut(this,"options");ut(this,"renderer");ut(this,"textRenderer");this.options=t||wa,this.options.renderer=this.options.renderer||new fc,this.renderer=this.options.renderer,this.renderer.options=this.options,this.renderer.parser=this,this.textRenderer=new Md}static parse(t,a){return new Cn(a).parse(t)}static parseInline(t,a){return new Cn(a).parseInline(t)}parse(t,a=!0){let i="";for(let o=0;o<t.length;o++){const u=t[o];if(this.options.extensions&&this.options.extensions.renderers&&this.options.extensions.renderers[u.type]){const m=u,h=this.options.extensions.renderers[m.type].call({parser:this},m);if(h!==!1||!["space","hr","heading","code","table","blockquote","list","html","paragraph","text"].includes(m.type)){i+=h||"";continue}}const d=u;switch(d.type){case"space":{i+=this.renderer.space(d);continue}case"hr":{i+=this.renderer.hr(d);continue}case"heading":{i+=this.renderer.heading(d);continue}case"code":{i+=this.renderer.code(d);continue}case"table":{i+=this.renderer.table(d);continue}case"blockquote":{i+=this.renderer.blockquote(d);continue}case"list":{i+=this.renderer.list(d);continue}case"html":{i+=this.renderer.html(d);continue}case"paragraph":{i+=this.renderer.paragraph(d);continue}case"text":{let m=d,h=this.renderer.text(m);for(;o+1<t.length&&t[o+1].type==="text";)m=t[++o],h+=`
|
|
215
215
|
`+this.renderer.text(m);a?i+=this.renderer.paragraph({type:"paragraph",raw:h,text:h,tokens:[{type:"text",raw:h,text:h}]}):i+=h;continue}default:{const m='Token with "'+d.type+'" type was not found.';if(this.options.silent)return console.error(m),"";throw new Error(m)}}}return i}parseInline(t,a){a=a||this.renderer;let i="";for(let o=0;o<t.length;o++){const u=t[o];if(this.options.extensions&&this.options.extensions.renderers&&this.options.extensions.renderers[u.type]){const m=this.options.extensions.renderers[u.type].call({parser:this},u);if(m!==!1||!["escape","html","link","image","strong","em","codespan","br","del","text"].includes(u.type)){i+=m||"";continue}}const d=u;switch(d.type){case"escape":{i+=a.text(d);break}case"html":{i+=a.html(d);break}case"link":{i+=a.link(d);break}case"image":{i+=a.image(d);break}case"strong":{i+=a.strong(d);break}case"em":{i+=a.em(d);break}case"codespan":{i+=a.codespan(d);break}case"br":{i+=a.br(d);break}case"del":{i+=a.del(d);break}case"text":{i+=a.text(d);break}default:{const m='Token with "'+d.type+'" type was not found.';if(this.options.silent)return console.error(m),"";throw new Error(m)}}}return i}}class Vs{constructor(t){ut(this,"options");this.options=t||wa}preprocess(t){return t}postprocess(t){return t}processAllTokens(t){return t}}ut(Vs,"passThroughHooks",new Set(["preprocess","postprocess","processAllTokens"]));class Qx{constructor(...t){ut(this,"defaults",_d());ut(this,"options",this.setOptions);ut(this,"parse",this.parseMarkdown(_n.lex,Cn.parse));ut(this,"parseInline",this.parseMarkdown(_n.lexInline,Cn.parseInline));ut(this,"Parser",Cn);ut(this,"Renderer",fc);ut(this,"TextRenderer",Md);ut(this,"Lexer",_n);ut(this,"Tokenizer",uc);ut(this,"Hooks",Vs);this.use(...t)}walkTokens(t,a){var o,u;let i=[];for(const d of t)switch(i=i.concat(a.call(this,d)),d.type){case"table":{const m=d;for(const h of m.header)i=i.concat(this.walkTokens(h.tokens,a));for(const h of m.rows)for(const b of h)i=i.concat(this.walkTokens(b.tokens,a));break}case"list":{const m=d;i=i.concat(this.walkTokens(m.items,a));break}default:{const m=d;(u=(o=this.defaults.extensions)==null?void 0:o.childTokens)!=null&&u[m.type]?this.defaults.extensions.childTokens[m.type].forEach(h=>{const b=m[h].flat(1/0);i=i.concat(this.walkTokens(b,a))}):m.tokens&&(i=i.concat(this.walkTokens(m.tokens,a)))}}return i}use(...t){const a=this.defaults.extensions||{renderers:{},childTokens:{}};return t.forEach(i=>{const o={...i};if(o.async=this.defaults.async||o.async||!1,i.extensions&&(i.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(...m){let h=u.renderer.apply(this,m);return h===!1&&(h=d.apply(this,m)),h}: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)}),o.extensions=a),i.renderer){const u=this.defaults.renderer||new fc(this.defaults);for(const d in i.renderer){if(!(d in u))throw new Error(`renderer '${d}' does not exist`);if(["options","parser"].includes(d))continue;const m=d,h=i.renderer[m],b=u[m];u[m]=(..._)=>{let k=h.apply(u,_);return k===!1&&(k=b.apply(u,_)),k||""}}o.renderer=u}if(i.tokenizer){const u=this.defaults.tokenizer||new uc(this.defaults);for(const d in i.tokenizer){if(!(d in u))throw new Error(`tokenizer '${d}' does not exist`);if(["options","rules","lexer"].includes(d))continue;const m=d,h=i.tokenizer[m],b=u[m];u[m]=(..._)=>{let k=h.apply(u,_);return k===!1&&(k=b.apply(u,_)),k}}o.tokenizer=u}if(i.hooks){const u=this.defaults.hooks||new Vs;for(const d in i.hooks){if(!(d in u))throw new Error(`hook '${d}' does not exist`);if(d==="options")continue;const m=d,h=i.hooks[m],b=u[m];Vs.passThroughHooks.has(d)?u[m]=_=>{if(this.defaults.async)return Promise.resolve(h.call(u,_)).then(M=>b.call(u,M));const k=h.call(u,_);return b.call(u,k)}:u[m]=(..._)=>{let k=h.apply(u,_);return k===!1&&(k=b.apply(u,_)),k}}o.hooks=u}if(i.walkTokens){const u=this.defaults.walkTokens,d=i.walkTokens;o.walkTokens=function(m){let h=[];return h.push(d.call(this,m)),u&&(h=h.concat(u.call(this,m))),h}}this.defaults={...this.defaults,...o}}),this}setOptions(t){return this.defaults={...this.defaults,...t},this}lexer(t,a){return _n.lex(t,a??this.defaults)}parser(t,a){return Cn.parse(t,a??this.defaults)}parseMarkdown(t,a){return(o,u)=>{const d={...u},m={...this.defaults,...d},h=this.onError(!!m.silent,!!m.async);if(this.defaults.async===!0&&d.async===!1)return h(new Error("marked(): The async option was set to true by an extension. Remove async: false from the parse options object to return a Promise."));if(typeof o>"u"||o===null)return h(new Error("marked(): input parameter is undefined or null"));if(typeof o!="string")return h(new Error("marked(): input parameter is of type "+Object.prototype.toString.call(o)+", string expected"));if(m.hooks&&(m.hooks.options=m),m.async)return Promise.resolve(m.hooks?m.hooks.preprocess(o):o).then(b=>t(b,m)).then(b=>m.hooks?m.hooks.processAllTokens(b):b).then(b=>m.walkTokens?Promise.all(this.walkTokens(b,m.walkTokens)).then(()=>b):b).then(b=>a(b,m)).then(b=>m.hooks?m.hooks.postprocess(b):b).catch(h);try{m.hooks&&(o=m.hooks.preprocess(o));let b=t(o,m);m.hooks&&(b=m.hooks.processAllTokens(b)),m.walkTokens&&this.walkTokens(b,m.walkTokens);let _=a(b,m);return m.hooks&&(_=m.hooks.postprocess(_)),_}catch(b){return h(b)}}}onError(t,a){return i=>{if(i.message+=`
|
|
216
|
-
Please report this to https://github.com/markedjs/marked.`,t){const o="<p>An error occurred:</p><pre>"+Ar(i.message+"",!0)+"</pre>";return a?Promise.resolve(o):o}if(a)return Promise.reject(i);throw i}}}const ga=new Qx;function lt(r,t){return ga.parse(r,t)}lt.options=lt.setOptions=function(r){return ga.setOptions(r),lt.defaults=ga.defaults,j1(lt.defaults),lt};lt.getDefaults=_d;lt.defaults=wa;lt.use=function(...r){return ga.use(...r),lt.defaults=ga.defaults,j1(lt.defaults),lt};lt.walkTokens=function(r,t){return ga.walkTokens(r,t)};lt.parseInline=ga.parseInline;lt.Parser=Cn;lt.parser=Cn.parse;lt.Renderer=fc;lt.TextRenderer=Md;lt.Lexer=_n;lt.lexer=_n.lex;lt.Tokenizer=uc;lt.Hooks=Vs;lt.parse=lt;lt.options;lt.setOptions;lt.use;lt.walkTokens;lt.parseInline;Cn.parse;_n.lex;const Kx=r=>r.replace(/"/g,"QUOTE"),e4=r=>r.replace(new RegExp("QUOTE","g"),'"');function t4({className:r,inline:t=!1,text:a}){const i=e4(px(Kx(a)));return R.jsx("span",{className:r,dangerouslySetInnerHTML:{__html:t?lt.parseInline(i):lt.parse(i)}})}const r4="_menuItem_pqaol_106",n4="_highlightFrame_pqaol_120",o4="_rightIcon_pqaol_128",a4="_leftIcon_pqaol_133",la={menuItem:r4,highlightFrame:n4,rightIcon:o4,"menuItem--selected":"_menuItem--selected_pqaol_133",leftIcon:a4,"menuItem--compact":"_menuItem--compact_pqaol_144","highlightFrame--compact":"_highlightFrame--compact_pqaol_151"},i4=({className:r,compact:t,href:a,isSelected:i,labelPillClassName:o,labelPillText:u,leftIcon:d,onClick:m,rightIcon:h,role:b,text:_})=>{const k=()=>t?"body-regular":i?"h5":"body-large";return R.jsx(gr,{role:b,onClick:m,className:xe(r,la.menuItem,{[la["menuItem--selected"]]:i,[la["menuItem--compact"]]:t}),...a?{href:a}:{},children:R.jsxs("span",{className:xe(la.highlightFrame,{[la["menuItem--compact"]]:t}),children:[d&&R.jsx("span",{className:la.leftIcon,children:d}),R.jsx(De,{type:k(),as:"span",children:_}),u&&R.jsx(bd,{label:u,size:"medium",className:o}),h&&R.jsx("span",{className:la.rightIcon,children:h})]})})},s4="_navBar_smoij_106",l4={navBar:s4},c4=({children:r,onChange:t,value:a})=>{const[i,o]=B.useState(a||""),u=d=>{t(d),o(d)};return R.jsx("ul",{className:l4.navBar,children:B.Children.map(r,d=>B.cloneElement(d,{active:d.props.id.toLowerCase()===i.toLowerCase(),onChange:u}))})},u4="_listItem_w254q_106",d4="_navItem_w254q_106",f4="_selector_w254q_120",p4="_label_w254q_141",As={listItem:u4,navItem:d4,selector:f4,"navItem--active":"_navItem--active_w254q_128",label:p4},h4=({active:r,ariaLabel:t,icon:a,id:i,label:o,onChange:u})=>{const d=()=>{u&&u(i)};return R.jsx("li",{className:As.listItem,children:R.jsxs(gr,{className:xe(As.navItem,{[As["navItem--active"]]:r}),onClick:d,"aria-label":t,children:[R.jsx("div",{className:As.selector}),a,o&&R.jsx(De,{className:As.label,type:"detail-medium",as:"span",children:o})]})})},m4="_emptyState_eo42d_106",g4="_emptyState__text_eo42d_112",v4="_emptyState__secondaryText_eo42d_117",b4="_emptyState__buttons_eo42d_120",wi={emptyState:m4,emptyState__text:g4,emptyState__secondaryText:v4,emptyState__buttons:b4,"emptyState--small":"_emptyState--small_eo42d_126","emptyState--small__text":"_emptyState--small__text_eo42d_129","emptyState--medium":"_emptyState--medium_eo42d_132","emptyState--medium__text":"_emptyState--medium__text_eo42d_135","emptyState--large":"_emptyState--large_eo42d_138","emptyState--large__text":"_emptyState--large__text_eo42d_141"},y4={large:{buttonSize:"medium",primaryTextType:"h3",secondaryTextType:"body-large"},medium:{buttonSize:"medium",primaryTextType:"h4",secondaryTextType:"body-regular"},small:{buttonSize:"small",primaryTextType:"h5",secondaryTextType:"detail-medium"}},w4=({buttons:r=[],customVisual:t,primaryText:a,secondaryText:i,size:o,stickerProps:u})=>{const d=xe(wi.emptyState,wi[`emptyState--${o}`]),{buttonSize:m,primaryTextType:h,secondaryTextType:b}=y4[o],_=r.map((k,M)=>{if(k.buttonType==="primary")return R.jsx(yd,{...k,size:m},M);if(k.buttonType==="text")return R.jsx(Rn,{...k,size:m},M)});return R.jsxs("div",{className:d,children:[u&&R.jsx(R1,{size:o,...u}),t,(a||i)&&R.jsxs("div",{className:xe(wi.emptyState__text,wi[`emptyState--${o}__text`]),children:[a&&R.jsx(De,{type:h,children:a}),i&&R.jsx(De,{type:b,className:wi.emptyState__secondaryText,children:i})]}),_.length>0&&R.jsx("div",{className:wi.emptyState__buttons,children:_})]})},x4="_notice__content_160kh_106",k4="_notice__header_160kh_113",_4="_notice__iconHeadline_160kh_119",mr={notice__content:x4,notice__header:k4,notice__iconHeadline:_4,"notice--small":"_notice--small_160kh_124","notice--medium":"_notice--medium_160kh_127","notice--sticky":"_notice--sticky_160kh_130","notice--embedded":"_notice--embedded_160kh_133","notice--pink":"_notice--pink_160kh_137","notice--green":"_notice--green_160kh_140","notice--grey":"_notice--grey_160kh_143"},C4=({context:r,dismissible:t,iconName:a,notificationBubble:i,onClick:o,onDismiss:u,primaryText:d,secondaryText:m,size:h,textButton:b,type:_})=>{const k=xe(mr[`notice--${h}`],mr[`notice--${_}`],{[mr["notice--green"]]:r==="infoGreen",[mr["notice--grey"]]:r==="infoGrey"}),M=t&&m;return R.jsxs("div",{className:mr.notice,children:[R.jsxs("div",{className:xe(mr.notice__content,k),children:[R.jsxs("div",{className:mr.notice__header,children:[R.jsxs("div",{className:mr.notice__iconHeadline,children:[a&&R.jsx(wt,{name:a,size:"24"}),i&&R.jsx(Zs,{...i}),d&&R.jsx(De,{type:h==="small"?"detail-bold":"h5",children:d})]}),M&&R.jsx(Pi,{onClick:u,icon:"cross",ariaLabel:"Schließen",size:"small"}),!m&&b&&R.jsx(Rn,{onClick:o,color:"blue",size:h,text:b})]}),m&&R.jsx(De,{type:h==="small"?"detail-medium":"body-regular",children:m}),m&&b&&R.jsx(Rn,{onClick:o,color:"blue",size:h,text:b})]}),_==="sticky"&&R.jsx(P1,{})]})},S4=({dismissible:r,iconName:t,notificationBubble:a,onDismiss:i,primaryText:o,secondaryText:u,size:d})=>{const m=xe(mr["notice--pink"],mr[`notice--${d}`],mr["notice--embedded"]);return R.jsx("div",{className:mr.notice,children:R.jsxs("div",{className:xe(mr.notice__content,m),children:[R.jsxs("div",{className:mr.notice__header,children:[R.jsxs("div",{className:mr.notice__iconHeadline,children:[t&&R.jsx(wt,{name:t,size:"24"}),a&&R.jsx(Zs,{...a}),o&&R.jsx(De,{type:d==="small"?"detail-bold":"h5",children:o})]}),r&&R.jsx(Pi,{onClick:i,icon:"cross",ariaLabelledBy:"Schließen",size:"small"})]}),u&&R.jsx(De,{type:d==="small"?"detail-medium":"body-regular",children:u})]})})},E4=r=>r.context==="warning"?R.jsx(S4,{...r}):R.jsx(C4,{...r});function pc(){return pc=Object.assign?Object.assign.bind():function(r){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var i in a)({}).hasOwnProperty.call(a,i)&&(r[i]=a[i])}return r},pc.apply(null,arguments)}function G1(r,t){if(r==null)return{};var a={};for(var i in r)if({}.hasOwnProperty.call(r,i)){if(t.includes(i))continue;a[i]=r[i]}return a}function td(r,t){return td=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(a,i){return a.__proto__=i,a},td(r,t)}function X1(r,t){r.prototype=Object.create(t.prototype),r.prototype.constructor=r,td(r,t)}function R4(r,t){return r.classList?!!t&&r.classList.contains(t):(" "+(r.className.baseVal||r.className)+" ").indexOf(" "+t+" ")!==-1}function T4(r,t){r.classList?r.classList.add(t):R4(r,t)||(typeof r.className=="string"?r.className=r.className+" "+t:r.setAttribute("class",(r.className&&r.className.baseVal||"")+" "+t))}function Ff(r,t){return r.replace(new RegExp("(^|\\s)"+t+"(?:\\s|$)","g"),"$1").replace(/\s+/g," ").replace(/^\s*|\s*$/g,"")}function M4(r,t){r.classList?r.classList.remove(t):typeof r.className=="string"?r.className=Ff(r.className,t):r.setAttribute("class",Ff(r.className&&r.className.baseVal||"",t))}const Df={disabled:!1};var I4=process.env.NODE_ENV!=="production"?N.oneOfType([N.number,N.shape({enter:N.number,exit:N.number,appear:N.number}).isRequired]):null,P4=process.env.NODE_ENV!=="production"?N.oneOfType([N.string,N.shape({enter:N.string,exit:N.string,active:N.string}),N.shape({enter:N.string,enterDone:N.string,enterActive:N.string,exit:N.string,exitDone:N.string,exitActive:N.string})]):null;const J1=B.createContext(null);var Q1=function(t){return t.scrollTop},Bs="unmounted",ua="exited",da="entering",Ci="entered",rd="exiting",Tn=function(r){X1(t,r);function t(i,o){var u;u=r.call(this,i,o)||this;var d=o,m=d&&!d.isMounting?i.enter:i.appear,h;return u.appearStatus=null,i.in?m?(h=ua,u.appearStatus=da):h=Ci:i.unmountOnExit||i.mountOnEnter?h=Bs:h=ua,u.state={status:h},u.nextCallback=null,u}t.getDerivedStateFromProps=function(o,u){var d=o.in;return d&&u.status===Bs?{status:ua}:null};var a=t.prototype;return a.componentDidMount=function(){this.updateStatus(!0,this.appearStatus)},a.componentDidUpdate=function(o){var u=null;if(o!==this.props){var d=this.state.status;this.props.in?d!==da&&d!==Ci&&(u=da):(d===da||d===Ci)&&(u=rd)}this.updateStatus(!1,u)},a.componentWillUnmount=function(){this.cancelNextCallback()},a.getTimeouts=function(){var o=this.props.timeout,u,d,m;return u=d=m=o,o!=null&&typeof o!="number"&&(u=o.exit,d=o.enter,m=o.appear!==void 0?o.appear:d),{exit:u,enter:d,appear:m}},a.updateStatus=function(o,u){if(o===void 0&&(o=!1),u!==null)if(this.cancelNextCallback(),u===da){if(this.props.unmountOnExit||this.props.mountOnEnter){var d=this.props.nodeRef?this.props.nodeRef.current:Os.findDOMNode(this);d&&Q1(d)}this.performEnter(o)}else this.performExit();else this.props.unmountOnExit&&this.state.status===ua&&this.setState({status:Bs})},a.performEnter=function(o){var u=this,d=this.props.enter,m=this.context?this.context.isMounting:o,h=this.props.nodeRef?[m]:[Os.findDOMNode(this),m],b=h[0],_=h[1],k=this.getTimeouts(),M=m?k.appear:k.enter;if(!o&&!d||Df.disabled){this.safeSetState({status:Ci},function(){u.props.onEntered(b)});return}this.props.onEnter(b,_),this.safeSetState({status:da},function(){u.props.onEntering(b,_),u.onTransitionEnd(M,function(){u.safeSetState({status:Ci},function(){u.props.onEntered(b,_)})})})},a.performExit=function(){var o=this,u=this.props.exit,d=this.getTimeouts(),m=this.props.nodeRef?void 0:Os.findDOMNode(this);if(!u||Df.disabled){this.safeSetState({status:ua},function(){o.props.onExited(m)});return}this.props.onExit(m),this.safeSetState({status:rd},function(){o.props.onExiting(m),o.onTransitionEnd(d.exit,function(){o.safeSetState({status:ua},function(){o.props.onExited(m)})})})},a.cancelNextCallback=function(){this.nextCallback!==null&&(this.nextCallback.cancel(),this.nextCallback=null)},a.safeSetState=function(o,u){u=this.setNextCallback(u),this.setState(o,u)},a.setNextCallback=function(o){var u=this,d=!0;return this.nextCallback=function(m){d&&(d=!1,u.nextCallback=null,o(m))},this.nextCallback.cancel=function(){d=!1},this.nextCallback},a.onTransitionEnd=function(o,u){this.setNextCallback(u);var d=this.props.nodeRef?this.props.nodeRef.current:Os.findDOMNode(this),m=o==null&&!this.props.addEndListener;if(!d||m){setTimeout(this.nextCallback,0);return}if(this.props.addEndListener){var h=this.props.nodeRef?[this.nextCallback]:[d,this.nextCallback],b=h[0],_=h[1];this.props.addEndListener(b,_)}o!=null&&setTimeout(this.nextCallback,o)},a.render=function(){var o=this.state.status;if(o===Bs)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 m=G1(u,["children","in","mountOnEnter","unmountOnExit","appear","enter","exit","timeout","addEndListener","onEnter","onEntering","onEntered","onExit","onExiting","onExited","nodeRef"]);return B.createElement(J1.Provider,{value:null},typeof d=="function"?d(o,m):B.cloneElement(B.Children.only(d),m))},t}(B.Component);Tn.contextType=J1;Tn.propTypes=process.env.NODE_ENV!=="production"?{nodeRef:N.shape({current:typeof Element>"u"?N.any:function(r,t,a,i,o,u){var d=r[t];return N.instanceOf(d&&"ownerDocument"in d?d.ownerDocument.defaultView.Element:Element)(r,t,a,i,o,u)}}),children:N.oneOfType([N.func.isRequired,N.element.isRequired]).isRequired,in:N.bool,mountOnEnter:N.bool,unmountOnExit:N.bool,appear:N.bool,enter:N.bool,exit:N.bool,timeout:function(t){var a=I4;t.addEndListener||(a=a.isRequired);for(var i=arguments.length,o=new Array(i>1?i-1:0),u=1;u<i;u++)o[u-1]=arguments[u];return a.apply(void 0,[t].concat(o))},addEndListener:N.func,onEnter:N.func,onEntering:N.func,onEntered:N.func,onExit:N.func,onExiting:N.func,onExited:N.func}:{};function xi(){}Tn.defaultProps={in:!1,mountOnEnter:!1,unmountOnExit:!1,appear:!1,enter:!0,exit:!0,onEnter:xi,onEntering:xi,onEntered:xi,onExit:xi,onExiting:xi,onExited:xi};Tn.UNMOUNTED=Bs;Tn.EXITED=ua;Tn.ENTERING=da;Tn.ENTERED=Ci;Tn.EXITING=rd;var L4=function(t,a){return t&&a&&a.split(" ").forEach(function(i){return T4(t,i)})},zu=function(t,a){return t&&a&&a.split(" ").forEach(function(i){return M4(t,i)})},Id=function(r){X1(t,r);function t(){for(var i,o=arguments.length,u=new Array(o),d=0;d<o;d++)u[d]=arguments[d];return i=r.call.apply(r,[this].concat(u))||this,i.appliedClasses={appear:{},enter:{},exit:{}},i.onEnter=function(m,h){var b=i.resolveArguments(m,h),_=b[0],k=b[1];i.removeClasses(_,"exit"),i.addClass(_,k?"appear":"enter","base"),i.props.onEnter&&i.props.onEnter(m,h)},i.onEntering=function(m,h){var b=i.resolveArguments(m,h),_=b[0],k=b[1],M=k?"appear":"enter";i.addClass(_,M,"active"),i.props.onEntering&&i.props.onEntering(m,h)},i.onEntered=function(m,h){var b=i.resolveArguments(m,h),_=b[0],k=b[1],M=k?"appear":"enter";i.removeClasses(_,M),i.addClass(_,M,"done"),i.props.onEntered&&i.props.onEntered(m,h)},i.onExit=function(m){var h=i.resolveArguments(m),b=h[0];i.removeClasses(b,"appear"),i.removeClasses(b,"enter"),i.addClass(b,"exit","base"),i.props.onExit&&i.props.onExit(m)},i.onExiting=function(m){var h=i.resolveArguments(m),b=h[0];i.addClass(b,"exit","active"),i.props.onExiting&&i.props.onExiting(m)},i.onExited=function(m){var h=i.resolveArguments(m),b=h[0];i.removeClasses(b,"exit"),i.addClass(b,"exit","done"),i.props.onExited&&i.props.onExited(m)},i.resolveArguments=function(m,h){return i.props.nodeRef?[i.props.nodeRef.current,m]:[m,h]},i.getClassNames=function(m){var h=i.props.classNames,b=typeof h=="string",_=b&&h?h+"-":"",k=b?""+_+m:h[m],M=b?k+"-active":h[m+"Active"],D=b?k+"-done":h[m+"Done"];return{baseClassName:k,activeClassName:M,doneClassName:D}},i}var a=t.prototype;return a.addClass=function(o,u,d){var m=this.getClassNames(u)[d+"ClassName"],h=this.getClassNames("enter"),b=h.doneClassName;u==="appear"&&d==="done"&&b&&(m+=" "+b),d==="active"&&o&&Q1(o),m&&(this.appliedClasses[u][d]=m,L4(o,m))},a.removeClasses=function(o,u){var d=this.appliedClasses[u],m=d.base,h=d.active,b=d.done;this.appliedClasses[u]={},m&&zu(o,m),h&&zu(o,h),b&&zu(o,b)},a.render=function(){var o=this.props;o.classNames;var u=G1(o,["classNames"]);return B.createElement(Tn,pc({},u,{onEnter:this.onEnter,onEntered:this.onEntered,onEntering:this.onEntering,onExit:this.onExit,onExiting:this.onExiting,onExited:this.onExited}))},t}(B.Component);Id.defaultProps={classNames:""};Id.propTypes=process.env.NODE_ENV!=="production"?pc({},Tn.propTypes,{classNames:P4,onEnter:N.func,onEntering:N.func,onEntered:N.func,onExit:N.func,onExiting:N.func,onExited:N.func}):{};const A4="_snackbarbottom_w5vob_1",F4="_snackbar_w5vob_138",D4="_snackbar__left_w5vob_162",O4="_snackbar__right_w5vob_168",B4="_snackbar__textLabel_w5vob_173",N4="_snackbar__textButton_w5vob_181",j4="_snackbar__dismiss_w5vob_184",$4="_snackbar__icon_w5vob_187",Er={"animation--enter":"_animation--enter_w5vob_120","animation--enter-active":"_animation--enter-active_w5vob_124",snackbarbottom:A4,"animation--exit":"_animation--exit_w5vob_129","animation--exit-active":"_animation--exit-active_w5vob_133",snackbar:F4,snackbar__left:D4,snackbar__right:O4,snackbar__textLabel:B4,snackbar__textButton:N4,snackbar__dismiss:j4,snackbar__icon:$4},V4=60,Of=600,W4=({dismissable:r=!1,isOpen:t,leftIconLarge:a,leftIconSmall:i,onClick:o,onClose:u,rightIconLarge:d,rightIconSmall:m,textButton:h,textLabel:b})=>{const[_,k]=B.useState(!1),[M,D]=B.useState(0),[A,j]=B.useState(4e3),O=B.useRef(null),{getRootProps:P}=R0({autoHideDuration:A,onClose:u,open:t}),U=$=>{const K=$.changedTouches[0].clientY;D(K),j(null)},Z=$=>{requestAnimationFrame(()=>{if(O.current){const oe=$.changedTouches[0].clientY,de=M-Math.max(M,oe),fe=Math.abs(1e3/de);O.current.style.marginBottom=`${de}px`,O.current.style.opacity=`${fe}%`}})},J=$=>{const K=$.changedTouches[0].clientY,oe=()=>{O.current&&(O.current.style.marginBottom="0",O.current.style.opacity="100%"),j(4e3),k(!1)};K-M>V4?(k(!0),u&&u(),O.current&&(O.current.style.opacity="0"),setTimeout(()=>{oe()},Of+10)):oe()};return R.jsx(Id,{nodeRef:O,timeout:Of,in:t,classNames:{enter:Er["animation--enter"],enterActive:Er["animation--enter-active"],exit:xe({[Er["animation--exit"]]:!_}),exitActive:xe({[Er["animation--exit-active"]]:!_})},unmountOnExit:!0,children:R.jsxs("div",{role:"alertdialog",...P,className:Er.snackbar,onTouchMove:Z,onTouchStart:U,onTouchEnd:J,ref:O,children:[R.jsxs("div",{className:Er.snackbar__left,children:[a&&R.jsx(wt,{name:a,size:"32",className:Er.snackbar__icon}),i&&R.jsx(wt,{name:i,size:"24",className:Er.snackbar__icon}),b&&R.jsx(De,{type:"body-semibold",className:Er.snackbar__textLabel,children:b})]}),R.jsxs("div",{className:Er.snackbar__right,children:[d&&R.jsx(wt,{name:d,size:"32",className:Er.snackbar__icon}),m&&R.jsx(wt,{name:m,size:"24",className:Er.snackbar__icon}),h&&R.jsx("div",{className:Er.snackbar__textButton,children:R.jsx(Rn,{color:"green",size:"medium",text:h,onClick:o})})]}),r&&R.jsx(Pi,{icon:"cross",size:"small",ariaLabel:"Schließen",onClick:u,className:Er.snackbar__dismiss})]})})},H4="_fieldset_12brx_106",U4={fieldset:H4},Pd=({children:r,className:t,disabled:a,form:i,name:o})=>{const u=B.Children.map(r,d=>{if(B.isValidElement(d))return B.cloneElement(d,{disabled:a})});return R.jsx("fieldset",{className:xe(U4.fieldset,t),disabled:a,name:o,form:i,children:u})},z4="_radiobuttoncluster_1jxdz_106",q4={radiobuttoncluster:z4};function Z4(r){const{children:t,disabled:a,onChange:i,value:o}=r;function u(m){i(m)}const d=B.Children.map(t,m=>B.cloneElement(m,{checked:o===m.props.value,onChange:u}));return R.jsx(Pd,{disabled:a,className:q4.radiobuttoncluster,children:d})}const Y4="_toggleGroupStory_196oh_106",G4={toggleGroupStory:Y4},X4=({className:r,items:t,multiselect:a=!1,onChange:i,selectedItems:o,togglable:u=!1})=>{const d=o||[],m=_=>{h(_)},h=_=>{if(!a){const M=u?d.find(D=>D.id===_.id)?[]:[_]:[_];i&&i(M);return}const k=d.find(M=>M.id===_.id)?d.filter(M=>M.id!==_.id):[...d,_];i&&i(k)},b=_=>!!d.find(k=>k.id===_);return R.jsx("div",{className:xe(G4.toggleGroup,r),children:t.map(({disabled:_,icon:k,id:M,label:D,orientation:A,popular:j,style:O,value:P,variant:U})=>R.jsx(F1,{id:M,style:O,value:P,icon:k,popular:j,variant:U,orientation:A,label:D,disabled:_,isSelected:b(M),onToggleChange:m},M))})},J4="_switcherToggle_19pqt_107",Q4="_input_19pqt_115",K4="_label_19pqt_118",Jl={switcherToggle:J4,input:Q4,label:K4,"switcherToggle--filled":"_switcherToggle--filled_19pqt_143","switcherToggle--outline":"_switcherToggle--outline_19pqt_150"},e6=2,t6=({className:r,items:t,onChange:a,style:i="outline",value:o})=>{if(t.length<e6)return null;const u=d=>{a(d.target.value)};return R.jsx(Pd,{className:xe(Jl.switcherToggle,Jl[`switcherToggle--${i}`],r),name:"switcher-toggle",children:t.map(({id:d,label:m},h)=>R.jsxs(B.Fragment,{children:[R.jsx("input",{type:"radio",id:`toggle-${h}-${d}`,name:"switcher-toggle","aria-label":m,value:d,checked:o===d,className:Jl.input,onChange:u}),R.jsx("label",{htmlFor:`toggle-${h}-${d}`,className:Jl.label,children:R.jsx(De,{as:"p",type:"h5",children:m})})]},`${h}_${d}`))})},r6="_toggleInput_1fozv_106",n6="_textWrapper_1fozv_119",ca={toggleInput:r6,textWrapper:n6,"textWrapper--withDescription":"_textWrapper--withDescription_1fozv_124",switch:"_switch_1fozv_127","toggleInput--checked":"_toggleInput--checked_1fozv_130","toggleInput--disabled":"_toggleInput--disabled_1fozv_133","toggleInput--withBorder":"_toggleInput--withBorder_1fozv_136"},o6=({checked:r,defaultChecked:t,description:a,disabled:i,icon:o,label:u,onChange:d,withBorder:m})=>R.jsxs("label",{className:xe(ca.toggleInput,{[ca["toggleInput--withBorder"]]:m,[ca["toggleInput--checked"]]:r,[ca["toggleInput--disabled"]]:i}),children:[o&&R.jsx(wt,{name:o,size:"32"}),R.jsxs("div",{className:xe(ca.textWrapper,{[ca["textWrapper--withDescription"]]:a}),children:[R.jsx(De,{type:"body-large",children:u}),a&&R.jsx(De,{type:"body-regular",children:a})]}),R.jsx(A1,{onChange:d,disabled:i,checked:r,defaultChecked:t,className:ca.switch})]}),a6="_tabsCard_1o18q_106",i6="_tabs_1o18q_106",s6="_label_1o18q_114",l6="_tabsList_1o18q_118",c6="_selectedTab_1o18q_136",ki={tabsCard:a6,tabs:i6,label:s6,tabsList:l6,selectedTab:c6},u6=({onChange:r,tabs:t,value:a})=>R.jsx("section",{className:ki.tabsCard,children:R.jsxs(w1,{defaultValue:a,className:ki.tabs,onChange:r,children:[R.jsx(C1,{className:ki.tabsList,children:t.map(({id:i,label:o})=>R.jsxs(E1,{value:`${i}`,"data-testid":`tab-${o}`,children:[R.jsx("div",{className:ki.tab,children:R.jsx("div",{className:ki.selectedTab})}),R.jsx(De,{as:"span",type:"body-regular",className:ki.label,children:o})]},`tab_${i}`))}),t.map(({content:i,id:o})=>R.jsx(x1,{value:`${o}`,children:i},`tab_panel_${o}`))]})}),d6="_root_3yqek_106",f6="_root__content_3yqek_116",p6="_root__bookmark_3yqek_121",h6="_root__header_3yqek_127",m6="_root__header__reserved_3yqek_134",g6="_root__header__reserved__box_3yqek_147",v6="_root__header__image_3yqek_156",b6="_root__info_3yqek_161",y6="_root__info__top_3yqek_167",w6="_root__info__price_3yqek_170",x6="_root__info__title_3yqek_176",k6="_root__info__timeStamp_3yqek_184",pr={root:d6,"root--aggregator":"_root--aggregator_3yqek_113",root__content:f6,root__bookmark:p6,root__header:h6,root__header__reserved:m6,"root__header__reserved--visible":"_root__header__reserved--visible_3yqek_144",root__header__reserved__box:g6,root__header__image:v6,root__info:b6,root__info__top:y6,root__info__price:w6,"root__info__price--reserved":"_root__info__price--reserved_3yqek_173",root__info__title:x6,root__info__timeStamp:k6};function _6({bookmarked:r,context:t="feed",image:a,onBookmark:i,onClick:o,price:u,reserved:d,reservedText:m,timeStamp:h,title:b}){return R.jsxs("div",{className:xe(pr.root,pr[`root--${t}`]),children:[R.jsx(T1,{onClick:i,bookmarked:r,className:pr.root__bookmark}),R.jsxs("div",{className:pr.root__content,onClick:o,children:[R.jsxs("div",{className:pr.root__header,children:[R.jsx("div",{className:xe(pr.root__header__reserved,{[pr["root__header__reserved--visible"]]:d}),children:R.jsx("div",{className:pr.root__header__reserved__box,children:R.jsx(De,{type:"detail-upper-case",children:m})})}),a?R.jsx(wd,{alt:"product image",src:a,className:pr.root__header__image}):R.jsx(I1,{size:"large",icon:R.jsx(wt,{name:"camera_crossed"})})]}),R.jsxs("div",{className:pr.root__info,children:[R.jsxs("div",{className:pr.root__info__top,children:[R.jsx(De,{type:"body-semibold",as:"p",className:xe(pr.root__info__price,{[pr["root__info__price--reserved"]]:d}),children:u}),R.jsx(De,{type:"body-semibold",as:"p",className:pr.root__info__title,children:b})]}),R.jsx(De,{type:"detail-medium",as:"p",className:pr.root__info__timeStamp,children:h})]})]})]})}const C6=({ariaLabel:r,ariaLabelledBy:t,children:a,className:i,id:o})=>R.jsx("form",{className:i,"aria-label":r,"aria-labelledby":t,id:o,children:a}),S6="_legend_1as3c_106",E6="_text_1as3c_112",Bf={legend:S6,text:E6},R6=({className:r,headline:t,text:a})=>R.jsxs("legend",{className:xe(Bf.legend,r),children:[R.jsx(De,{type:"h5",children:t}),a&&R.jsx(De,{className:Bf.text,type:"body-regular",as:"p",children:a})]}),T6="_overlay_du31f_106",M6="_sheet_du31f_117",I6="_sheetWrapper_du31f_130",P6="_sheetBody_du31f_138",L6="_sheetHeader_du31f_141",A6="_sheetFooter_du31f_153",_i={overlay:T6,"fade-in":"_fade-in_du31f_1",sheet:M6,"slide-up":"_slide-up_du31f_1",sheetWrapper:I6,sheetBody:P6,sheetHeader:L6,sheetFooter:A6},F6=({ariaLabel:r,ctaButtonProps:t,linkProps:a,onClose:i,open:o,sheetBody:u,sheetHeader:d})=>(B.useEffect(()=>(o&&(document.body.style.overflow="hidden"),()=>{document.body.style.overflow=""}),[o]),o?R.jsxs(R.Fragment,{children:[R.jsx("div",{className:_i.overlay,onClick:i,"data-testid":"overlay"}),R.jsx("dialog",{className:_i.sheet,"aria-label":r,"aria-modal":"true",open:o,children:R.jsx("div",{className:_i.sheetWrapper,children:R.jsxs("section",{role:"document",children:[R.jsx("header",{className:_i.sheetHeader,children:d}),R.jsx("div",{className:_i.sheetBody,children:R.jsx(Ec,{children:u})}),R.jsxs("footer",{className:_i.sheetFooter,children:[t&&R.jsx(yd,{...t}),a&&R.jsx(Rn,{...a})]})]})})})]}):null),D6="_backdrop_x4szp_106",O6={backdrop:D6},K1=B.forwardRef((r,t)=>{const{ownerState:a,...i}=r;return R.jsx("div",{ref:t,...i,className:O6.backdrop})});K1.displayName="Backdrop";const B6="_modal_1a7hy_106",N6="_modalWrapper_1a7hy_114",j6="_modalHeader_1a7hy_130",$6="_crossCircle_1a7hy_146",V6="_modalFooter_1a7hy_149",Fs={modal:B6,modalWrapper:N6,modalHeader:j6,crossCircle:$6,modalFooter:V6},W6=({ariaLabel:r,ariaLabelledBy:t,closeButtonText:a="Abbrechen",headerTitle:i,modalBody:o,modalFooter:u,onClose:d,open:m})=>R.jsx(hd,{"aria-label":r,"aria-labelledby":t,open:m,onClose:d,slots:{backdrop:K1},className:Fs.modal,children:R.jsxs("div",{className:Fs.modalWrapper,children:[R.jsx(cc,{className:Fs.modalHeader,headline:i,rightElement:R.jsx(Pi,{icon:"cross_circle",onClick:d,size:"small",ariaLabel:a,className:Fs.crossCircle})}),R.jsx(Ec,{children:o}),R.jsxs("div",{className:Fs.modalFooter,children:[R.jsx(Rn,{onClick:d,color:"blue",size:"large",text:a}),u]})]})}),H6="_base_1egyw_106",U6={base:H6};var Kl=(r=>(r[r.lg=16]="lg",r[r.md=12]="md",r[r.sm=8]="sm",r[r.xl=24]="xl",r))(Kl||{});const ep=B.forwardRef(({anchor:r,children:t,container:a,handleClickAway:i,id:o,offset:u="sm",open:d,placement:m,strategy:h="fixed"},b)=>{let _=Kl.sm;typeof u=="object"?_=u:Kl[u]&&(_=Kl[u]);let k;return i?k=R.jsx(tc,{onClickAway:i,touchEvent:!1,children:R.jsx("div",{children:t})}):k=t,R.jsx(g1,{ref:b,className:U6.base,id:o,open:d,anchor:r,offset:_,placement:m,container:a,strategy:h,children:k})});ep.displayName="Popup";const z6="_backdrop_1dehl_106",q6={backdrop:z6},tp=B.forwardRef((r,t)=>R.jsx("div",{ref:t,...r,className:q6.backdrop}));tp.displayName="Backdrop";const Z6="_sheet_1ycdc_106",Y6="_sheetWrapper_1ycdc_114",G6="_sheetHeader_1ycdc_126",X6="_sheetFooter_1ycdc_148",Ds={sheet:Z6,sheetWrapper:Y6,sheetHeader:G6,sheetFooter:X6,"sheetFooter--alwaysVisible":"_sheetFooter--alwaysVisible_1ycdc_156"},J6=({ariaLabel:r,ariaLabelledBy:t,closeButtonText:a="Abbrechen",onClose:i,open:o,sheetBody:u,sheetFooter:d,sheetHeader:m})=>R.jsx(hd,{"aria-label":r,"aria-labelledby":t,open:o,onClose:i,slots:{backdrop:tp},className:Ds.sheet,children:R.jsxs("div",{className:Ds.sheetWrapper,children:[R.jsx("div",{className:Ds.sheetHeader,children:m}),u,R.jsxs("div",{className:xe(Ds.sheetFooter,{[Ds["sheetFooter--alwaysVisible"]]:!!d}),children:[R.jsx(Rn,{onClick:i,color:"blue",size:"large",text:a}),d]})]})});exports.ActionBar=X3;exports.Badge=im;exports.BadgeIcon=vd;exports.BadgeLabel=wy;exports.BodyText=ww;exports.Bookmark=T1;exports.BottomSheet=F6;exports.Button=gr;exports.ButtonPrimary=yd;exports.ButtonSecondary=My;exports.ButtonTertiary=M1;exports.Card=B3;exports.CardBody=Ec;exports.CardHeader=cc;exports.CheckboxInput=n3;exports.Divider=P1;exports.EmptyState=w4;exports.FeedItemCategory=ky;exports.FeedTile=Oy;exports.Fieldset=Pd;exports.Form=C6;exports.Icon=wt;exports.IconButton=Pi;exports.Image=wd;exports.InputFieldSpecial=d3;exports.LabelPill=bd;exports.Legend=R6;exports.Loader=R3;exports.Markdown=t4;exports.MarketplaceItemCardless=_6;exports.MenuItem=i4;exports.MenuTile=jy;exports.Modal=W6;exports.NavBar=c4;exports.NavItem=h4;exports.NavigationTab=u6;exports.Notice=E4;exports.NotificationBubble=Zs;exports.NotificationListItem=lx;exports.PlaceholderThumbnail=I1;exports.PointOfInterestIProfileTile=Hy;exports.Popup=ep;exports.RadioButton=p3;exports.RadioButtonCluster=Z4;exports.Select=Jw;exports.SelectablePill=F1;exports.SelectablePillGroup=X4;exports.Sheet=J6;exports.Snackbar=W4;exports.Sticker=R1;exports.SwitcherToggle=t6;exports.TextArea=b3;exports.TextButton=Rn;exports.TextInput=k3;exports.Thumbnail=Sc;exports.ThumbnailWithLabel=Tw;exports.ThumbnailWrapper=Pw;exports.Toggle=A1;exports.ToggleInput=o6;exports.Typography=De;
|
|
216
|
+
Please report this to https://github.com/markedjs/marked.`,t){const o="<p>An error occurred:</p><pre>"+Ar(i.message+"",!0)+"</pre>";return a?Promise.resolve(o):o}if(a)return Promise.reject(i);throw i}}}const ga=new Qx;function lt(r,t){return ga.parse(r,t)}lt.options=lt.setOptions=function(r){return ga.setOptions(r),lt.defaults=ga.defaults,j1(lt.defaults),lt};lt.getDefaults=_d;lt.defaults=wa;lt.use=function(...r){return ga.use(...r),lt.defaults=ga.defaults,j1(lt.defaults),lt};lt.walkTokens=function(r,t){return ga.walkTokens(r,t)};lt.parseInline=ga.parseInline;lt.Parser=Cn;lt.parser=Cn.parse;lt.Renderer=fc;lt.TextRenderer=Md;lt.Lexer=_n;lt.lexer=_n.lex;lt.Tokenizer=uc;lt.Hooks=Vs;lt.parse=lt;lt.options;lt.setOptions;lt.use;lt.walkTokens;lt.parseInline;Cn.parse;_n.lex;const Kx=r=>r.replace(/"/g,"QUOTE"),e4=r=>r.replace(new RegExp("QUOTE","g"),'"');function t4({className:r,inline:t=!1,text:a}){const i=e4(px(Kx(a)));return R.jsx("span",{className:r,dangerouslySetInnerHTML:{__html:t?lt.parseInline(i):lt.parse(i)}})}const r4="_menuItem_pqaol_106",n4="_highlightFrame_pqaol_120",o4="_rightIcon_pqaol_128",a4="_leftIcon_pqaol_133",la={menuItem:r4,highlightFrame:n4,rightIcon:o4,"menuItem--selected":"_menuItem--selected_pqaol_133",leftIcon:a4,"menuItem--compact":"_menuItem--compact_pqaol_144","highlightFrame--compact":"_highlightFrame--compact_pqaol_151"},i4=({className:r,compact:t,href:a,isSelected:i,labelPillClassName:o,labelPillText:u,leftIcon:d,onClick:m,rightIcon:h,role:b,text:_})=>{const k=()=>t?"body-regular":i?"h5":"body-large";return R.jsx(gr,{role:b,onClick:m,className:xe(r,la.menuItem,{[la["menuItem--selected"]]:i,[la["menuItem--compact"]]:t}),...a?{href:a}:{},children:R.jsxs("span",{className:xe(la.highlightFrame,{[la["menuItem--compact"]]:t}),children:[d&&R.jsx("span",{className:la.leftIcon,children:d}),R.jsx(De,{type:k(),as:"span",children:_}),u&&R.jsx(bd,{label:u,size:"medium",className:o}),h&&R.jsx("span",{className:la.rightIcon,children:h})]})})},s4="_navBar_smoij_106",l4={navBar:s4},c4=({children:r,onChange:t,value:a})=>{const[i,o]=B.useState(a||""),u=d=>{t(d),o(d)};return R.jsx("ul",{className:l4.navBar,children:B.Children.map(r,d=>B.cloneElement(d,{active:d.props.id.toLowerCase()===i.toLowerCase(),onChange:u}))})},u4="_listItem_w254q_106",d4="_navItem_w254q_106",f4="_selector_w254q_120",p4="_label_w254q_141",As={listItem:u4,navItem:d4,selector:f4,"navItem--active":"_navItem--active_w254q_128",label:p4},h4=({active:r,ariaLabel:t,icon:a,id:i,label:o,onChange:u})=>{const d=()=>{u&&u(i)};return R.jsx("li",{className:As.listItem,children:R.jsxs(gr,{className:xe(As.navItem,{[As["navItem--active"]]:r}),onClick:d,"aria-label":t,children:[R.jsx("div",{className:As.selector}),a,o&&R.jsx(De,{className:As.label,type:"detail-medium",as:"span",children:o})]})})},m4="_emptyState_eo42d_106",g4="_emptyState__text_eo42d_112",v4="_emptyState__secondaryText_eo42d_117",b4="_emptyState__buttons_eo42d_120",wi={emptyState:m4,emptyState__text:g4,emptyState__secondaryText:v4,emptyState__buttons:b4,"emptyState--small":"_emptyState--small_eo42d_126","emptyState--small__text":"_emptyState--small__text_eo42d_129","emptyState--medium":"_emptyState--medium_eo42d_132","emptyState--medium__text":"_emptyState--medium__text_eo42d_135","emptyState--large":"_emptyState--large_eo42d_138","emptyState--large__text":"_emptyState--large__text_eo42d_141"},y4={large:{buttonSize:"medium",primaryTextType:"h3",secondaryTextType:"body-large"},medium:{buttonSize:"medium",primaryTextType:"h4",secondaryTextType:"body-regular"},small:{buttonSize:"small",primaryTextType:"h5",secondaryTextType:"detail-medium"}},w4=({buttons:r=[],customVisual:t,primaryText:a,secondaryText:i,size:o,stickerProps:u})=>{const d=xe(wi.emptyState,wi[`emptyState--${o}`]),{buttonSize:m,primaryTextType:h,secondaryTextType:b}=y4[o],_=r.map((k,M)=>{if(k.buttonType==="primary")return R.jsx(yd,{...k,size:m},M);if(k.buttonType==="text")return R.jsx(Rn,{...k,size:m},M)});return R.jsxs("div",{className:d,children:[u&&R.jsx(R1,{size:o,...u}),t,(a||i)&&R.jsxs("div",{className:xe(wi.emptyState__text,wi[`emptyState--${o}__text`]),children:[a&&R.jsx(De,{type:h,children:a}),i&&R.jsx(De,{type:b,className:wi.emptyState__secondaryText,children:i})]}),_.length>0&&R.jsx("div",{className:wi.emptyState__buttons,children:_})]})},x4="_notice__content_160kh_106",k4="_notice__header_160kh_113",_4="_notice__iconHeadline_160kh_119",mr={notice__content:x4,notice__header:k4,notice__iconHeadline:_4,"notice--small":"_notice--small_160kh_124","notice--medium":"_notice--medium_160kh_127","notice--sticky":"_notice--sticky_160kh_130","notice--embedded":"_notice--embedded_160kh_133","notice--pink":"_notice--pink_160kh_137","notice--green":"_notice--green_160kh_140","notice--grey":"_notice--grey_160kh_143"},C4=({context:r,dismissible:t,iconName:a,notificationBubble:i,onClick:o,onDismiss:u,primaryText:d,secondaryText:m,size:h,textButton:b,type:_})=>{const k=xe(mr[`notice--${h}`],mr[`notice--${_}`],{[mr["notice--green"]]:r==="infoGreen",[mr["notice--grey"]]:r==="infoGrey"}),M=t&&m;return R.jsxs("div",{className:mr.notice,children:[R.jsxs("div",{className:xe(mr.notice__content,k),children:[R.jsxs("div",{className:mr.notice__header,children:[R.jsxs("div",{className:mr.notice__iconHeadline,children:[a&&R.jsx(wt,{name:a,size:"24"}),i&&R.jsx(Zs,{...i}),d&&R.jsx(De,{type:h==="small"?"detail-bold":"h5",children:d})]}),M&&R.jsx(Pi,{onClick:u,icon:"cross",ariaLabel:"Schließen",size:"small"}),!m&&b&&R.jsx(Rn,{onClick:o,color:"blue",size:h,text:b})]}),m&&R.jsx(De,{type:h==="small"?"detail-medium":"body-regular",children:m}),m&&b&&R.jsx(Rn,{onClick:o,color:"blue",size:h,text:b})]}),_==="sticky"&&R.jsx(P1,{})]})},S4=({dismissible:r,iconName:t,notificationBubble:a,onDismiss:i,primaryText:o,secondaryText:u,size:d})=>{const m=xe(mr["notice--pink"],mr[`notice--${d}`],mr["notice--embedded"]);return R.jsx("div",{className:mr.notice,children:R.jsxs("div",{className:xe(mr.notice__content,m),children:[R.jsxs("div",{className:mr.notice__header,children:[R.jsxs("div",{className:mr.notice__iconHeadline,children:[t&&R.jsx(wt,{name:t,size:"24"}),a&&R.jsx(Zs,{...a}),o&&R.jsx(De,{type:d==="small"?"detail-bold":"h5",children:o})]}),r&&R.jsx(Pi,{onClick:i,icon:"cross",ariaLabelledBy:"Schließen",size:"small"})]}),u&&R.jsx(De,{type:d==="small"?"detail-medium":"body-regular",children:u})]})})},E4=r=>r.context==="warning"?R.jsx(S4,{...r}):R.jsx(C4,{...r});function pc(){return pc=Object.assign?Object.assign.bind():function(r){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var i in a)({}).hasOwnProperty.call(a,i)&&(r[i]=a[i])}return r},pc.apply(null,arguments)}function G1(r,t){if(r==null)return{};var a={};for(var i in r)if({}.hasOwnProperty.call(r,i)){if(t.includes(i))continue;a[i]=r[i]}return a}function td(r,t){return td=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(a,i){return a.__proto__=i,a},td(r,t)}function X1(r,t){r.prototype=Object.create(t.prototype),r.prototype.constructor=r,td(r,t)}function R4(r,t){return r.classList?!!t&&r.classList.contains(t):(" "+(r.className.baseVal||r.className)+" ").indexOf(" "+t+" ")!==-1}function T4(r,t){r.classList?r.classList.add(t):R4(r,t)||(typeof r.className=="string"?r.className=r.className+" "+t:r.setAttribute("class",(r.className&&r.className.baseVal||"")+" "+t))}function Ff(r,t){return r.replace(new RegExp("(^|\\s)"+t+"(?:\\s|$)","g"),"$1").replace(/\s+/g," ").replace(/^\s*|\s*$/g,"")}function M4(r,t){r.classList?r.classList.remove(t):typeof r.className=="string"?r.className=Ff(r.className,t):r.setAttribute("class",Ff(r.className&&r.className.baseVal||"",t))}const Df={disabled:!1};var I4=process.env.NODE_ENV!=="production"?N.oneOfType([N.number,N.shape({enter:N.number,exit:N.number,appear:N.number}).isRequired]):null,P4=process.env.NODE_ENV!=="production"?N.oneOfType([N.string,N.shape({enter:N.string,exit:N.string,active:N.string}),N.shape({enter:N.string,enterDone:N.string,enterActive:N.string,exit:N.string,exitDone:N.string,exitActive:N.string})]):null;const J1=B.createContext(null);var Q1=function(t){return t.scrollTop},Bs="unmounted",ua="exited",da="entering",Ci="entered",rd="exiting",Tn=function(r){X1(t,r);function t(i,o){var u;u=r.call(this,i,o)||this;var d=o,m=d&&!d.isMounting?i.enter:i.appear,h;return u.appearStatus=null,i.in?m?(h=ua,u.appearStatus=da):h=Ci:i.unmountOnExit||i.mountOnEnter?h=Bs:h=ua,u.state={status:h},u.nextCallback=null,u}t.getDerivedStateFromProps=function(o,u){var d=o.in;return d&&u.status===Bs?{status:ua}:null};var a=t.prototype;return a.componentDidMount=function(){this.updateStatus(!0,this.appearStatus)},a.componentDidUpdate=function(o){var u=null;if(o!==this.props){var d=this.state.status;this.props.in?d!==da&&d!==Ci&&(u=da):(d===da||d===Ci)&&(u=rd)}this.updateStatus(!1,u)},a.componentWillUnmount=function(){this.cancelNextCallback()},a.getTimeouts=function(){var o=this.props.timeout,u,d,m;return u=d=m=o,o!=null&&typeof o!="number"&&(u=o.exit,d=o.enter,m=o.appear!==void 0?o.appear:d),{exit:u,enter:d,appear:m}},a.updateStatus=function(o,u){if(o===void 0&&(o=!1),u!==null)if(this.cancelNextCallback(),u===da){if(this.props.unmountOnExit||this.props.mountOnEnter){var d=this.props.nodeRef?this.props.nodeRef.current:Os.findDOMNode(this);d&&Q1(d)}this.performEnter(o)}else this.performExit();else this.props.unmountOnExit&&this.state.status===ua&&this.setState({status:Bs})},a.performEnter=function(o){var u=this,d=this.props.enter,m=this.context?this.context.isMounting:o,h=this.props.nodeRef?[m]:[Os.findDOMNode(this),m],b=h[0],_=h[1],k=this.getTimeouts(),M=m?k.appear:k.enter;if(!o&&!d||Df.disabled){this.safeSetState({status:Ci},function(){u.props.onEntered(b)});return}this.props.onEnter(b,_),this.safeSetState({status:da},function(){u.props.onEntering(b,_),u.onTransitionEnd(M,function(){u.safeSetState({status:Ci},function(){u.props.onEntered(b,_)})})})},a.performExit=function(){var o=this,u=this.props.exit,d=this.getTimeouts(),m=this.props.nodeRef?void 0:Os.findDOMNode(this);if(!u||Df.disabled){this.safeSetState({status:ua},function(){o.props.onExited(m)});return}this.props.onExit(m),this.safeSetState({status:rd},function(){o.props.onExiting(m),o.onTransitionEnd(d.exit,function(){o.safeSetState({status:ua},function(){o.props.onExited(m)})})})},a.cancelNextCallback=function(){this.nextCallback!==null&&(this.nextCallback.cancel(),this.nextCallback=null)},a.safeSetState=function(o,u){u=this.setNextCallback(u),this.setState(o,u)},a.setNextCallback=function(o){var u=this,d=!0;return this.nextCallback=function(m){d&&(d=!1,u.nextCallback=null,o(m))},this.nextCallback.cancel=function(){d=!1},this.nextCallback},a.onTransitionEnd=function(o,u){this.setNextCallback(u);var d=this.props.nodeRef?this.props.nodeRef.current:Os.findDOMNode(this),m=o==null&&!this.props.addEndListener;if(!d||m){setTimeout(this.nextCallback,0);return}if(this.props.addEndListener){var h=this.props.nodeRef?[this.nextCallback]:[d,this.nextCallback],b=h[0],_=h[1];this.props.addEndListener(b,_)}o!=null&&setTimeout(this.nextCallback,o)},a.render=function(){var o=this.state.status;if(o===Bs)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 m=G1(u,["children","in","mountOnEnter","unmountOnExit","appear","enter","exit","timeout","addEndListener","onEnter","onEntering","onEntered","onExit","onExiting","onExited","nodeRef"]);return B.createElement(J1.Provider,{value:null},typeof d=="function"?d(o,m):B.cloneElement(B.Children.only(d),m))},t}(B.Component);Tn.contextType=J1;Tn.propTypes=process.env.NODE_ENV!=="production"?{nodeRef:N.shape({current:typeof Element>"u"?N.any:function(r,t,a,i,o,u){var d=r[t];return N.instanceOf(d&&"ownerDocument"in d?d.ownerDocument.defaultView.Element:Element)(r,t,a,i,o,u)}}),children:N.oneOfType([N.func.isRequired,N.element.isRequired]).isRequired,in:N.bool,mountOnEnter:N.bool,unmountOnExit:N.bool,appear:N.bool,enter:N.bool,exit:N.bool,timeout:function(t){var a=I4;t.addEndListener||(a=a.isRequired);for(var i=arguments.length,o=new Array(i>1?i-1:0),u=1;u<i;u++)o[u-1]=arguments[u];return a.apply(void 0,[t].concat(o))},addEndListener:N.func,onEnter:N.func,onEntering:N.func,onEntered:N.func,onExit:N.func,onExiting:N.func,onExited:N.func}:{};function xi(){}Tn.defaultProps={in:!1,mountOnEnter:!1,unmountOnExit:!1,appear:!1,enter:!0,exit:!0,onEnter:xi,onEntering:xi,onEntered:xi,onExit:xi,onExiting:xi,onExited:xi};Tn.UNMOUNTED=Bs;Tn.EXITED=ua;Tn.ENTERING=da;Tn.ENTERED=Ci;Tn.EXITING=rd;var L4=function(t,a){return t&&a&&a.split(" ").forEach(function(i){return T4(t,i)})},zu=function(t,a){return t&&a&&a.split(" ").forEach(function(i){return M4(t,i)})},Id=function(r){X1(t,r);function t(){for(var i,o=arguments.length,u=new Array(o),d=0;d<o;d++)u[d]=arguments[d];return i=r.call.apply(r,[this].concat(u))||this,i.appliedClasses={appear:{},enter:{},exit:{}},i.onEnter=function(m,h){var b=i.resolveArguments(m,h),_=b[0],k=b[1];i.removeClasses(_,"exit"),i.addClass(_,k?"appear":"enter","base"),i.props.onEnter&&i.props.onEnter(m,h)},i.onEntering=function(m,h){var b=i.resolveArguments(m,h),_=b[0],k=b[1],M=k?"appear":"enter";i.addClass(_,M,"active"),i.props.onEntering&&i.props.onEntering(m,h)},i.onEntered=function(m,h){var b=i.resolveArguments(m,h),_=b[0],k=b[1],M=k?"appear":"enter";i.removeClasses(_,M),i.addClass(_,M,"done"),i.props.onEntered&&i.props.onEntered(m,h)},i.onExit=function(m){var h=i.resolveArguments(m),b=h[0];i.removeClasses(b,"appear"),i.removeClasses(b,"enter"),i.addClass(b,"exit","base"),i.props.onExit&&i.props.onExit(m)},i.onExiting=function(m){var h=i.resolveArguments(m),b=h[0];i.addClass(b,"exit","active"),i.props.onExiting&&i.props.onExiting(m)},i.onExited=function(m){var h=i.resolveArguments(m),b=h[0];i.removeClasses(b,"exit"),i.addClass(b,"exit","done"),i.props.onExited&&i.props.onExited(m)},i.resolveArguments=function(m,h){return i.props.nodeRef?[i.props.nodeRef.current,m]:[m,h]},i.getClassNames=function(m){var h=i.props.classNames,b=typeof h=="string",_=b&&h?h+"-":"",k=b?""+_+m:h[m],M=b?k+"-active":h[m+"Active"],D=b?k+"-done":h[m+"Done"];return{baseClassName:k,activeClassName:M,doneClassName:D}},i}var a=t.prototype;return a.addClass=function(o,u,d){var m=this.getClassNames(u)[d+"ClassName"],h=this.getClassNames("enter"),b=h.doneClassName;u==="appear"&&d==="done"&&b&&(m+=" "+b),d==="active"&&o&&Q1(o),m&&(this.appliedClasses[u][d]=m,L4(o,m))},a.removeClasses=function(o,u){var d=this.appliedClasses[u],m=d.base,h=d.active,b=d.done;this.appliedClasses[u]={},m&&zu(o,m),h&&zu(o,h),b&&zu(o,b)},a.render=function(){var o=this.props;o.classNames;var u=G1(o,["classNames"]);return B.createElement(Tn,pc({},u,{onEnter:this.onEnter,onEntered:this.onEntered,onEntering:this.onEntering,onExit:this.onExit,onExiting:this.onExiting,onExited:this.onExited}))},t}(B.Component);Id.defaultProps={classNames:""};Id.propTypes=process.env.NODE_ENV!=="production"?pc({},Tn.propTypes,{classNames:P4,onEnter:N.func,onEntering:N.func,onEntered:N.func,onExit:N.func,onExiting:N.func,onExited:N.func}):{};const A4="_snackbarbottom_w5vob_1",F4="_snackbar_w5vob_138",D4="_snackbar__left_w5vob_162",O4="_snackbar__right_w5vob_168",B4="_snackbar__textLabel_w5vob_173",N4="_snackbar__textButton_w5vob_181",j4="_snackbar__dismiss_w5vob_184",$4="_snackbar__icon_w5vob_187",Er={"animation--enter":"_animation--enter_w5vob_120","animation--enter-active":"_animation--enter-active_w5vob_124",snackbarbottom:A4,"animation--exit":"_animation--exit_w5vob_129","animation--exit-active":"_animation--exit-active_w5vob_133",snackbar:F4,snackbar__left:D4,snackbar__right:O4,snackbar__textLabel:B4,snackbar__textButton:N4,snackbar__dismiss:j4,snackbar__icon:$4},V4=60,Of=600,W4=({dismissable:r=!1,isOpen:t,leftIconLarge:a,leftIconSmall:i,onClick:o,onClose:u,rightIconLarge:d,rightIconSmall:m,textButton:h,textLabel:b})=>{const[_,k]=B.useState(!1),[M,D]=B.useState(0),[A,j]=B.useState(4e3),O=B.useRef(null),{getRootProps:P}=R0({autoHideDuration:A,onClose:u,open:t}),U=$=>{const K=$.changedTouches[0].clientY;D(K),j(null)},Z=$=>{requestAnimationFrame(()=>{if(O.current){const oe=$.changedTouches[0].clientY,de=M-Math.max(M,oe),fe=Math.abs(1e3/de);O.current.style.marginBottom=`${de}px`,O.current.style.opacity=`${fe}%`}})},J=$=>{const K=$.changedTouches[0].clientY,oe=()=>{O.current&&(O.current.style.marginBottom="0",O.current.style.opacity="100%"),j(4e3),k(!1)};K-M>V4?(k(!0),u&&u(),O.current&&(O.current.style.opacity="0"),setTimeout(()=>{oe()},Of+10)):oe()};return R.jsx(Id,{nodeRef:O,timeout:Of,in:t,classNames:{enter:Er["animation--enter"],enterActive:Er["animation--enter-active"],exit:xe({[Er["animation--exit"]]:!_}),exitActive:xe({[Er["animation--exit-active"]]:!_})},unmountOnExit:!0,children:R.jsxs("div",{role:"alertdialog",...P,className:Er.snackbar,onTouchMove:Z,onTouchStart:U,onTouchEnd:J,ref:O,children:[R.jsxs("div",{className:Er.snackbar__left,children:[a&&R.jsx(wt,{name:a,size:"32",className:Er.snackbar__icon}),i&&R.jsx(wt,{name:i,size:"24",className:Er.snackbar__icon}),b&&R.jsx(De,{type:"body-semibold",className:Er.snackbar__textLabel,children:b})]}),R.jsxs("div",{className:Er.snackbar__right,children:[d&&R.jsx(wt,{name:d,size:"32",className:Er.snackbar__icon}),m&&R.jsx(wt,{name:m,size:"24",className:Er.snackbar__icon}),h&&R.jsx("div",{className:Er.snackbar__textButton,children:R.jsx(Rn,{color:"green",size:"medium",text:h,onClick:o})})]}),r&&R.jsx(Pi,{icon:"cross",size:"small",ariaLabel:"Schließen",onClick:u,className:Er.snackbar__dismiss})]})})},H4="_fieldset_12brx_106",U4={fieldset:H4},Pd=({children:r,className:t,disabled:a,form:i,name:o})=>{const u=B.Children.map(r,d=>{if(B.isValidElement(d))return B.cloneElement(d,{disabled:a})});return R.jsx("fieldset",{className:xe(U4.fieldset,t),disabled:a,name:o,form:i,children:u})},z4="_radiobuttoncluster_1jxdz_106",q4={radiobuttoncluster:z4};function Z4(r){const{children:t,disabled:a,onChange:i,value:o}=r;function u(m){i(m)}const d=B.Children.map(t,m=>B.cloneElement(m,{checked:o===m.props.value,onChange:u}));return R.jsx(Pd,{disabled:a,className:q4.radiobuttoncluster,children:d})}const Y4="_toggleGroupStory_196oh_106",G4={toggleGroupStory:Y4},X4=({className:r,items:t,multiselect:a=!1,onChange:i,selectedItems:o,togglable:u=!1})=>{const d=o||[],m=_=>{h(_)},h=_=>{if(!a){const M=u?d.find(D=>D.id===_.id)?[]:[_]:[_];i&&i(M);return}const k=d.find(M=>M.id===_.id)?d.filter(M=>M.id!==_.id):[...d,_];i&&i(k)},b=_=>!!d.find(k=>k.id===_);return R.jsx("div",{className:xe(G4.toggleGroup,r),children:t.map(({disabled:_,icon:k,id:M,label:D,orientation:A,popular:j,style:O,value:P,variant:U})=>R.jsx(F1,{id:M,style:O,value:P,icon:k,popular:j,variant:U,orientation:A,label:D,disabled:_,isSelected:b(M),onToggleChange:m},M))})},J4="_switcherToggle_19pqt_107",Q4="_input_19pqt_115",K4="_label_19pqt_118",Jl={switcherToggle:J4,input:Q4,label:K4,"switcherToggle--filled":"_switcherToggle--filled_19pqt_143","switcherToggle--outline":"_switcherToggle--outline_19pqt_150"},e6=2,t6=({className:r,items:t,onChange:a,style:i="outline",value:o})=>{if(t.length<e6)return null;const u=d=>{a(d.target.value)};return R.jsx(Pd,{className:xe(Jl.switcherToggle,Jl[`switcherToggle--${i}`],r),name:"switcher-toggle",children:t.map(({id:d,label:m},h)=>R.jsxs(B.Fragment,{children:[R.jsx("input",{type:"radio",id:`toggle-${h}-${d}`,name:"switcher-toggle","aria-label":m,value:d,checked:o===d,className:Jl.input,onChange:u}),R.jsx("label",{htmlFor:`toggle-${h}-${d}`,className:Jl.label,children:R.jsx(De,{as:"p",type:"h5",children:m})})]},`${h}_${d}`))})},r6="_toggleInput_1fozv_106",n6="_textWrapper_1fozv_119",ca={toggleInput:r6,textWrapper:n6,"textWrapper--withDescription":"_textWrapper--withDescription_1fozv_124",switch:"_switch_1fozv_127","toggleInput--checked":"_toggleInput--checked_1fozv_130","toggleInput--disabled":"_toggleInput--disabled_1fozv_133","toggleInput--withBorder":"_toggleInput--withBorder_1fozv_136"},o6=({checked:r,defaultChecked:t,description:a,disabled:i,icon:o,label:u,onChange:d,withBorder:m})=>R.jsxs("label",{className:xe(ca.toggleInput,{[ca["toggleInput--withBorder"]]:m,[ca["toggleInput--checked"]]:r,[ca["toggleInput--disabled"]]:i}),children:[o&&R.jsx(wt,{name:o,size:"32"}),R.jsxs("div",{className:xe(ca.textWrapper,{[ca["textWrapper--withDescription"]]:a}),children:[R.jsx(De,{type:"body-large",children:u}),a&&R.jsx(De,{type:"body-regular",children:a})]}),R.jsx(A1,{onChange:d,disabled:i,checked:r,defaultChecked:t,className:ca.switch})]}),a6="_tabsCard_1o18q_106",i6="_tabs_1o18q_106",s6="_label_1o18q_114",l6="_tabsList_1o18q_118",c6="_selectedTab_1o18q_136",ki={tabsCard:a6,tabs:i6,label:s6,tabsList:l6,selectedTab:c6},u6=({onChange:r,tabs:t,value:a})=>R.jsx("section",{className:ki.tabsCard,children:R.jsxs(w1,{defaultValue:a,className:ki.tabs,onChange:r,children:[R.jsx(C1,{className:ki.tabsList,children:t.map(({id:i,label:o})=>R.jsxs(E1,{value:`${i}`,"data-testid":`tab-${o}`,children:[R.jsx("div",{className:ki.tab,children:R.jsx("div",{className:ki.selectedTab})}),R.jsx(De,{as:"span",type:"body-regular",className:ki.label,children:o})]},`tab_${i}`))}),t.map(({content:i,id:o})=>R.jsx(x1,{value:`${o}`,children:i},`tab_panel_${o}`))]})}),d6="_root_3yqek_106",f6="_root__content_3yqek_116",p6="_root__bookmark_3yqek_121",h6="_root__header_3yqek_127",m6="_root__header__reserved_3yqek_134",g6="_root__header__reserved__box_3yqek_147",v6="_root__header__image_3yqek_156",b6="_root__info_3yqek_161",y6="_root__info__top_3yqek_167",w6="_root__info__price_3yqek_170",x6="_root__info__title_3yqek_176",k6="_root__info__timeStamp_3yqek_184",pr={root:d6,"root--aggregator":"_root--aggregator_3yqek_113",root__content:f6,root__bookmark:p6,root__header:h6,root__header__reserved:m6,"root__header__reserved--visible":"_root__header__reserved--visible_3yqek_144",root__header__reserved__box:g6,root__header__image:v6,root__info:b6,root__info__top:y6,root__info__price:w6,"root__info__price--reserved":"_root__info__price--reserved_3yqek_173",root__info__title:x6,root__info__timeStamp:k6};function _6({bookmarked:r,context:t="feed",image:a,onBookmark:i,onClick:o,price:u,reserved:d,reservedText:m,timeStamp:h,title:b}){return R.jsxs("div",{className:xe(pr.root,pr[`root--${t}`]),children:[R.jsx(T1,{onClick:i,bookmarked:r,className:pr.root__bookmark}),R.jsxs("div",{className:pr.root__content,onClick:o,children:[R.jsxs("div",{className:pr.root__header,children:[R.jsx("div",{className:xe(pr.root__header__reserved,{[pr["root__header__reserved--visible"]]:d}),children:R.jsx("div",{className:pr.root__header__reserved__box,children:R.jsx(De,{type:"detail-upper-case",children:m})})}),a?R.jsx(wd,{alt:"product image",src:a,className:pr.root__header__image}):R.jsx(I1,{size:"large",icon:R.jsx(wt,{name:"camera_crossed"})})]}),R.jsxs("div",{className:pr.root__info,children:[R.jsxs("div",{className:pr.root__info__top,children:[R.jsx(De,{type:"body-semibold",as:"p",className:xe(pr.root__info__price,{[pr["root__info__price--reserved"]]:d}),children:u}),R.jsx(De,{type:"body-semibold",as:"p",className:pr.root__info__title,children:b})]}),R.jsx(De,{type:"detail-medium",as:"p",className:pr.root__info__timeStamp,children:h})]})]})]})}const C6=({ariaLabel:r,ariaLabelledBy:t,children:a,className:i,id:o})=>R.jsx("form",{className:i,"aria-label":r,"aria-labelledby":t,id:o,children:a}),S6="_legend_1as3c_106",E6="_text_1as3c_112",Bf={legend:S6,text:E6},R6=({className:r,headline:t,text:a})=>R.jsxs("legend",{className:xe(Bf.legend,r),children:[R.jsx(De,{type:"h5",children:t}),a&&R.jsx(De,{className:Bf.text,type:"body-regular",as:"p",children:a})]}),T6="_overlay_du31f_106",M6="_sheet_du31f_117",I6="_sheetWrapper_du31f_130",P6="_sheetBody_du31f_138",L6="_sheetHeader_du31f_141",A6="_sheetFooter_du31f_153",_i={overlay:T6,"fade-in":"_fade-in_du31f_1",sheet:M6,"slide-up":"_slide-up_du31f_1",sheetWrapper:I6,sheetBody:P6,sheetHeader:L6,sheetFooter:A6},F6=({ariaLabel:r,ctaButtonProps:t,linkProps:a,onClose:i,open:o,sheetBody:u,sheetHeader:d})=>(B.useEffect(()=>(o&&(document.body.style.overflow="hidden"),()=>{document.body.style.overflow=""}),[o]),o?R.jsxs(R.Fragment,{children:[R.jsx("div",{className:_i.overlay,onClick:i,"data-testid":"overlay"}),R.jsx("dialog",{className:_i.sheet,"aria-label":r,"aria-modal":"true",open:o,children:R.jsx("div",{className:_i.sheetWrapper,children:R.jsxs("section",{role:"document",children:[R.jsx("header",{className:_i.sheetHeader,children:d}),R.jsx("div",{className:_i.sheetBody,children:R.jsx(Ec,{children:u})}),R.jsxs("footer",{className:_i.sheetFooter,children:[t&&R.jsx(yd,{...t}),a&&R.jsx(Rn,{...a})]})]})})})]}):null),D6="_backdrop_x4szp_106",O6={backdrop:D6},K1=B.forwardRef((r,t)=>{const{ownerState:a,...i}=r;return R.jsx("div",{ref:t,...i,className:O6.backdrop})});K1.displayName="Backdrop";const B6="_modal_1a7hy_106",N6="_modalWrapper_1a7hy_114",j6="_modalHeader_1a7hy_130",$6="_crossCircle_1a7hy_146",V6="_modalFooter_1a7hy_149",Fs={modal:B6,modalWrapper:N6,modalHeader:j6,crossCircle:$6,modalFooter:V6},W6=({ariaLabel:r,ariaLabelledBy:t,closeButtonText:a="Abbrechen",headerTitle:i,modalBody:o,modalFooter:u,onClose:d,open:m})=>R.jsx(hd,{"aria-label":r,"aria-labelledby":t,open:m,onClose:d,slots:{backdrop:K1},className:Fs.modal,children:R.jsxs("div",{className:Fs.modalWrapper,children:[R.jsx(cc,{className:Fs.modalHeader,headline:i,rightElement:R.jsx(Pi,{icon:"cross_circle",onClick:d,size:"small",ariaLabel:a,className:Fs.crossCircle})}),R.jsx(Ec,{children:o}),R.jsxs("div",{className:Fs.modalFooter,children:[R.jsx(Rn,{onClick:d,color:"blue",size:"large",text:a}),u]})]})}),H6="_base_1egyw_106",U6={base:H6};var Kl=(r=>(r[r.lg=16]="lg",r[r.md=12]="md",r[r.sm=8]="sm",r[r.xl=24]="xl",r))(Kl||{});const ep=B.forwardRef(({anchor:r,children:t,container:a,handleClickAway:i,id:o,offset:u="sm",open:d,placement:m,strategy:h="fixed"},b)=>{let _=Kl.sm;typeof u=="object"?_=u:Kl[u]&&(_=Kl[u]);let k;return i?k=R.jsx(tc,{onClickAway:i,touchEvent:!1,children:R.jsx("div",{children:t})}):k=t,R.jsx(g1,{ref:b,className:U6.base,id:o,open:d,anchor:r,offset:_,placement:m,container:a,strategy:h,children:k})});ep.displayName="Popup";const z6="_backdrop_1dehl_106",q6={backdrop:z6},tp=B.forwardRef((r,t)=>R.jsx("div",{ref:t,...r,className:q6.backdrop}));tp.displayName="Backdrop";const Z6="_sheet_1iz9h_106",Y6="_sheetWrapper_1iz9h_118",G6="_sheetHeader_1iz9h_130",X6="_sheetFooter_1iz9h_152",Ds={sheet:Z6,sheetWrapper:Y6,sheetHeader:G6,sheetFooter:X6,"sheetFooter--alwaysVisible":"_sheetFooter--alwaysVisible_1iz9h_160"},J6=({ariaLabel:r,ariaLabelledBy:t,closeButtonText:a,onClose:i,open:o,sheetBody:u,sheetFooter:d,sheetHeader:m})=>R.jsx(hd,{"aria-label":r,"aria-labelledby":t,open:o,onClose:i,slots:{backdrop:tp},className:Ds.sheet,children:R.jsxs("div",{className:Ds.sheetWrapper,children:[m&&R.jsx("div",{className:Ds.sheetHeader,children:m}),u,d&&R.jsxs("div",{className:xe(Ds.sheetFooter,{[Ds["sheetFooter--alwaysVisible"]]:!!d}),children:[a&&R.jsx(Rn,{onClick:i,color:"blue",size:"large",text:a}),d]})]})});exports.ActionBar=X3;exports.Badge=im;exports.BadgeIcon=vd;exports.BadgeLabel=wy;exports.BodyText=ww;exports.Bookmark=T1;exports.BottomSheet=F6;exports.Button=gr;exports.ButtonPrimary=yd;exports.ButtonSecondary=My;exports.ButtonTertiary=M1;exports.Card=B3;exports.CardBody=Ec;exports.CardHeader=cc;exports.CheckboxInput=n3;exports.Divider=P1;exports.EmptyState=w4;exports.FeedItemCategory=ky;exports.FeedTile=Oy;exports.Fieldset=Pd;exports.Form=C6;exports.Icon=wt;exports.IconButton=Pi;exports.Image=wd;exports.InputFieldSpecial=d3;exports.LabelPill=bd;exports.Legend=R6;exports.Loader=R3;exports.Markdown=t4;exports.MarketplaceItemCardless=_6;exports.MenuItem=i4;exports.MenuTile=jy;exports.Modal=W6;exports.NavBar=c4;exports.NavItem=h4;exports.NavigationTab=u6;exports.Notice=E4;exports.NotificationBubble=Zs;exports.NotificationListItem=lx;exports.PlaceholderThumbnail=I1;exports.PointOfInterestIProfileTile=Hy;exports.Popup=ep;exports.RadioButton=p3;exports.RadioButtonCluster=Z4;exports.Select=Jw;exports.SelectablePill=F1;exports.SelectablePillGroup=X4;exports.Sheet=J6;exports.Snackbar=W4;exports.Sticker=R1;exports.SwitcherToggle=t6;exports.TextArea=b3;exports.TextButton=Rn;exports.TextInput=k3;exports.Thumbnail=Sc;exports.ThumbnailWithLabel=Tw;exports.ThumbnailWrapper=Pw;exports.Toggle=A1;exports.ToggleInput=o6;exports.Typography=De;
|
package/index.mjs
CHANGED
|
@@ -19973,16 +19973,16 @@ const m6 = "_backdrop_1dehl_106", g6 = {
|
|
|
19973
19973
|
backdrop: m6
|
|
19974
19974
|
}, K1 = H((r, t) => /* @__PURE__ */ T.jsx("div", { ref: t, ...r, className: g6.backdrop }));
|
|
19975
19975
|
K1.displayName = "Backdrop";
|
|
19976
|
-
const v6 = "
|
|
19976
|
+
const v6 = "_sheet_1iz9h_106", b6 = "_sheetWrapper_1iz9h_118", y6 = "_sheetHeader_1iz9h_130", w6 = "_sheetFooter_1iz9h_152", Os = {
|
|
19977
19977
|
sheet: v6,
|
|
19978
19978
|
sheetWrapper: b6,
|
|
19979
19979
|
sheetHeader: y6,
|
|
19980
19980
|
sheetFooter: w6,
|
|
19981
|
-
"sheetFooter--alwaysVisible": "_sheetFooter--
|
|
19981
|
+
"sheetFooter--alwaysVisible": "_sheetFooter--alwaysVisible_1iz9h_160"
|
|
19982
19982
|
}, sk = ({
|
|
19983
19983
|
ariaLabel: r,
|
|
19984
19984
|
ariaLabelledBy: t,
|
|
19985
|
-
closeButtonText: a
|
|
19985
|
+
closeButtonText: a,
|
|
19986
19986
|
onClose: i,
|
|
19987
19987
|
open: o,
|
|
19988
19988
|
sheetBody: u,
|
|
@@ -19998,16 +19998,16 @@ const v6 = "_sheet_1ycdc_106", b6 = "_sheetWrapper_1ycdc_114", y6 = "_sheetHeade
|
|
|
19998
19998
|
slots: { backdrop: K1 },
|
|
19999
19999
|
className: Os.sheet,
|
|
20000
20000
|
children: /* @__PURE__ */ T.jsxs("div", { className: Os.sheetWrapper, children: [
|
|
20001
|
-
/* @__PURE__ */ T.jsx("div", { className: Os.sheetHeader, children: m }),
|
|
20001
|
+
m && /* @__PURE__ */ T.jsx("div", { className: Os.sheetHeader, children: m }),
|
|
20002
20002
|
u,
|
|
20003
|
-
/* @__PURE__ */ T.jsxs(
|
|
20003
|
+
d && /* @__PURE__ */ T.jsxs(
|
|
20004
20004
|
"div",
|
|
20005
20005
|
{
|
|
20006
20006
|
className: xe(Os.sheetFooter, {
|
|
20007
20007
|
[Os["sheetFooter--alwaysVisible"]]: !!d
|
|
20008
20008
|
}),
|
|
20009
20009
|
children: [
|
|
20010
|
-
/* @__PURE__ */ T.jsx(
|
|
20010
|
+
a && /* @__PURE__ */ T.jsx(
|
|
20011
20011
|
Yn,
|
|
20012
20012
|
{
|
|
20013
20013
|
onClick: i,
|
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")}._badgeIcon--size-small_1tg9r_106{width:20px;height:20px}._badgeIcon--size-medium_1tg9r_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_1cmzb_106{position:relative;display:inline-block}._badge__list_1cmzb_110{position:absolute;top:-6px;right:-6px;display:inline-flex}._badge__icon_1cmzb_116:nth-child(2),._badge__icon_1cmzb_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")}._h1_1aq3h_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_1aq3h_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_1aq3h_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_1aq3h_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_1aq3h_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_1aq3h_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_1aq3h_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_1aq3h_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_1aq3h_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_1aq3h_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_1aq3h_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_1aq3h_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_1aq3h_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_1aq3h_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_1aq3h_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_1aq3h_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_1aq3h_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")}._iconComponent_1qidc_106{display:block}._iconComponent_1qidc_106 path{stroke:currentcolor}._iconComponent--filled_1qidc_112 path{fill:currentcolor;stroke: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")}._bubbleContent_1jb4w_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_1jb4w_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_1jb4w_136{position:absolute;z-index:auto;top:6px;right:6px;transform:translate(50%,-50%)}._bubble--empty_1jb4w_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")}._baseBtn_p01sj_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")}._textButton_1cxnl_106{display:flex;height:1.5rem;min-height:1.5rem;align-items:center;justify-content:center;gap:8px}._textButton--green_1cxnl_114{color:#cae85d}._textButton--green_1cxnl_114:hover{color:#b5d622}._textButton--blue_1cxnl_120{color:#01819c}._textButton--blue_1cxnl_120:hover{color:#98cbd6}._textButton--deepPurple_1cxnl_126{color:#635c80}._textButton--deepPurple_1cxnl_126:hover{color:#201649}._textButton_1cxnl_106:active{background:none}._textButton_1cxnl_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_1bpiv_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_1bpiv_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")}._feedItemCategory_9fugn_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_9fugn_114{background-color:#cae85d;color:#201649}._feedItemCategory--closedPost_9fugn_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")}._labelPill_znk1o_106{display:inline-flex;align-items:center;justify-content:center}._labelPill__shape--pill_znk1o_111{padding:4px 8px;border-radius:16px}._labelPill__shape--pill--small_znk1o_115{padding:2px 8px}._labelPill__shape--pill--teal_znk1o_118{background:#01819c;color:#fff}._labelPill__shape--pill--lavender_znk1o_122{background:#e8e3ff;color:#4d17e5}._labelPill__shape--tile_znk1o_126{padding:8px;border-radius:4px;background:#21164ae6;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")}._sticker_u26rd_106{display:flex;align-items:center;justify-content:center;border-radius:999px;background-color:var(--sticker-bg-color)}._sticker--color-green_u26rd_113{--sticker-bg-color: #cae85d}._sticker--color-pink_u26rd_116{--sticker-bg-color: #ff9de2}._sticker--color-lavender_u26rd_119{--sticker-bg-color: #7c5bff}._sticker--color-lavender_u26rd_119 path{stroke:#fff}._sticker--color-teal_u26rd_125{--sticker-bg-color: #01819C}._sticker--color-teal_u26rd_125 path{stroke:#fff}._sticker--color-orange_u26rd_131{--sticker-bg-color: #ebaa77}._sticker--color-grey_u26rd_134{--sticker-bg-color: #d2d0db}._sticker--size-small_u26rd_137{width:48px;height:48px}._sticker--size-medium_u26rd_141{width:56px;height:56px}._sticker--size-large_u26rd_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")}._button_7w51h_106{padding:2px;border-radius:4px;background:#ffffffb3}._button--bookmarked_7w51h_111,._button_7w51h_106:hover{background:#fff}._button__icon_7w51h_114 path{color:#635c80}._button__icon--bookmarked_7w51h_117 path{color:#01819c;fill:#01819c}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display: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_kjm5h_106{display:inline-flex;height:48px;align-items:center;justify-content:center;padding:0 24px;border-radius:24px;color:#201649;cursor:pointer;gap:8px;line-height:20px}._primaryButton--fullWidth_kjm5h_118{width:100%}._primaryButton--large_kjm5h_121{height:40px;padding:0 16px;gap:4px}._primaryButton--medium_kjm5h_126,._primaryButton--small_kjm5h_126{height:32px;padding:0 12px;gap:4px}._primaryButton--highlight_kjm5h_131{background-color:#ff9de2}._primaryButton--highlight_kjm5h_131:hover{background-color:#ec7bcb}._primaryButton--primary_kjm5h_137{background-color:#cae85d}._primaryButton--primary_kjm5h_137:hover{background-color:#b5d622}._primaryButton--transparent_kjm5h_143{border:1px solid #201649;background-color:transparent}._primaryButton--transparent_kjm5h_143:hover{border-color:#ec7bcb;background-color:#ec7bcb}._primaryButton--loading_kjm5h_151 span{cursor:default;visibility:hidden}._primaryButton_kjm5h_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_1dapg_106{display:inline-flex;height:48px;align-items:center;justify-content:center;padding:0 24px;border-radius:24px;color:#201649;cursor:pointer;gap:8px;line-height:20px}._secondaryButton--fullWidth_1dapg_118{width:100%}._secondaryButton--large_1dapg_121{height:40px;padding:0 16px;gap:4px}._secondaryButton--medium_1dapg_126,._secondaryButton--small_1dapg_126{height:32px;padding:0 12px;gap:4px}._secondaryButton--green_1dapg_131{background-color:#f2fbc4}._secondaryButton--green_1dapg_131:hover{background-color:#cae85d}._secondaryButton--pink_1dapg_137{background-color:#fde6f7;color:#b22b8a}._secondaryButton--pink_1dapg_137:hover{background-color:#ff9de2;color:#201649}._secondaryButton--grey_1dapg_145{background-color:#f4f3f6}._secondaryButton--grey_1dapg_145:hover{background-color:#e9e8ed}._secondaryButton--teal_1dapg_151{background-color:#98cbd6}._secondaryButton--teal_1dapg_151:hover{background-color:#e0f5f9}._secondaryButton--lavender_1dapg_157{background-color:#e8e3ff;color:#4d17e5}._secondaryButton--lavender_1dapg_157:hover{background-color:#c1b7ea}._secondaryButton--orange_1dapg_164{background-color:#ebaa77}._secondaryButton--orange_1dapg_164:hover{background-color:#dc8541}._secondaryButton--loading_1dapg_170 span{cursor:default;visibility:hidden}._secondaryButton_1dapg_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")}._tertiaryButton_wmygv_106{display:inline-flex;height:48px;align-items:center;justify-content:center;padding:0 24px;border-radius:24px;background-color:transparent;color:#201649;cursor:pointer;gap:8px;line-height:20px}._tertiaryButton--fullWidth_wmygv_119{width:100%}._tertiaryButton--large_wmygv_122{height:40px;padding:0 16px;gap:4px}._tertiaryButton--medium_wmygv_127,._tertiaryButton--small_wmygv_127{height:32px;padding:0 12px;gap:4px}._tertiaryButton--green_wmygv_132{border:1px solid #738C00;color:#738c00}._tertiaryButton--green_wmygv_132:hover{border-color:#b5d622;background-color:#f2fbc4}._tertiaryButton--green_wmygv_132:active{border-color:#b5d622;background-color:transparent}._tertiaryButton--pink_wmygv_144{border:1px solid #CC339F;color:#b22b8a}._tertiaryButton--pink_wmygv_144:hover{border-color:#ec7bcb;background-color:#fde6f7}._tertiaryButton--pink_wmygv_144:active{border-color:#ec7bcb;background-color:transparent}._tertiaryButton--blue_wmygv_156{border:1px solid #01819C;color:#01819c}._tertiaryButton--blue_wmygv_156:hover{border-color:#43adc3;background-color:#e0f5f9}._tertiaryButton--blue_wmygv_156:active{border-color:#43adc3;background-color:transparent}._tertiaryButton--deepPurple_wmygv_168{border:1px solid #d2d0db;color:#201649}._tertiaryButton--deepPurple_wmygv_168:hover{border-color:#635c80;background-color:#f4f3f6}._tertiaryButton--deepPurple_wmygv_168:active{border-color:#a6a2b6;background-color:transparent}._tertiaryButton--loading_wmygv_180 span{cursor:default;visibility:hidden}._tertiaryButton_wmygv_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")}._iconButton_1xq9c_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_1xq9c_106:disabled{background:none;cursor:default}._iconButton_1xq9c_106:hover,._iconButton_1xq9c_106:active{background:none}._iconButton--circular_1xq9c_127{border-radius:999px;background:#cae85d}._iconButton--circular_1xq9c_127:disabled{background:#fff}._iconButton--circular_1xq9c_127:hover{background:#b5d622}._iconButton--circular_1xq9c_127:active{background:#cae85d}._iconButton--circular-small_1xq9c_140{width:40px;height:40px}._iconButton--circular-medium_1xq9c_144{width:48px;height:48px}._iconButton--circular-large_1xq9c_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")}._feedTile_1m22x_106{display:flex;flex-direction:column;align-items: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_1m22x_118{flex-shrink:0}._feedTile_1m22x_106:hover{border-color:#635c80}._feedTile_1m22x_106:active{border-color:#f4f3f6;background-color:#f4f3f6}@media screen and (max-width: 799px){._feedTile_1m22x_106{flex-flow:row wrap;gap:8px;text-align:left}._feedTile__text_1m22x_134{width:-moz-min-content;width:min-content;flex-grow:1}}._feedTile--fullWidth_1m22x_139{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")}._menuTile_1f5by_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_1f5by_119{width:100%}._menuTile--icon_1f5by_122{padding:4px 4px 8px}._menuTile__value_1f5by_126{color:var(--tile-value-color)}._menuTile_1f5by_106:hover{--tile-bg-color: #e9e8ed}._menuTile_1f5by_106:focus{--tile-bg-color: #d2d0db}._menuTile_1f5by_106:disabled{--tile-color: #a6a2b6;--tile-value-color: #a6a2b6;cursor:default}._menuTile_1f5by_106:disabled:hover,._menuTile_1f5by_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")}._poiProfileTile_te9e5_106{--poi-profile-tile-color: #635C80;display:flex;flex-direction:column;align-items:center;justify-content:center;padding:8px 4px;border-radius:8px;gap:2px}._poiProfileTile__icon_te9e5_116{flex-shrink:0}._poiProfileTile__icon_te9e5_116 path{stroke:var(--poi-profile-tile-color)}._poiProfileTile__label_te9e5_122{color:var(--poi-profile-tile-color);text-align:center}._poiProfileTile--selected_te9e5_126{--poi-profile-tile-color: #201649}._poiProfileTile_te9e5_106:hover{background-color:#f4f3f6}._poiProfileTile_te9e5_106:active{background-color:#e9e8ed}._poiProfileTile_te9e5_106:disabled{--poi-profile-tile-color: #a6a2b6}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display: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_1a2he_106{display:flex;flex-direction:column;gap:8px}._bodyText--notClickable_1a2he_111{cursor:default}._bodyText--post_1a2he_114{padding:8px 12px 0;margin-bottom:8px}._bodyText--modal_1a2he_118{padding:12px 16px}._bodyText_1a2he_106 button{justify-content:flex-start}@media screen and (max-width: 689px){._bodyText__text--collapsed_1a2he_125{display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:3;text-overflow:ellipsis}}._bodyText__textButton_1a2he_133{display:block}@media screen and (min-width: 690px){._bodyText__textButton_1a2he_133{display:none}}._bodyText_1a2he_106 a{color:#201649}._bodyText__showMore_1a2he_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")}._wrapper_1xct2_106{display:flex;width:100%;height:100%;align-items:center;justify-content:center;border-radius:8px}._wrapper_1xct2_106 path{stroke:#635c80}._wrapper--large_1xct2_117{background-color:#d2d0db}._wrapper--small_1xct2_120{border:1px solid #d2d0db;background-color:#f4f3f6}._wrapper--iconWrapper_1xct2_124{width:72px;height:72px;border-radius:999px}._wrapper_1xct2_106._wrapper--iconWrapper_1xct2_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")}._root_9okik_106{position:relative;overflow:hidden;flex-shrink:0;border:solid 1px #d2d0db;background-color:#d2d0db}._root--24_9okik_113{width:24px;height:24px}._root--28_9okik_117{width:28px;height:28px}._root--32_9okik_121{width:32px;height:32px}._root--40_9okik_125{width:40px;height:40px}._root--48_9okik_129{width:48px;height:48px}._root--56_9okik_133{width:56px;height:56px}._root--64_9okik_137{width:64px;height:64px}._root--80_9okik_141{width:80px;height:80px}._root--120_9okik_145{width:120px;height:120px}._root--280_9okik_149{width:280px;height:280px}._root--square_9okik_153._root--24_9okik_113,._root--square_9okik_153._root--32_9okik_121{border-radius:4px}._root--square_9okik_153._root--40_9okik_125,._root--square_9okik_153._root--48_9okik_129{border-radius:8px}._root--square_9okik_153._root--56_9okik_133,._root--square_9okik_153._root--64_9okik_137{border-radius:12px}._root--square_9okik_153._root--80_9okik_141,._root--square_9okik_153._root--120_9okik_145{border-radius:16px}._root--circular_9okik_165{border-radius:50%}._root--isPlaceholder_9okik_168:before{position:absolute;z-index:1;width:100%;height:100%;background-color:#d2d0db;content:"";opacity:.4}._root_9okik_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")}._wrapper_1s2ue_106{display:flex;width:-moz-fit-content;width:fit-content;flex-direction:column;align-items:center;justify-content:center;gap:4px}._wrapper_1s2ue_106 ._isPlaceholder_1s2ue_114{display:flex;width:64px;height:64px;align-items:center;justify-content:center;border:1px solid #d2d0db;background-color:#f4f3f6}._wrapper_1s2ue_106 ._isPlaceholder_1s2ue_114 svg path{stroke:#635c80}._wrapper_1s2ue_106 ._square_1s2ue_126{border-radius:8px}._wrapper_1s2ue_106 ._circular_1s2ue_129{border-radius:50%}._wrapper_1s2ue_106 ._label_1s2ue_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_nv8dz_106{position:relative;display:inline-block}._thumbnailWrapper__thumbnail_nv8dz_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")}._dividerContainer_1hu4q_106{display:flex;align-items:center}._dividerLine_1hu4q_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")}._root_lisxm_106{position:relative;width:100%}._toggle_lisxm_111{display:flex;width:100%;flex-direction:row;justify-content:space-between;padding:16px;border-radius:16px;background:#fff;cursor:pointer}._toggle_lisxm_111 ._label_lisxm_121{display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:1;text-overflow:ellipsis;color:#635c80}._toggle--dark_lisxm_129{border:1px solid #f4f3f6;background-color:#f4f3f6}._toggle--dark_lisxm_129:hover{background-color:#e9e8ed}._toggle--dark_lisxm_129._disabled_lisxm_136{color:#a6a2b6}._toggle--dark_lisxm_129._disabled_lisxm_136:hover{background-color:#f4f3f6}._toggle--dark_lisxm_129._disabled_lisxm_136 ._label_lisxm_121{color:#a6a2b6}._toggle--light_lisxm_145{border:1px solid #a6a2b6;background-color:#fff}._toggle--light_lisxm_145:hover{border-color:#635c80;background-color:#f4f3f6}._toggle--light_lisxm_145._disabled_lisxm_136{border-color:#d2d0db;color:#a6a2b6}._toggle--light_lisxm_145._disabled_lisxm_136:hover{background-color:#fff}._toggle--light_lisxm_145._disabled_lisxm_136 ._label_lisxm_121{color:#a6a2b6}._toggle_lisxm_111._filled_lisxm_163 ._label_lisxm_121{color:#201649}._toggle_lisxm_111._error_lisxm_166{border-color:#cc339f;background:#fde6f7}._toggle_lisxm_111._error_lisxm_166:focus,._toggle_lisxm_111._error_lisxm_166:hover{border-color:#cc339f;background:#fde6f7}._icon_lisxm_175{transition:transform .3s}._icon_lisxm_175._expanded_lisxm_179{transform:rotate(180deg)}._hidden_lisxm_183{display:none}._option_lisxm_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_lisxm_187:hover{background:#f4f3f6;color:#201649}._option_lisxm_187._selected_lisxm_211{background:#f2fbc4;color:#201649}._option_lisxm_187._selected_lisxm_211:hover{color:#635c80}._dropdown_lisxm_219{position:absolute;z-index:1;overflow:hidden;width:100%;border-radius:8px;background:#fff;box-shadow:0 4px 20px #2016491a}._errorMessage_lisxm_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")}._checkboxInput_ukmtn_107{display:flex;align-items:center;background:#fff;gap:16px}._checkboxInput__label_ukmtn_113{display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:1;text-overflow:ellipsis;flex-grow:1}._checkboxInput_ukmtn_107:not([aria-disabled=true]){cursor:pointer}._checkboxInput__checkbox_ukmtn_124{position:relative;display:flex;flex-shrink:0;align-items:center;justify-content:center;order:2;border-radius:8px}._checkboxInput__checkbox--medium_ukmtn_133{width:28px;height:28px}._checkboxInput__checkbox--small_ukmtn_137,._checkboxInput__checkbox--tiny_ukmtn_137{width:24px;height:24px}._checkboxInput__input_ukmtn_141,._checkboxInput_ukmtn_107 input[type=checkbox]{position:relative;z-index:2;display:flex;width:100%;height:100%;flex-shrink:0;align-items:center;justify-content:center;border:2px solid #a6a2b6;border-radius:8px;background:#fff;transition:.4s}._checkboxInput__input_ukmtn_141~span,._checkboxInput_ukmtn_107 input[type=checkbox]~span{color:#635c80}._checkboxInput__input_ukmtn_141:disabled,._checkboxInput_ukmtn_107 input[type=checkbox]:disabled{border-color:#d2d0db;background:#f4f3f6}._checkboxInput__input_ukmtn_141:disabled~span,._checkboxInput_ukmtn_107 input[type=checkbox]:disabled~span{color:#a6a2b6}._checkboxInput__input_ukmtn_141:checked,._checkboxInput_ukmtn_107 input[type=checkbox]:checked{z-index:1;border-color:#201649;background-color:#201649;transition:0s}._checkboxInput__input_ukmtn_141:checked~span,._checkboxInput_ukmtn_107 input[type=checkbox]:checked~span{color:#201649}._checkboxInput__input_ukmtn_141:checked:disabled,._checkboxInput_ukmtn_107 input[type=checkbox]:checked:disabled{border-color:#a6a2b6;background-color:#a6a2b6}._checkboxInput__input_ukmtn_141:checked:disabled~span,._checkboxInput_ukmtn_107 input[type=checkbox]:checked:disabled~span{color:#a6a2b6}._checkboxInput__input_ukmtn_141:hover:not(:disabled,:checked),._checkboxInput_ukmtn_107 input[type=checkbox]:hover:not(:disabled,:checked){border-color:#635c80;background-color:#f4f3f6}._checkboxInput__input_ukmtn_141:hover:not(:disabled),._checkboxInput_ukmtn_107 input[type=checkbox]:hover:not(:disabled){cursor:pointer}._checkboxInput__tick_ukmtn_198{position:absolute;z-index:1;width:20px;height:20px}._checkboxInput__tick_ukmtn_198 path{stroke:#fff;stroke-width:2px}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._inputContainer_byy0l_107{display:inline-flex;width:100%;flex-direction:column;align-items:center;gap:4px}._inputContainer_byy0l_107 ._input_byy0l_107{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;position:absolute;z-index:2;width:56px;height:24px;background:transparent;color:#201649;outline:none;text-align:center;transform:translate(-8px,16px)}._inputContainer_byy0l_107 ._input_byy0l_107::-moz-placeholder{color:#635c80}._inputContainer_byy0l_107 ._input_byy0l_107::placeholder{color:#635c80}._inputContainer_byy0l_107 ._input_byy0l_107:focus::-moz-placeholder{color:transparent}._inputContainer_byy0l_107 ._input_byy0l_107:focus::placeholder{color:transparent}._inputContainer_byy0l_107 ._input_byy0l_107:focus+label,._inputContainer_byy0l_107 ._input_byy0l_107:focus-visible+label{box-shadow:inset 0 0 0 1px #201649}._inputContainer_byy0l_107 ._input_byy0l_107:not(:disabled){cursor:pointer}._inputContainer_byy0l_107 ._input_byy0l_107:not(:disabled)+label{cursor:pointer}._inputContainer_byy0l_107 ._input_byy0l_107:disabled::-moz-placeholder{color:#a6a2b6}._inputContainer_byy0l_107 ._input_byy0l_107:disabled::placeholder{color:#a6a2b6}._inputContainer_byy0l_107 ._input--filled_byy0l_153+label{background-color:#f4f3f6}._inputContainer_byy0l_107 ._input--filled_byy0l_153:hover:not(:disabled)+label{background-color:#e9e8ed}._inputContainer_byy0l_107 ._input--filled_byy0l_153:disabled{color:#a6a2b6}._inputContainer_byy0l_107 ._input--filled_byy0l_153:disabled+label{color:#a6a2b6}._inputContainer_byy0l_107 ._input--outline_byy0l_165+label{background-color:#fff;box-shadow:inset 0 0 0 1px #a6a2b6}._inputContainer_byy0l_107 ._input--outline_byy0l_165:hover:not(:disabled)+label{background-color:#f4f3f6;box-shadow:inset 0 0 0 1px #635c80}._inputContainer_byy0l_107 ._input--outline_byy0l_165:disabled{color:#a6a2b6}._inputContainer_byy0l_107 ._input--outline_byy0l_165:disabled+label{box-shadow:inset 0 0 0 1px #d2d0db;color:#a6a2b6}._inputContainer_byy0l_107 ._error_byy0l_180{display:block;width:100%;padding:0 8px;color:#cc339f;cursor:pointer;text-align:center}._inputContainer_byy0l_107 ._label_byy0l_188{position:relative;display:flex;width:100%;height:56px;align-items:center;justify-content:flex-end;padding:16px;border-radius:16px;color:#201649}._inputContainer_byy0l_107 ._label_byy0l_188 span{height:24px;color:inherit}._inputContainer--error_byy0l_203 ._label_byy0l_188{background:#fde6f7!important;box-shadow:inset 0 0 0 1px #cc339f!important;color:#cc339f}._inputContainer--error_byy0l_203 ._input_byy0l_107{color:#201649}._inputContainer__input_byy0l_211{display:inline-flex;width:104px;flex-direction:column;flex-shrink:0;align-items:center;border-radius:16px;gap: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")}._radio_1k55l_106{position:relative;display:flex;align-items:center;justify-content:space-between}._radio_1k55l_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_1k55l_106 input._radio--small_1k55l_124,._radio_1k55l_106 input._radio--tiny_1k55l_124{width:24px;height:24px}._radio_1k55l_106 input:not(:disabled){cursor:pointer}._radio_1k55l_106 input:disabled{border-color:#d2d0db}._radio_1k55l_106 input:checked{border-color:#201649;background-color:#201649;transition:0s}._radio_1k55l_106 input:checked:disabled{border-color:#a6a2b6;background-color:#a6a2b6}._radio_1k55l_106 input:hover:not(:disabled,:checked){border-color:#635c80;background-color:#f4f3f6}._radio_1k55l_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}._radio_1k55l_106 input:not(:disabled)~label{color:#635c80;cursor:pointer}._radio_1k55l_106 input:checked~label{color:#201649}._radio_1k55l_106 input:disabled~label{color:#a6a2b6}._radio_1k55l_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")}._wrapper_wmndk_106{width:100%}._label_wmndk_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_wmndk_124{width:100%;min-height:96px;background-color:transparent;color:#201649}._textArea_wmndk_124:focus-visible{outline:none}._textArea_wmndk_124+label{color:#635c80}._textArea_wmndk_124:not(:-moz-placeholder-shown)+label{top:16px}._textArea_wmndk_124:focus+label,._textArea_wmndk_124:not(:placeholder-shown)+label{top:16px}._textArea_wmndk_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_wmndk_124:focus+label>span,._textArea_wmndk_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_wmndk_152{position:relative}._textAreaContainer_wmndk_152:focus-within{outline:#a6a2b6 2px solid}._textAreaContainer--dark_wmndk_158{background-color:#f4f3f6}._textAreaContainer--dark_wmndk_158:hover{background-color:#e9e8ed}._textAreaContainer--dark_wmndk_158:disabled{color:#a6a2b6}._textAreaContainer--dark_wmndk_158:disabled:hover{background-color:#f4f3f6}._textAreaContainer--dark_wmndk_158:disabled+label{color:#a6a2b6}._textAreaContainer--light_wmndk_173{border:1px solid #a6a2b6;background-color:#fff}._textAreaContainer--light_wmndk_173:hover{border-color:#635c80;background-color:#f4f3f6}._textAreaContainer--light_wmndk_173:disabled{border-color:#d2d0db;color:#a6a2b6}._textAreaContainer--light_wmndk_173:disabled:hover{background-color:#fff}._textAreaContainer--light_wmndk_173:disabled+label{color:#a6a2b6}._textAreaContainer--medium_wmndk_191{border-radius:16px}._textAreaContainer--medium_wmndk_191:not(:-moz-placeholder-shown){padding-top:26px;padding-bottom:6px}._textAreaContainer--medium_wmndk_191:focus,._textAreaContainer--medium_wmndk_191:not(:placeholder-shown){padding-top:26px;padding-bottom:6px}._textAreaContainer--medium_wmndk_191 ._textArea_wmndk_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_wmndk_212{border-radius:12px}._textAreaContainer--small_wmndk_212 ._textArea_wmndk_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_wmndk_212 ._textArea_wmndk_124:not(:-moz-placeholder-shown)+label{display:none}._textAreaContainer--small_wmndk_212 ._textArea_wmndk_124:focus+label,._textAreaContainer--small_wmndk_212 ._textArea_wmndk_124:not(:placeholder-shown)+label{display:none}._textAreaContainer--error_wmndk_232{border:1px solid #CC339F;background-color:#fde6f7;color:#201649}._textAreaContainer--error_wmndk_232:focus{border-color:#cc339f}._textAreaContainer--error_wmndk_232:hover{border-color:#cc339f;background-color:#fde6f7}._textAreaContainer--error_wmndk_232:disabled{border-color:#cc339f}._textAreaContainer--error_wmndk_232:disabled:hover{background-color:#fde6f7}._textAreaContainer--errorMessage_wmndk_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_gk0vv_106{width:100%}._wrapper_gk0vv_106 ._textInputContainer_gk0vv_109{position:relative}._wrapper_gk0vv_106 ._textInputContainer_gk0vv_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_gk0vv_106 ._textInputContainer_gk0vv_109 ._textInput_gk0vv_109{width:100%;color:#201649;outline:none;display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:1;text-overflow:ellipsis}._wrapper_gk0vv_106 ._textInputContainer_gk0vv_109 ._textInput_gk0vv_109+label{color:#635c80}._wrapper_gk0vv_106 ._textInputContainer_gk0vv_109 ._textInput_gk0vv_109:not(:-moz-placeholder-shown)+label{top:16px}._wrapper_gk0vv_106 ._textInputContainer_gk0vv_109 ._textInput_gk0vv_109:focus+label,._wrapper_gk0vv_106 ._textInputContainer_gk0vv_109 ._textInput_gk0vv_109:not(:placeholder-shown)+label{top:16px}._wrapper_gk0vv_106 ._textInputContainer_gk0vv_109 ._textInput_gk0vv_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_gk0vv_106 ._textInputContainer_gk0vv_109 ._textInput_gk0vv_109:focus+label>span,._wrapper_gk0vv_106 ._textInputContainer_gk0vv_109 ._textInput_gk0vv_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_gk0vv_106 ._textInputContainer_gk0vv_109 ._textInput--medium_gk0vv_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_gk0vv_106 ._textInputContainer_gk0vv_109 ._textInput--medium_gk0vv_153:not(:-moz-placeholder-shown){padding-top:26px;padding-bottom:6px}._wrapper_gk0vv_106 ._textInputContainer_gk0vv_109 ._textInput--medium_gk0vv_153:focus,._wrapper_gk0vv_106 ._textInputContainer_gk0vv_109 ._textInput--medium_gk0vv_153:not(:placeholder-shown){padding-top:26px;padding-bottom:6px}._wrapper_gk0vv_106 ._textInputContainer_gk0vv_109 ._textInput--small_gk0vv_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_gk0vv_106 ._textInputContainer_gk0vv_109 ._textInput--small_gk0vv_173:not(:-moz-placeholder-shown)+label{display:none}._wrapper_gk0vv_106 ._textInputContainer_gk0vv_109 ._textInput--small_gk0vv_173:focus+label,._wrapper_gk0vv_106 ._textInputContainer_gk0vv_109 ._textInput--small_gk0vv_173:not(:placeholder-shown)+label{display:none}._wrapper_gk0vv_106 ._textInputContainer_gk0vv_109 ._textInput--dark_gk0vv_192{background-color:#f4f3f6}._wrapper_gk0vv_106 ._textInputContainer_gk0vv_109 ._textInput--dark_gk0vv_192:hover{background-color:#e9e8ed}._wrapper_gk0vv_106 ._textInputContainer_gk0vv_109 ._textInput--dark_gk0vv_192:disabled{color:#a6a2b6}._wrapper_gk0vv_106 ._textInputContainer_gk0vv_109 ._textInput--dark_gk0vv_192:disabled:hover{background-color:#f4f3f6}._wrapper_gk0vv_106 ._textInputContainer_gk0vv_109 ._textInput--dark_gk0vv_192:disabled+label{color:#a6a2b6}._wrapper_gk0vv_106 ._textInputContainer_gk0vv_109 ._textInput--light_gk0vv_207{border:1px solid #a6a2b6;background-color:#fff}._wrapper_gk0vv_106 ._textInputContainer_gk0vv_109 ._textInput--light_gk0vv_207:hover{border-color:#635c80;background-color:#f4f3f6}._wrapper_gk0vv_106 ._textInputContainer_gk0vv_109 ._textInput--light_gk0vv_207:disabled{border-color:#d2d0db;color:#a6a2b6}._wrapper_gk0vv_106 ._textInputContainer_gk0vv_109 ._textInput--light_gk0vv_207:disabled:hover{background-color:#fff}._wrapper_gk0vv_106 ._textInputContainer_gk0vv_109 ._textInput--light_gk0vv_207:disabled+label{color:#a6a2b6}._wrapper_gk0vv_106 ._textInputContainer_gk0vv_109 ._textInput--error_gk0vv_225{border:1px solid #CC339F;background-color:#fde6f7;color:#201649}._wrapper_gk0vv_106 ._textInputContainer_gk0vv_109 ._textInput--error_gk0vv_225:focus{border-color:#cc339f}._wrapper_gk0vv_106 ._textInputContainer_gk0vv_109 ._textInput--error_gk0vv_225:hover{border-color:#cc339f;background-color:#fde6f7}._wrapper_gk0vv_106 ._textInputContainer_gk0vv_109 ._textInput--error_gk0vv_225:disabled{border-color:#cc339f}._wrapper_gk0vv_106 ._textInputContainer_gk0vv_109 ._textInput--error_gk0vv_225:disabled:hover{background-color:#fde6f7}._wrapper_gk0vv_106 ._textInputContainer--errorMessage_gk0vv_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")}._switch_whn2s_106{position:relative;display:inline-block;width:48px;height:28px}._switch_whn2s_106 ._slider_whn2s_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_whn2s_106 ._slider_whn2s_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_whn2s_106 ._slider_whn2s_112._focusVisible_whn2s_134{box-shadow:inset 0 0 0 1.5px #43adc3!important}._switch_whn2s_106 input{position:absolute;z-index:2;width:48px;height:28px;opacity:0}._switch_whn2s_106 input:not(:disabled){cursor:pointer}._switch_whn2s_106 input:disabled+._slider_whn2s_112{opacity:.4}._switch_whn2s_106 input:checked+._slider_whn2s_112{background-color:#201649;box-shadow:inset 0 0 0 1.5px #201649}._switch_whn2s_106 input:checked+._slider_whn2s_112:before{transform:translate(-2px)}@media (hover: hover){._switch_whn2s_106 input:hover+._slider_whn2s_112{box-shadow:inset 0 0 0 1.5px #635c80}._switch_whn2s_106 input:checked:hover+._slider_whn2s_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")}._wrapper_5e4ej_106{display:flex;height:100%;align-items:center;justify-content:center;padding:16px 0}._wrapper_5e4ej_106 ._loadingSpinner_5e4ej_113{display:inline-block}._wrapper_5e4ej_106 ._loadingSpinner_5e4ej_113:after,._wrapper_5e4ej_106 ._loadingSpinner_5e4ej_113:before{content:"";display:inline-block;width:20px;height:20px;border-radius:50%;animation:_pulse-loader-size_5e4ej_1 1s ease infinite;background:#9c9c9c}._wrapper_5e4ej_106 ._loadingSpinner_5e4ej_113 i{display:inline-block;width:20px;height:20px;border-radius:50%;animation:_pulse-loader-size_5e4ej_1 1s ease infinite;background:#9c9c9c;animation-delay:.5s;transform:scale(.2)}@keyframes _pulse-loader-size_5e4ej_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")}._toggleContainer_fjk9a_107{position:relative;display:inline-flex;flex-direction:column;align-items:center;border-radius:32px}._toggleContainer_fjk9a_107 ._toggleLabel_fjk9a_114{display:flex;width:100%;align-items:center;gap:8px}._toggleContainer_fjk9a_107 ._toggleLabel--outline_fjk9a_120{background:#fff;box-shadow:inset 0 0 0 1px #d2d0db;color:#201649}._toggleContainer_fjk9a_107 ._toggleLabel--outline_fjk9a_120:hover{box-shadow:inset 0 0 0 1px #635c80}._toggleContainer_fjk9a_107 ._toggleLabel--filled_fjk9a_128{background:#f4f3f6;color:#635c80}._toggleContainer_fjk9a_107 ._toggleLabel--filled_fjk9a_128:hover{background:#e9e8ed}._toggleContainer_fjk9a_107 ._toggleLabel_fjk9a_114 svg path{stroke:currentcolor}._toggleContainer_fjk9a_107 ._toggleLabel__labelPill_fjk9a_138{position:absolute;top:calc(100% - 12px);display:none}._toggleContainer_fjk9a_107 ._toggleLabel__labelPill--large_fjk9a_143{display:flex}._toggleContainer_fjk9a_107 ._toggleButton_fjk9a_146{display:none}._toggleContainer_fjk9a_107 ._toggleButton_fjk9a_146:not(:disabled)+._toggleLabel_fjk9a_114{cursor:pointer}._toggleContainer_fjk9a_107 ._toggleButton_fjk9a_146:checked+._toggleLabel--outline_fjk9a_120,._toggleContainer_fjk9a_107 ._toggleButton_fjk9a_146:checked+._toggleLabel--filled_fjk9a_128{background:#f4f3f6;box-shadow:inset 0 0 0 1.5px #201649;color:#201649}._toggleContainer_fjk9a_107 ._toggleButton_fjk9a_146:checked+._toggleLabel--outline_fjk9a_120:hover,._toggleContainer_fjk9a_107 ._toggleButton_fjk9a_146:checked+._toggleLabel--filled_fjk9a_128:hover{background:#e9e8ed;box-shadow:inset 0 0 0 1.5px #635c80;color:#201649}._toggleContainer_fjk9a_107 ._toggleButton_fjk9a_146:checked:disabled+._toggleLabel--outline_fjk9a_120,._toggleContainer_fjk9a_107 ._toggleButton_fjk9a_146:checked:disabled+._toggleLabel--filled_fjk9a_128{box-shadow:inset 0 0 0 1.5px #d2d0db;color:#a6a2b6}._toggleContainer_fjk9a_107 ._toggleButton_fjk9a_146:checked:disabled+._toggleLabel--outline_fjk9a_120:hover,._toggleContainer_fjk9a_107 ._toggleButton_fjk9a_146:checked:disabled+._toggleLabel--filled_fjk9a_128:hover{background:#f4f3f6;box-shadow:inset 0 0 0 1.5px #d2d0db;color:#a6a2b6}._toggleContainer_fjk9a_107 ._toggleButton_fjk9a_146:not(:checked):disabled+._toggleLabel--outline_fjk9a_120{background:#fff;box-shadow:inset 0 0 0 1px #d2d0db;color:#a6a2b6}._toggleContainer_fjk9a_107 ._toggleButton_fjk9a_146:not(:checked):disabled+._toggleLabel--filled_fjk9a_128{background:#f4f3f6;color:#a6a2b6}._toggleContainer--default_fjk9a_184 ._toggleLabel_fjk9a_114{padding:8px 12px;border-radius:32px}._toggleContainer--medium_fjk9a_188 ._toggleLabel_fjk9a_114{padding:8px 12px;border-radius:8px}._toggleContainer--medium_fjk9a_188 ._toggleLabel--horizontal_fjk9a_192{padding:4px 12px 4px 8px}._toggleContainer--medium_fjk9a_188 ._toggleLabel--horizontal_fjk9a_192 svg{width:28px;height:28px}._toggleContainer--medium_fjk9a_188 ._toggleLabel--vertical_fjk9a_199{flex-direction:column;padding:4px 8px;gap:0}._toggleContainer--medium_fjk9a_188 ._toggleLabel--vertical__labelPill_fjk9a_204{position:absolute;border:solid red;transform:translateY(150%)}._toggleContainer--large_fjk9a_209 ._toggleLabel_fjk9a_114{height:48px;padding:8px 16px;border-radius:12px}._toggleContainer--large_fjk9a_209 ._toggleLabel--horizontal_fjk9a_192,._toggleContainer--large_fjk9a_209 ._toggleLabel--vertical_fjk9a_199{padding:8px 16px 8px 12px}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display: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_jozb6_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_jozb6_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_vkinc_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_1axen_106{display:flex;align-items:center;padding-bottom:12px;color:inherit;gap:8px}._title_1axen_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")}._actionBar_1mw3m_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")}._actionBarCta_140ha_106{display:flex;align-items:center;padding:12px;gap:16px}._actionBarCta__text_140ha_112{flex-grow:1;color:#635c80;text-wrap:wrap}._actionBarCta__button_140ha_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_1yvv7_106{display:flex;padding:12px 16px;gap:24px}@media (width <= 450px){._actionBarList_1yvv7_106{justify-content:space-between;padding:8px 12px;gap:0}._actionBarList__actionItem_1yvv7_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")}._actionItem_1s6z8_106{display:flex;align-items:center;justify-content:center;background-color:#fff;color:#635c80;gap:4px}._actionItem_1s6z8_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")}._root_sfo6d_106{display:flex;width:100%;justify-content:space-between;padding:8px 12px;background-color:#fff;cursor:pointer;gap:12px}._root_sfo6d_106:hover{background-color:#f4f3f6}@media (hover: none) and (pointer: coarse){._root_sfo6d_106:hover{background-color:#fff}}._root_sfo6d_106 ._thumbnailWrapper_sfo6d_123{position:relative}._root_sfo6d_106 ._thumbnailWrapper_sfo6d_123 ._thumbnail_sfo6d_123{flex-shrink:0;border:1px solid #e9e8ed}._root_sfo6d_106 ._thumbnailWrapper_sfo6d_123 ._iconWrapper_sfo6d_130{display:flex;width:56px;height:56px;flex-shrink:0;align-items:center;justify-content:center;border-radius:4px;background:#f4f3f6;color:#635c80}._root_sfo6d_106 ._thumbnailWrapper_sfo6d_123 ._secondaryThumbnail_sfo6d_141{position:absolute;right:-5px;bottom:-5px;width:32px;height:32px;border:1px solid #e9e8ed}._root_sfo6d_106 ._thumbnailWrapper_sfo6d_123 ._circular_sfo6d_149{border-radius:999px}._root_sfo6d_106 ._detail_sfo6d_152{display:flex;flex-direction:column;flex-grow:1;justify-content:center;color:#635c80;gap:2px}._root_sfo6d_106 ._detail_sfo6d_152 ._title_sfo6d_160{display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:1;text-overflow:ellipsis}._root_sfo6d_106 ._detail_sfo6d_152 ._notificationText_sfo6d_167{color:#201649;line-height:20px;display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:2;text-overflow:ellipsis}._unread_sfo6d_177{background-color:#fff9e5}@media (hover: none) and (pointer: coarse){._unread_sfo6d_177:hover{background-color:#fff9e5}}._unread_sfo6d_177 ._bubble_sfo6d_185{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")}._menuItem_pqaol_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_pqaol_106 ._highlightFrame_pqaol_120{display:flex;flex:1;align-items:center;padding:8px;border-radius:8px;gap:8px}._menuItem_pqaol_106 ._rightIcon_pqaol_128{display:inherit;margin-left:auto;color:#635c80}._menuItem--selected_pqaol_133 ._leftIcon_pqaol_133 path{stroke:#738c00}._menuItem--selected_pqaol_133 ._highlightFrame_pqaol_120{background-color:#f2fbc4}@media (hover: hover) and (pointer: fine){._menuItem--selected_pqaol_133:hover{color:var(--menuitem-selected-hover-color)}}._menuItem--compact_pqaol_144{height:40px}@media (hover: hover) and (pointer: fine){._menuItem_pqaol_106:not(._menuItem--selected_pqaol_133):hover ._highlightFrame_pqaol_120{background-color:#f4f3f6}._menuItem_pqaol_106:not(._menuItem--selected_pqaol_133):hover ._highlightFrame--compact_pqaol_151{height:40px}}._menuItem_pqaol_106:not(._menuItem--selected_pqaol_133):active ._highlightFrame_pqaol_120{background-color:#f4f3f6}._menuItem_pqaol_106:not(._menuItem--selected_pqaol_133):active ._highlightFrame--compact_pqaol_151{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")}._navBar_smoij_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_w254q_106 ._navItem_w254q_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_w254q_106 ._navItem_w254q_106{padding:0 8px 8px}}._listItem_w254q_106 ._navItem_w254q_106 ._selector_w254q_120{height:4px;align-self:stretch;border-radius:0 0 4px 4px;margin-bottom:4px;background-color:#cae85d;visibility:hidden}._listItem_w254q_106 ._navItem--active_w254q_128{padding-right:4px;padding-left:4px;color:#738c00}._listItem_w254q_106 ._navItem--active_w254q_128 ._selector_w254q_120{height:4px;align-self:stretch;border-radius:0 0 4px 4px;background-color:#cae85d;visibility:visible}._label_w254q_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")}._emptyState_eo42d_106{display:flex;flex-direction:column;align-items:center;padding:24px 16px}._emptyState__text_eo42d_112{display:flex;flex-direction:column;text-align:center}._emptyState__secondaryText_eo42d_117{color:#635c80}._emptyState__buttons_eo42d_120{display:flex;width:100%;flex-direction:column;gap:8px}._emptyState--small_eo42d_126{gap:16px}._emptyState--small__text_eo42d_129{gap:4px}._emptyState--medium_eo42d_132{gap:24px}._emptyState--medium__text_eo42d_135{gap:8px}._emptyState--large_eo42d_138{gap:24px}._emptyState--large__text_eo42d_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")}._notice__content_160kh_106{--notice-bg-color: #f4f3f6;display:flex;flex-direction:column;align-items:flex-start;background-color:var(--notice-bg-color)}._notice__header_160kh_113{display:flex;width:100%;align-items:center;justify-content:space-between}._notice__iconHeadline_160kh_119{display:flex;align-items:center;gap:8px}._notice--small_160kh_124{gap:4px}._notice--medium_160kh_127{gap:8px}._notice--sticky_160kh_130{padding:16px}._notice--embedded_160kh_133{padding:8px;border-radius:8px}._notice--pink_160kh_137{--notice-bg-color: #ff9de2}._notice--green_160kh_140{--notice-bg-color: #f2fbc4}._notice--grey_160kh_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")}@keyframes _snackbarbottom_w5vob_1{0%{transform:translateY(160%)}45%{transform:translateY(-12%)}70%{transform:translateY(4%)}90%,to{transform:translateY(0)}}._animation--enter_w5vob_120{transform:translateY(100%)}._animation--enter-active_w5vob_124{animation:_snackbarbottom_w5vob_1 .6s;transform:translateY(0)}._animation--exit_w5vob_129{transform:translateY(0)}._animation--exit-active_w5vob_133{animation:_snackbarbottom_w5vob_1 reverse .6s;transform:translateY(160%)}._snackbar_w5vob_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_w5vob_138{right:0;bottom:calc(86px + env(safe-area-inset-bottom));left:0;margin:auto}}._snackbar__left_w5vob_162{display:flex;flex-grow:1;align-items:center;gap:8px}._snackbar__right_w5vob_168{display:flex;align-items:center;gap:8px}._snackbar__textLabel_w5vob_173{overflow:hidden;max-height:40px;flex-grow:1;color:#fff;overflow-wrap:break-word;white-space:normal}._snackbar__textButton_w5vob_181{text-wrap:nowrap}._snackbar__dismiss_w5vob_184{color:#fff}._snackbar__icon_w5vob_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")}._fieldset_12brx_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")}._radiobuttoncluster_1jxdz_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")}._toggleGroupStory_196oh_106{display:flex;flex-wrap:wrap;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")}._switcherToggle_19pqt_107{display:inline-flex;width:100%;justify-content:space-between;padding:4px;border-radius:32px;background:#f4f3f6}._switcherToggle_19pqt_107 ._input_19pqt_115{display:none}._switcherToggle_19pqt_107 ._input_19pqt_115:not(:checked)+._label_19pqt_118{background-color:transparent;color:#635c80}._switcherToggle_19pqt_107 ._input_19pqt_115:not(:checked)+._label_19pqt_118:hover{background:#e9e8ed}._switcherToggle_19pqt_107 ._label_19pqt_118{width:100%;flex:1 0 0;padding:8px;border-radius:32px;cursor:pointer;text-align:center;transition:background-color .1s,color .1s}._switcherToggle_19pqt_107 ._label_19pqt_118 p{display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:1;text-overflow:ellipsis;display:block;white-space:nowrap}._switcherToggle--filled_19pqt_143 ._input_19pqt_115:checked+._label_19pqt_118{background:#4c4566e6;color:#fff}._switcherToggle--filled_19pqt_143 ._input_19pqt_115:checked+._label_19pqt_118:hover{background:#21164ae6}._switcherToggle--outline_19pqt_150 ._input_19pqt_115:checked+._label_19pqt_118{background:#fff;box-shadow:inset 0 0 0 1.5px #201649;color:#201649}._switcherToggle--outline_19pqt_150 ._input_19pqt_115:checked+._label_19pqt_118:hover{background:#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")}._toggleInput_1fozv_106{display:flex;width:100%;align-items:center;padding:8px 16px;background-color:#fff;color:#635c80;cursor:pointer;gap:12px}._toggleInput_1fozv_106 svg{flex-shrink:0}._toggleInput_1fozv_106 ._textWrapper_1fozv_119{display:flex;flex-direction:column;flex-grow:1}._toggleInput_1fozv_106 ._textWrapper--withDescription_1fozv_124{gap:4px}._toggleInput_1fozv_106 ._switch_1fozv_127{flex-shrink:0}._toggleInput--checked_1fozv_130{color:#201649}._toggleInput--disabled_1fozv_133{cursor:unset}._toggleInput--withBorder_1fozv_136{padding:12px 16px;border-radius:16px;box-shadow:inset 0 0 0 1px #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")}._tabsCard_1o18q_106{padding:0}._tabsCard_1o18q_106 ._tabs_1o18q_106{display:flex;flex-direction:column;gap:16px}._tabsCard_1o18q_106 ._label_1o18q_114{color:#635c80;text-align:center}._tabsCard_1o18q_106 ._tabsList_1o18q_118{display:flex;overflow:auto;gap:16px;scrollbar-width:none}._tabsCard_1o18q_106 ._tabsList_1o18q_118:hover{scrollbar-color:auto}._tabsCard_1o18q_106 ._tabsList_1o18q_118 button{position:relative;display:flex;min-height:40px;align-items:center;justify-content:center;padding:12px 16px 8px;cursor:pointer}._tabsCard_1o18q_106 ._tabsList_1o18q_118 button[aria-selected=true] ._selectedTab_1o18q_136{position:absolute;bottom:0;left:0;width:100%;height:2px;border-radius:2px 2px 0 0;background:#201649}._tabsCard_1o18q_106 ._tabsList_1o18q_118 button[aria-selected=true] ._label_1o18q_114{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;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")}._root_3yqek_106{position:relative;width:100%;max-width:170px;height:100%;cursor:pointer}._root--aggregator_3yqek_113{max-width:156px}._root__content_3yqek_116{display:flex;height:100%;flex-direction:column}._root__bookmark_3yqek_121{position:absolute;z-index:1000;top:8px;right:8px}._root__header_3yqek_127{position:relative;overflow:hidden;width:100%;border-radius:8px;aspect-ratio:4/3}._root__header__reserved_3yqek_134{position:absolute;display:flex;width:100%;height:100%;align-items:center;justify-content:center;background:#ffffffb3;opacity:0}._root__header__reserved--visible_3yqek_144{opacity:1}._root__header__reserved__box_3yqek_147{display:flex;align-items:center;justify-content:center;padding:8px;border-radius:4px;background:#4c4566e6;color:#fff}._root__header__image_3yqek_156{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}._root__info_3yqek_161{display:flex;flex:1;flex-direction:column;padding:8px 4px 0}._root__info__top_3yqek_167{flex:1}._root__info__price_3yqek_170{color:#01819c}._root__info__price--reserved_3yqek_173{color:#a6a2b6}._root__info__title_3yqek_176{display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:2;text-overflow:ellipsis;color:#201649}._root__info__timeStamp_3yqek_184{padding-top:4px;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")}._legend_1as3c_106{display:flex;flex-direction:column;padding-bottom:12px;gap:8px}._legend_1as3c_106 ._text_1as3c_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")}._overlay_du31f_106{position:fixed;z-index:10000;top:0;left:0;width:100%;height:100%;animation:_fade-in_du31f_1 .5s ease-out forwards;background:#000}._sheet_du31f_117{position:fixed;z-index:10001;bottom:0;left:0;width:100%;padding:0;border:none;animation:_slide-up_du31f_1 .5s forwards;background:#fff;border-top-left-radius:16px;border-top-right-radius:16px}._sheet_du31f_117 ._sheetWrapper_du31f_130{display:flex;flex-direction:column;background-color:transparent;box-shadow:0 6px 32px #20164933;color:#201649;outline:none}._sheet_du31f_117 ._sheetWrapper_du31f_130 ._sheetBody_du31f_138{padding:4px 16px}._sheet_du31f_117 ._sheetWrapper_du31f_130 ._sheetHeader_du31f_141{padding:24px 16px 12px}._sheet_du31f_117 ._sheetWrapper_du31f_130 ._sheetHeader_du31f_141 header{padding:0}._sheet_du31f_117 ._sheetWrapper_du31f_130 ._sheetHeader_du31f_141 header svg path{stroke:#635c80}._sheet_du31f_117 ._sheetWrapper_du31f_130 ._sheetHeader_du31f_141 header h3{color:#201649}._sheet_du31f_117 ._sheetWrapper_du31f_130 ._sheetFooter_du31f_153{display:flex;flex-direction:column;align-items:center;justify-content:center;padding:8px 12px 32px;gap:12px}@keyframes _slide-up_du31f_1{0%{transform:translateY(100%)}to{transform:translateY(0)}}@keyframes _fade-in_du31f_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")}._backdrop_x4szp_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_1a7hy_106{position:fixed;z-index:1300;display:flex;align-items:center;justify-content:center;top:0;right:0;bottom:0;left:0}._modal_1a7hy_106 ._modalWrapper_1a7hy_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_1a7hy_106 ._modalWrapper_1a7hy_114{max-width:560px}}._modal_1a7hy_106 ._modalWrapper_1a7hy_114 ._modalHeader_1a7hy_130{position:sticky;z-index:1;top:0;padding:16px;background-color:#fff}._modal_1a7hy_106 ._modalWrapper_1a7hy_114 ._modalHeader_1a7hy_130 h3{color:#201649}._modal_1a7hy_106 ._modalWrapper_1a7hy_114 ._modalHeader_1a7hy_130 header{padding:0}._modal_1a7hy_106 ._modalWrapper_1a7hy_114 header button:first-child{display:none}._modal_1a7hy_106 ._modalWrapper_1a7hy_114 ._crossCircle_1a7hy_146 svg path{stroke:#635c80}._modal_1a7hy_106 ._modalFooter_1a7hy_149{display:flex;flex-direction:row;align-items:center;justify-content:space-between;margin:12px 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")}._base_1egyw_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")}._backdrop_1dehl_106{position:fixed;z-index:-1;background:#0003;top:0;right:0;bottom:0;left:0}@media screen and (max-width: 689px){._backdrop_1dehl_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_1ycdc_106{position:fixed;z-index:1300;display:flex;align-items:center;justify-content:center;top:0;right:0;bottom:0;left:0}._sheet_1ycdc_106 ._sheetWrapper_1ycdc_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_1ycdc_106 ._sheetWrapper_1ycdc_114{border-radius:16px}}._sheet_1ycdc_106 ._sheetWrapper_1ycdc_114 ._sheetHeader_1ycdc_126{padding:16px}._sheet_1ycdc_106 ._sheetWrapper_1ycdc_114 ._sheetHeader_1ycdc_126 header{padding:0}._sheet_1ycdc_106 ._sheetWrapper_1ycdc_114 header button:first-child{display:none}@media screen and (max-width: 689px){._sheet_1ycdc_106 ._sheetWrapper_1ycdc_114{width:100%;min-width:auto;height:100%}._sheet_1ycdc_106 ._sheetWrapper_1ycdc_114 header button:last-child{display:none}._sheet_1ycdc_106 ._sheetWrapper_1ycdc_114 header button:first-child{display:block}}._sheet_1ycdc_106 ._sheetFooter_1ycdc_148{display:none;flex-direction:row;align-items:center;justify-content:space-between;margin:16px;gap:16px}._sheet_1ycdc_106 ._sheetFooter--alwaysVisible_1ycdc_156{display:flex}@media screen and (min-width: 690px){._sheet_1ycdc_106 ._sheetFooter_1ycdc_148{display:flex}}
|
|
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")}._badgeIcon--size-small_1tg9r_106{width:20px;height:20px}._badgeIcon--size-medium_1tg9r_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_1cmzb_106{position:relative;display:inline-block}._badge__list_1cmzb_110{position:absolute;top:-6px;right:-6px;display:inline-flex}._badge__icon_1cmzb_116:nth-child(2),._badge__icon_1cmzb_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")}._h1_1aq3h_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_1aq3h_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_1aq3h_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_1aq3h_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_1aq3h_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_1aq3h_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_1aq3h_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_1aq3h_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_1aq3h_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_1aq3h_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_1aq3h_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_1aq3h_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_1aq3h_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_1aq3h_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_1aq3h_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_1aq3h_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_1aq3h_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")}._iconComponent_1qidc_106{display:block}._iconComponent_1qidc_106 path{stroke:currentcolor}._iconComponent--filled_1qidc_112 path{fill:currentcolor;stroke: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")}._bubbleContent_1jb4w_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_1jb4w_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_1jb4w_136{position:absolute;z-index:auto;top:6px;right:6px;transform:translate(50%,-50%)}._bubble--empty_1jb4w_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")}._baseBtn_p01sj_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")}._textButton_1cxnl_106{display:flex;height:1.5rem;min-height:1.5rem;align-items:center;justify-content:center;gap:8px}._textButton--green_1cxnl_114{color:#cae85d}._textButton--green_1cxnl_114:hover{color:#b5d622}._textButton--blue_1cxnl_120{color:#01819c}._textButton--blue_1cxnl_120:hover{color:#98cbd6}._textButton--deepPurple_1cxnl_126{color:#635c80}._textButton--deepPurple_1cxnl_126:hover{color:#201649}._textButton_1cxnl_106:active{background:none}._textButton_1cxnl_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_1bpiv_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_1bpiv_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")}._feedItemCategory_9fugn_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_9fugn_114{background-color:#cae85d;color:#201649}._feedItemCategory--closedPost_9fugn_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")}._labelPill_znk1o_106{display:inline-flex;align-items:center;justify-content:center}._labelPill__shape--pill_znk1o_111{padding:4px 8px;border-radius:16px}._labelPill__shape--pill--small_znk1o_115{padding:2px 8px}._labelPill__shape--pill--teal_znk1o_118{background:#01819c;color:#fff}._labelPill__shape--pill--lavender_znk1o_122{background:#e8e3ff;color:#4d17e5}._labelPill__shape--tile_znk1o_126{padding:8px;border-radius:4px;background:#21164ae6;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")}._sticker_u26rd_106{display:flex;align-items:center;justify-content:center;border-radius:999px;background-color:var(--sticker-bg-color)}._sticker--color-green_u26rd_113{--sticker-bg-color: #cae85d}._sticker--color-pink_u26rd_116{--sticker-bg-color: #ff9de2}._sticker--color-lavender_u26rd_119{--sticker-bg-color: #7c5bff}._sticker--color-lavender_u26rd_119 path{stroke:#fff}._sticker--color-teal_u26rd_125{--sticker-bg-color: #01819C}._sticker--color-teal_u26rd_125 path{stroke:#fff}._sticker--color-orange_u26rd_131{--sticker-bg-color: #ebaa77}._sticker--color-grey_u26rd_134{--sticker-bg-color: #d2d0db}._sticker--size-small_u26rd_137{width:48px;height:48px}._sticker--size-medium_u26rd_141{width:56px;height:56px}._sticker--size-large_u26rd_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")}._button_7w51h_106{padding:2px;border-radius:4px;background:#ffffffb3}._button--bookmarked_7w51h_111,._button_7w51h_106:hover{background:#fff}._button__icon_7w51h_114 path{color:#635c80}._button__icon--bookmarked_7w51h_117 path{color:#01819c;fill:#01819c}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display: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_kjm5h_106{display:inline-flex;height:48px;align-items:center;justify-content:center;padding:0 24px;border-radius:24px;color:#201649;cursor:pointer;gap:8px;line-height:20px}._primaryButton--fullWidth_kjm5h_118{width:100%}._primaryButton--large_kjm5h_121{height:40px;padding:0 16px;gap:4px}._primaryButton--medium_kjm5h_126,._primaryButton--small_kjm5h_126{height:32px;padding:0 12px;gap:4px}._primaryButton--highlight_kjm5h_131{background-color:#ff9de2}._primaryButton--highlight_kjm5h_131:hover{background-color:#ec7bcb}._primaryButton--primary_kjm5h_137{background-color:#cae85d}._primaryButton--primary_kjm5h_137:hover{background-color:#b5d622}._primaryButton--transparent_kjm5h_143{border:1px solid #201649;background-color:transparent}._primaryButton--transparent_kjm5h_143:hover{border-color:#ec7bcb;background-color:#ec7bcb}._primaryButton--loading_kjm5h_151 span{cursor:default;visibility:hidden}._primaryButton_kjm5h_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_1dapg_106{display:inline-flex;height:48px;align-items:center;justify-content:center;padding:0 24px;border-radius:24px;color:#201649;cursor:pointer;gap:8px;line-height:20px}._secondaryButton--fullWidth_1dapg_118{width:100%}._secondaryButton--large_1dapg_121{height:40px;padding:0 16px;gap:4px}._secondaryButton--medium_1dapg_126,._secondaryButton--small_1dapg_126{height:32px;padding:0 12px;gap:4px}._secondaryButton--green_1dapg_131{background-color:#f2fbc4}._secondaryButton--green_1dapg_131:hover{background-color:#cae85d}._secondaryButton--pink_1dapg_137{background-color:#fde6f7;color:#b22b8a}._secondaryButton--pink_1dapg_137:hover{background-color:#ff9de2;color:#201649}._secondaryButton--grey_1dapg_145{background-color:#f4f3f6}._secondaryButton--grey_1dapg_145:hover{background-color:#e9e8ed}._secondaryButton--teal_1dapg_151{background-color:#98cbd6}._secondaryButton--teal_1dapg_151:hover{background-color:#e0f5f9}._secondaryButton--lavender_1dapg_157{background-color:#e8e3ff;color:#4d17e5}._secondaryButton--lavender_1dapg_157:hover{background-color:#c1b7ea}._secondaryButton--orange_1dapg_164{background-color:#ebaa77}._secondaryButton--orange_1dapg_164:hover{background-color:#dc8541}._secondaryButton--loading_1dapg_170 span{cursor:default;visibility:hidden}._secondaryButton_1dapg_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")}._tertiaryButton_wmygv_106{display:inline-flex;height:48px;align-items:center;justify-content:center;padding:0 24px;border-radius:24px;background-color:transparent;color:#201649;cursor:pointer;gap:8px;line-height:20px}._tertiaryButton--fullWidth_wmygv_119{width:100%}._tertiaryButton--large_wmygv_122{height:40px;padding:0 16px;gap:4px}._tertiaryButton--medium_wmygv_127,._tertiaryButton--small_wmygv_127{height:32px;padding:0 12px;gap:4px}._tertiaryButton--green_wmygv_132{border:1px solid #738C00;color:#738c00}._tertiaryButton--green_wmygv_132:hover{border-color:#b5d622;background-color:#f2fbc4}._tertiaryButton--green_wmygv_132:active{border-color:#b5d622;background-color:transparent}._tertiaryButton--pink_wmygv_144{border:1px solid #CC339F;color:#b22b8a}._tertiaryButton--pink_wmygv_144:hover{border-color:#ec7bcb;background-color:#fde6f7}._tertiaryButton--pink_wmygv_144:active{border-color:#ec7bcb;background-color:transparent}._tertiaryButton--blue_wmygv_156{border:1px solid #01819C;color:#01819c}._tertiaryButton--blue_wmygv_156:hover{border-color:#43adc3;background-color:#e0f5f9}._tertiaryButton--blue_wmygv_156:active{border-color:#43adc3;background-color:transparent}._tertiaryButton--deepPurple_wmygv_168{border:1px solid #d2d0db;color:#201649}._tertiaryButton--deepPurple_wmygv_168:hover{border-color:#635c80;background-color:#f4f3f6}._tertiaryButton--deepPurple_wmygv_168:active{border-color:#a6a2b6;background-color:transparent}._tertiaryButton--loading_wmygv_180 span{cursor:default;visibility:hidden}._tertiaryButton_wmygv_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")}._iconButton_1xq9c_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_1xq9c_106:disabled{background:none;cursor:default}._iconButton_1xq9c_106:hover,._iconButton_1xq9c_106:active{background:none}._iconButton--circular_1xq9c_127{border-radius:999px;background:#cae85d}._iconButton--circular_1xq9c_127:disabled{background:#fff}._iconButton--circular_1xq9c_127:hover{background:#b5d622}._iconButton--circular_1xq9c_127:active{background:#cae85d}._iconButton--circular-small_1xq9c_140{width:40px;height:40px}._iconButton--circular-medium_1xq9c_144{width:48px;height:48px}._iconButton--circular-large_1xq9c_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")}._feedTile_1m22x_106{display:flex;flex-direction:column;align-items: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_1m22x_118{flex-shrink:0}._feedTile_1m22x_106:hover{border-color:#635c80}._feedTile_1m22x_106:active{border-color:#f4f3f6;background-color:#f4f3f6}@media screen and (max-width: 799px){._feedTile_1m22x_106{flex-flow:row wrap;gap:8px;text-align:left}._feedTile__text_1m22x_134{width:-moz-min-content;width:min-content;flex-grow:1}}._feedTile--fullWidth_1m22x_139{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")}._menuTile_1f5by_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_1f5by_119{width:100%}._menuTile--icon_1f5by_122{padding:4px 4px 8px}._menuTile__value_1f5by_126{color:var(--tile-value-color)}._menuTile_1f5by_106:hover{--tile-bg-color: #e9e8ed}._menuTile_1f5by_106:focus{--tile-bg-color: #d2d0db}._menuTile_1f5by_106:disabled{--tile-color: #a6a2b6;--tile-value-color: #a6a2b6;cursor:default}._menuTile_1f5by_106:disabled:hover,._menuTile_1f5by_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")}._poiProfileTile_te9e5_106{--poi-profile-tile-color: #635C80;display:flex;flex-direction:column;align-items:center;justify-content:center;padding:8px 4px;border-radius:8px;gap:2px}._poiProfileTile__icon_te9e5_116{flex-shrink:0}._poiProfileTile__icon_te9e5_116 path{stroke:var(--poi-profile-tile-color)}._poiProfileTile__label_te9e5_122{color:var(--poi-profile-tile-color);text-align:center}._poiProfileTile--selected_te9e5_126{--poi-profile-tile-color: #201649}._poiProfileTile_te9e5_106:hover{background-color:#f4f3f6}._poiProfileTile_te9e5_106:active{background-color:#e9e8ed}._poiProfileTile_te9e5_106:disabled{--poi-profile-tile-color: #a6a2b6}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display: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_1a2he_106{display:flex;flex-direction:column;gap:8px}._bodyText--notClickable_1a2he_111{cursor:default}._bodyText--post_1a2he_114{padding:8px 12px 0;margin-bottom:8px}._bodyText--modal_1a2he_118{padding:12px 16px}._bodyText_1a2he_106 button{justify-content:flex-start}@media screen and (max-width: 689px){._bodyText__text--collapsed_1a2he_125{display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:3;text-overflow:ellipsis}}._bodyText__textButton_1a2he_133{display:block}@media screen and (min-width: 690px){._bodyText__textButton_1a2he_133{display:none}}._bodyText_1a2he_106 a{color:#201649}._bodyText__showMore_1a2he_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")}._wrapper_1xct2_106{display:flex;width:100%;height:100%;align-items:center;justify-content:center;border-radius:8px}._wrapper_1xct2_106 path{stroke:#635c80}._wrapper--large_1xct2_117{background-color:#d2d0db}._wrapper--small_1xct2_120{border:1px solid #d2d0db;background-color:#f4f3f6}._wrapper--iconWrapper_1xct2_124{width:72px;height:72px;border-radius:999px}._wrapper_1xct2_106._wrapper--iconWrapper_1xct2_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")}._root_9okik_106{position:relative;overflow:hidden;flex-shrink:0;border:solid 1px #d2d0db;background-color:#d2d0db}._root--24_9okik_113{width:24px;height:24px}._root--28_9okik_117{width:28px;height:28px}._root--32_9okik_121{width:32px;height:32px}._root--40_9okik_125{width:40px;height:40px}._root--48_9okik_129{width:48px;height:48px}._root--56_9okik_133{width:56px;height:56px}._root--64_9okik_137{width:64px;height:64px}._root--80_9okik_141{width:80px;height:80px}._root--120_9okik_145{width:120px;height:120px}._root--280_9okik_149{width:280px;height:280px}._root--square_9okik_153._root--24_9okik_113,._root--square_9okik_153._root--32_9okik_121{border-radius:4px}._root--square_9okik_153._root--40_9okik_125,._root--square_9okik_153._root--48_9okik_129{border-radius:8px}._root--square_9okik_153._root--56_9okik_133,._root--square_9okik_153._root--64_9okik_137{border-radius:12px}._root--square_9okik_153._root--80_9okik_141,._root--square_9okik_153._root--120_9okik_145{border-radius:16px}._root--circular_9okik_165{border-radius:50%}._root--isPlaceholder_9okik_168:before{position:absolute;z-index:1;width:100%;height:100%;background-color:#d2d0db;content:"";opacity:.4}._root_9okik_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")}._wrapper_1s2ue_106{display:flex;width:-moz-fit-content;width:fit-content;flex-direction:column;align-items:center;justify-content:center;gap:4px}._wrapper_1s2ue_106 ._isPlaceholder_1s2ue_114{display:flex;width:64px;height:64px;align-items:center;justify-content:center;border:1px solid #d2d0db;background-color:#f4f3f6}._wrapper_1s2ue_106 ._isPlaceholder_1s2ue_114 svg path{stroke:#635c80}._wrapper_1s2ue_106 ._square_1s2ue_126{border-radius:8px}._wrapper_1s2ue_106 ._circular_1s2ue_129{border-radius:50%}._wrapper_1s2ue_106 ._label_1s2ue_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_nv8dz_106{position:relative;display:inline-block}._thumbnailWrapper__thumbnail_nv8dz_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")}._dividerContainer_1hu4q_106{display:flex;align-items:center}._dividerLine_1hu4q_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")}._root_lisxm_106{position:relative;width:100%}._toggle_lisxm_111{display:flex;width:100%;flex-direction:row;justify-content:space-between;padding:16px;border-radius:16px;background:#fff;cursor:pointer}._toggle_lisxm_111 ._label_lisxm_121{display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:1;text-overflow:ellipsis;color:#635c80}._toggle--dark_lisxm_129{border:1px solid #f4f3f6;background-color:#f4f3f6}._toggle--dark_lisxm_129:hover{background-color:#e9e8ed}._toggle--dark_lisxm_129._disabled_lisxm_136{color:#a6a2b6}._toggle--dark_lisxm_129._disabled_lisxm_136:hover{background-color:#f4f3f6}._toggle--dark_lisxm_129._disabled_lisxm_136 ._label_lisxm_121{color:#a6a2b6}._toggle--light_lisxm_145{border:1px solid #a6a2b6;background-color:#fff}._toggle--light_lisxm_145:hover{border-color:#635c80;background-color:#f4f3f6}._toggle--light_lisxm_145._disabled_lisxm_136{border-color:#d2d0db;color:#a6a2b6}._toggle--light_lisxm_145._disabled_lisxm_136:hover{background-color:#fff}._toggle--light_lisxm_145._disabled_lisxm_136 ._label_lisxm_121{color:#a6a2b6}._toggle_lisxm_111._filled_lisxm_163 ._label_lisxm_121{color:#201649}._toggle_lisxm_111._error_lisxm_166{border-color:#cc339f;background:#fde6f7}._toggle_lisxm_111._error_lisxm_166:focus,._toggle_lisxm_111._error_lisxm_166:hover{border-color:#cc339f;background:#fde6f7}._icon_lisxm_175{transition:transform .3s}._icon_lisxm_175._expanded_lisxm_179{transform:rotate(180deg)}._hidden_lisxm_183{display:none}._option_lisxm_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_lisxm_187:hover{background:#f4f3f6;color:#201649}._option_lisxm_187._selected_lisxm_211{background:#f2fbc4;color:#201649}._option_lisxm_187._selected_lisxm_211:hover{color:#635c80}._dropdown_lisxm_219{position:absolute;z-index:1;overflow:hidden;width:100%;border-radius:8px;background:#fff;box-shadow:0 4px 20px #2016491a}._errorMessage_lisxm_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")}._checkboxInput_ukmtn_107{display:flex;align-items:center;background:#fff;gap:16px}._checkboxInput__label_ukmtn_113{display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:1;text-overflow:ellipsis;flex-grow:1}._checkboxInput_ukmtn_107:not([aria-disabled=true]){cursor:pointer}._checkboxInput__checkbox_ukmtn_124{position:relative;display:flex;flex-shrink:0;align-items:center;justify-content:center;order:2;border-radius:8px}._checkboxInput__checkbox--medium_ukmtn_133{width:28px;height:28px}._checkboxInput__checkbox--small_ukmtn_137,._checkboxInput__checkbox--tiny_ukmtn_137{width:24px;height:24px}._checkboxInput__input_ukmtn_141,._checkboxInput_ukmtn_107 input[type=checkbox]{position:relative;z-index:2;display:flex;width:100%;height:100%;flex-shrink:0;align-items:center;justify-content:center;border:2px solid #a6a2b6;border-radius:8px;background:#fff;transition:.4s}._checkboxInput__input_ukmtn_141~span,._checkboxInput_ukmtn_107 input[type=checkbox]~span{color:#635c80}._checkboxInput__input_ukmtn_141:disabled,._checkboxInput_ukmtn_107 input[type=checkbox]:disabled{border-color:#d2d0db;background:#f4f3f6}._checkboxInput__input_ukmtn_141:disabled~span,._checkboxInput_ukmtn_107 input[type=checkbox]:disabled~span{color:#a6a2b6}._checkboxInput__input_ukmtn_141:checked,._checkboxInput_ukmtn_107 input[type=checkbox]:checked{z-index:1;border-color:#201649;background-color:#201649;transition:0s}._checkboxInput__input_ukmtn_141:checked~span,._checkboxInput_ukmtn_107 input[type=checkbox]:checked~span{color:#201649}._checkboxInput__input_ukmtn_141:checked:disabled,._checkboxInput_ukmtn_107 input[type=checkbox]:checked:disabled{border-color:#a6a2b6;background-color:#a6a2b6}._checkboxInput__input_ukmtn_141:checked:disabled~span,._checkboxInput_ukmtn_107 input[type=checkbox]:checked:disabled~span{color:#a6a2b6}._checkboxInput__input_ukmtn_141:hover:not(:disabled,:checked),._checkboxInput_ukmtn_107 input[type=checkbox]:hover:not(:disabled,:checked){border-color:#635c80;background-color:#f4f3f6}._checkboxInput__input_ukmtn_141:hover:not(:disabled),._checkboxInput_ukmtn_107 input[type=checkbox]:hover:not(:disabled){cursor:pointer}._checkboxInput__tick_ukmtn_198{position:absolute;z-index:1;width:20px;height:20px}._checkboxInput__tick_ukmtn_198 path{stroke:#fff;stroke-width:2px}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._inputContainer_byy0l_107{display:inline-flex;width:100%;flex-direction:column;align-items:center;gap:4px}._inputContainer_byy0l_107 ._input_byy0l_107{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;position:absolute;z-index:2;width:56px;height:24px;background:transparent;color:#201649;outline:none;text-align:center;transform:translate(-8px,16px)}._inputContainer_byy0l_107 ._input_byy0l_107::-moz-placeholder{color:#635c80}._inputContainer_byy0l_107 ._input_byy0l_107::placeholder{color:#635c80}._inputContainer_byy0l_107 ._input_byy0l_107:focus::-moz-placeholder{color:transparent}._inputContainer_byy0l_107 ._input_byy0l_107:focus::placeholder{color:transparent}._inputContainer_byy0l_107 ._input_byy0l_107:focus+label,._inputContainer_byy0l_107 ._input_byy0l_107:focus-visible+label{box-shadow:inset 0 0 0 1px #201649}._inputContainer_byy0l_107 ._input_byy0l_107:not(:disabled){cursor:pointer}._inputContainer_byy0l_107 ._input_byy0l_107:not(:disabled)+label{cursor:pointer}._inputContainer_byy0l_107 ._input_byy0l_107:disabled::-moz-placeholder{color:#a6a2b6}._inputContainer_byy0l_107 ._input_byy0l_107:disabled::placeholder{color:#a6a2b6}._inputContainer_byy0l_107 ._input--filled_byy0l_153+label{background-color:#f4f3f6}._inputContainer_byy0l_107 ._input--filled_byy0l_153:hover:not(:disabled)+label{background-color:#e9e8ed}._inputContainer_byy0l_107 ._input--filled_byy0l_153:disabled{color:#a6a2b6}._inputContainer_byy0l_107 ._input--filled_byy0l_153:disabled+label{color:#a6a2b6}._inputContainer_byy0l_107 ._input--outline_byy0l_165+label{background-color:#fff;box-shadow:inset 0 0 0 1px #a6a2b6}._inputContainer_byy0l_107 ._input--outline_byy0l_165:hover:not(:disabled)+label{background-color:#f4f3f6;box-shadow:inset 0 0 0 1px #635c80}._inputContainer_byy0l_107 ._input--outline_byy0l_165:disabled{color:#a6a2b6}._inputContainer_byy0l_107 ._input--outline_byy0l_165:disabled+label{box-shadow:inset 0 0 0 1px #d2d0db;color:#a6a2b6}._inputContainer_byy0l_107 ._error_byy0l_180{display:block;width:100%;padding:0 8px;color:#cc339f;cursor:pointer;text-align:center}._inputContainer_byy0l_107 ._label_byy0l_188{position:relative;display:flex;width:100%;height:56px;align-items:center;justify-content:flex-end;padding:16px;border-radius:16px;color:#201649}._inputContainer_byy0l_107 ._label_byy0l_188 span{height:24px;color:inherit}._inputContainer--error_byy0l_203 ._label_byy0l_188{background:#fde6f7!important;box-shadow:inset 0 0 0 1px #cc339f!important;color:#cc339f}._inputContainer--error_byy0l_203 ._input_byy0l_107{color:#201649}._inputContainer__input_byy0l_211{display:inline-flex;width:104px;flex-direction:column;flex-shrink:0;align-items:center;border-radius:16px;gap: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")}._radio_1k55l_106{position:relative;display:flex;align-items:center;justify-content:space-between}._radio_1k55l_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_1k55l_106 input._radio--small_1k55l_124,._radio_1k55l_106 input._radio--tiny_1k55l_124{width:24px;height:24px}._radio_1k55l_106 input:not(:disabled){cursor:pointer}._radio_1k55l_106 input:disabled{border-color:#d2d0db}._radio_1k55l_106 input:checked{border-color:#201649;background-color:#201649;transition:0s}._radio_1k55l_106 input:checked:disabled{border-color:#a6a2b6;background-color:#a6a2b6}._radio_1k55l_106 input:hover:not(:disabled,:checked){border-color:#635c80;background-color:#f4f3f6}._radio_1k55l_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}._radio_1k55l_106 input:not(:disabled)~label{color:#635c80;cursor:pointer}._radio_1k55l_106 input:checked~label{color:#201649}._radio_1k55l_106 input:disabled~label{color:#a6a2b6}._radio_1k55l_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")}._wrapper_wmndk_106{width:100%}._label_wmndk_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_wmndk_124{width:100%;min-height:96px;background-color:transparent;color:#201649}._textArea_wmndk_124:focus-visible{outline:none}._textArea_wmndk_124+label{color:#635c80}._textArea_wmndk_124:not(:-moz-placeholder-shown)+label{top:16px}._textArea_wmndk_124:focus+label,._textArea_wmndk_124:not(:placeholder-shown)+label{top:16px}._textArea_wmndk_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_wmndk_124:focus+label>span,._textArea_wmndk_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_wmndk_152{position:relative}._textAreaContainer_wmndk_152:focus-within{outline:#a6a2b6 2px solid}._textAreaContainer--dark_wmndk_158{background-color:#f4f3f6}._textAreaContainer--dark_wmndk_158:hover{background-color:#e9e8ed}._textAreaContainer--dark_wmndk_158:disabled{color:#a6a2b6}._textAreaContainer--dark_wmndk_158:disabled:hover{background-color:#f4f3f6}._textAreaContainer--dark_wmndk_158:disabled+label{color:#a6a2b6}._textAreaContainer--light_wmndk_173{border:1px solid #a6a2b6;background-color:#fff}._textAreaContainer--light_wmndk_173:hover{border-color:#635c80;background-color:#f4f3f6}._textAreaContainer--light_wmndk_173:disabled{border-color:#d2d0db;color:#a6a2b6}._textAreaContainer--light_wmndk_173:disabled:hover{background-color:#fff}._textAreaContainer--light_wmndk_173:disabled+label{color:#a6a2b6}._textAreaContainer--medium_wmndk_191{border-radius:16px}._textAreaContainer--medium_wmndk_191:not(:-moz-placeholder-shown){padding-top:26px;padding-bottom:6px}._textAreaContainer--medium_wmndk_191:focus,._textAreaContainer--medium_wmndk_191:not(:placeholder-shown){padding-top:26px;padding-bottom:6px}._textAreaContainer--medium_wmndk_191 ._textArea_wmndk_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_wmndk_212{border-radius:12px}._textAreaContainer--small_wmndk_212 ._textArea_wmndk_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_wmndk_212 ._textArea_wmndk_124:not(:-moz-placeholder-shown)+label{display:none}._textAreaContainer--small_wmndk_212 ._textArea_wmndk_124:focus+label,._textAreaContainer--small_wmndk_212 ._textArea_wmndk_124:not(:placeholder-shown)+label{display:none}._textAreaContainer--error_wmndk_232{border:1px solid #CC339F;background-color:#fde6f7;color:#201649}._textAreaContainer--error_wmndk_232:focus{border-color:#cc339f}._textAreaContainer--error_wmndk_232:hover{border-color:#cc339f;background-color:#fde6f7}._textAreaContainer--error_wmndk_232:disabled{border-color:#cc339f}._textAreaContainer--error_wmndk_232:disabled:hover{background-color:#fde6f7}._textAreaContainer--errorMessage_wmndk_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_gk0vv_106{width:100%}._wrapper_gk0vv_106 ._textInputContainer_gk0vv_109{position:relative}._wrapper_gk0vv_106 ._textInputContainer_gk0vv_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_gk0vv_106 ._textInputContainer_gk0vv_109 ._textInput_gk0vv_109{width:100%;color:#201649;outline:none;display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:1;text-overflow:ellipsis}._wrapper_gk0vv_106 ._textInputContainer_gk0vv_109 ._textInput_gk0vv_109+label{color:#635c80}._wrapper_gk0vv_106 ._textInputContainer_gk0vv_109 ._textInput_gk0vv_109:not(:-moz-placeholder-shown)+label{top:16px}._wrapper_gk0vv_106 ._textInputContainer_gk0vv_109 ._textInput_gk0vv_109:focus+label,._wrapper_gk0vv_106 ._textInputContainer_gk0vv_109 ._textInput_gk0vv_109:not(:placeholder-shown)+label{top:16px}._wrapper_gk0vv_106 ._textInputContainer_gk0vv_109 ._textInput_gk0vv_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_gk0vv_106 ._textInputContainer_gk0vv_109 ._textInput_gk0vv_109:focus+label>span,._wrapper_gk0vv_106 ._textInputContainer_gk0vv_109 ._textInput_gk0vv_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_gk0vv_106 ._textInputContainer_gk0vv_109 ._textInput--medium_gk0vv_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_gk0vv_106 ._textInputContainer_gk0vv_109 ._textInput--medium_gk0vv_153:not(:-moz-placeholder-shown){padding-top:26px;padding-bottom:6px}._wrapper_gk0vv_106 ._textInputContainer_gk0vv_109 ._textInput--medium_gk0vv_153:focus,._wrapper_gk0vv_106 ._textInputContainer_gk0vv_109 ._textInput--medium_gk0vv_153:not(:placeholder-shown){padding-top:26px;padding-bottom:6px}._wrapper_gk0vv_106 ._textInputContainer_gk0vv_109 ._textInput--small_gk0vv_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_gk0vv_106 ._textInputContainer_gk0vv_109 ._textInput--small_gk0vv_173:not(:-moz-placeholder-shown)+label{display:none}._wrapper_gk0vv_106 ._textInputContainer_gk0vv_109 ._textInput--small_gk0vv_173:focus+label,._wrapper_gk0vv_106 ._textInputContainer_gk0vv_109 ._textInput--small_gk0vv_173:not(:placeholder-shown)+label{display:none}._wrapper_gk0vv_106 ._textInputContainer_gk0vv_109 ._textInput--dark_gk0vv_192{background-color:#f4f3f6}._wrapper_gk0vv_106 ._textInputContainer_gk0vv_109 ._textInput--dark_gk0vv_192:hover{background-color:#e9e8ed}._wrapper_gk0vv_106 ._textInputContainer_gk0vv_109 ._textInput--dark_gk0vv_192:disabled{color:#a6a2b6}._wrapper_gk0vv_106 ._textInputContainer_gk0vv_109 ._textInput--dark_gk0vv_192:disabled:hover{background-color:#f4f3f6}._wrapper_gk0vv_106 ._textInputContainer_gk0vv_109 ._textInput--dark_gk0vv_192:disabled+label{color:#a6a2b6}._wrapper_gk0vv_106 ._textInputContainer_gk0vv_109 ._textInput--light_gk0vv_207{border:1px solid #a6a2b6;background-color:#fff}._wrapper_gk0vv_106 ._textInputContainer_gk0vv_109 ._textInput--light_gk0vv_207:hover{border-color:#635c80;background-color:#f4f3f6}._wrapper_gk0vv_106 ._textInputContainer_gk0vv_109 ._textInput--light_gk0vv_207:disabled{border-color:#d2d0db;color:#a6a2b6}._wrapper_gk0vv_106 ._textInputContainer_gk0vv_109 ._textInput--light_gk0vv_207:disabled:hover{background-color:#fff}._wrapper_gk0vv_106 ._textInputContainer_gk0vv_109 ._textInput--light_gk0vv_207:disabled+label{color:#a6a2b6}._wrapper_gk0vv_106 ._textInputContainer_gk0vv_109 ._textInput--error_gk0vv_225{border:1px solid #CC339F;background-color:#fde6f7;color:#201649}._wrapper_gk0vv_106 ._textInputContainer_gk0vv_109 ._textInput--error_gk0vv_225:focus{border-color:#cc339f}._wrapper_gk0vv_106 ._textInputContainer_gk0vv_109 ._textInput--error_gk0vv_225:hover{border-color:#cc339f;background-color:#fde6f7}._wrapper_gk0vv_106 ._textInputContainer_gk0vv_109 ._textInput--error_gk0vv_225:disabled{border-color:#cc339f}._wrapper_gk0vv_106 ._textInputContainer_gk0vv_109 ._textInput--error_gk0vv_225:disabled:hover{background-color:#fde6f7}._wrapper_gk0vv_106 ._textInputContainer--errorMessage_gk0vv_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")}._switch_whn2s_106{position:relative;display:inline-block;width:48px;height:28px}._switch_whn2s_106 ._slider_whn2s_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_whn2s_106 ._slider_whn2s_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_whn2s_106 ._slider_whn2s_112._focusVisible_whn2s_134{box-shadow:inset 0 0 0 1.5px #43adc3!important}._switch_whn2s_106 input{position:absolute;z-index:2;width:48px;height:28px;opacity:0}._switch_whn2s_106 input:not(:disabled){cursor:pointer}._switch_whn2s_106 input:disabled+._slider_whn2s_112{opacity:.4}._switch_whn2s_106 input:checked+._slider_whn2s_112{background-color:#201649;box-shadow:inset 0 0 0 1.5px #201649}._switch_whn2s_106 input:checked+._slider_whn2s_112:before{transform:translate(-2px)}@media (hover: hover){._switch_whn2s_106 input:hover+._slider_whn2s_112{box-shadow:inset 0 0 0 1.5px #635c80}._switch_whn2s_106 input:checked:hover+._slider_whn2s_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")}._wrapper_5e4ej_106{display:flex;height:100%;align-items:center;justify-content:center;padding:16px 0}._wrapper_5e4ej_106 ._loadingSpinner_5e4ej_113{display:inline-block}._wrapper_5e4ej_106 ._loadingSpinner_5e4ej_113:after,._wrapper_5e4ej_106 ._loadingSpinner_5e4ej_113:before{content:"";display:inline-block;width:20px;height:20px;border-radius:50%;animation:_pulse-loader-size_5e4ej_1 1s ease infinite;background:#9c9c9c}._wrapper_5e4ej_106 ._loadingSpinner_5e4ej_113 i{display:inline-block;width:20px;height:20px;border-radius:50%;animation:_pulse-loader-size_5e4ej_1 1s ease infinite;background:#9c9c9c;animation-delay:.5s;transform:scale(.2)}@keyframes _pulse-loader-size_5e4ej_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")}._toggleContainer_fjk9a_107{position:relative;display:inline-flex;flex-direction:column;align-items:center;border-radius:32px}._toggleContainer_fjk9a_107 ._toggleLabel_fjk9a_114{display:flex;width:100%;align-items:center;gap:8px}._toggleContainer_fjk9a_107 ._toggleLabel--outline_fjk9a_120{background:#fff;box-shadow:inset 0 0 0 1px #d2d0db;color:#201649}._toggleContainer_fjk9a_107 ._toggleLabel--outline_fjk9a_120:hover{box-shadow:inset 0 0 0 1px #635c80}._toggleContainer_fjk9a_107 ._toggleLabel--filled_fjk9a_128{background:#f4f3f6;color:#635c80}._toggleContainer_fjk9a_107 ._toggleLabel--filled_fjk9a_128:hover{background:#e9e8ed}._toggleContainer_fjk9a_107 ._toggleLabel_fjk9a_114 svg path{stroke:currentcolor}._toggleContainer_fjk9a_107 ._toggleLabel__labelPill_fjk9a_138{position:absolute;top:calc(100% - 12px);display:none}._toggleContainer_fjk9a_107 ._toggleLabel__labelPill--large_fjk9a_143{display:flex}._toggleContainer_fjk9a_107 ._toggleButton_fjk9a_146{display:none}._toggleContainer_fjk9a_107 ._toggleButton_fjk9a_146:not(:disabled)+._toggleLabel_fjk9a_114{cursor:pointer}._toggleContainer_fjk9a_107 ._toggleButton_fjk9a_146:checked+._toggleLabel--outline_fjk9a_120,._toggleContainer_fjk9a_107 ._toggleButton_fjk9a_146:checked+._toggleLabel--filled_fjk9a_128{background:#f4f3f6;box-shadow:inset 0 0 0 1.5px #201649;color:#201649}._toggleContainer_fjk9a_107 ._toggleButton_fjk9a_146:checked+._toggleLabel--outline_fjk9a_120:hover,._toggleContainer_fjk9a_107 ._toggleButton_fjk9a_146:checked+._toggleLabel--filled_fjk9a_128:hover{background:#e9e8ed;box-shadow:inset 0 0 0 1.5px #635c80;color:#201649}._toggleContainer_fjk9a_107 ._toggleButton_fjk9a_146:checked:disabled+._toggleLabel--outline_fjk9a_120,._toggleContainer_fjk9a_107 ._toggleButton_fjk9a_146:checked:disabled+._toggleLabel--filled_fjk9a_128{box-shadow:inset 0 0 0 1.5px #d2d0db;color:#a6a2b6}._toggleContainer_fjk9a_107 ._toggleButton_fjk9a_146:checked:disabled+._toggleLabel--outline_fjk9a_120:hover,._toggleContainer_fjk9a_107 ._toggleButton_fjk9a_146:checked:disabled+._toggleLabel--filled_fjk9a_128:hover{background:#f4f3f6;box-shadow:inset 0 0 0 1.5px #d2d0db;color:#a6a2b6}._toggleContainer_fjk9a_107 ._toggleButton_fjk9a_146:not(:checked):disabled+._toggleLabel--outline_fjk9a_120{background:#fff;box-shadow:inset 0 0 0 1px #d2d0db;color:#a6a2b6}._toggleContainer_fjk9a_107 ._toggleButton_fjk9a_146:not(:checked):disabled+._toggleLabel--filled_fjk9a_128{background:#f4f3f6;color:#a6a2b6}._toggleContainer--default_fjk9a_184 ._toggleLabel_fjk9a_114{padding:8px 12px;border-radius:32px}._toggleContainer--medium_fjk9a_188 ._toggleLabel_fjk9a_114{padding:8px 12px;border-radius:8px}._toggleContainer--medium_fjk9a_188 ._toggleLabel--horizontal_fjk9a_192{padding:4px 12px 4px 8px}._toggleContainer--medium_fjk9a_188 ._toggleLabel--horizontal_fjk9a_192 svg{width:28px;height:28px}._toggleContainer--medium_fjk9a_188 ._toggleLabel--vertical_fjk9a_199{flex-direction:column;padding:4px 8px;gap:0}._toggleContainer--medium_fjk9a_188 ._toggleLabel--vertical__labelPill_fjk9a_204{position:absolute;border:solid red;transform:translateY(150%)}._toggleContainer--large_fjk9a_209 ._toggleLabel_fjk9a_114{height:48px;padding:8px 16px;border-radius:12px}._toggleContainer--large_fjk9a_209 ._toggleLabel--horizontal_fjk9a_192,._toggleContainer--large_fjk9a_209 ._toggleLabel--vertical_fjk9a_199{padding:8px 16px 8px 12px}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display: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_jozb6_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_jozb6_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_vkinc_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_1axen_106{display:flex;align-items:center;padding-bottom:12px;color:inherit;gap:8px}._title_1axen_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")}._actionBar_1mw3m_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")}._actionBarCta_140ha_106{display:flex;align-items:center;padding:12px;gap:16px}._actionBarCta__text_140ha_112{flex-grow:1;color:#635c80;text-wrap:wrap}._actionBarCta__button_140ha_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_1yvv7_106{display:flex;padding:12px 16px;gap:24px}@media (width <= 450px){._actionBarList_1yvv7_106{justify-content:space-between;padding:8px 12px;gap:0}._actionBarList__actionItem_1yvv7_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")}._actionItem_1s6z8_106{display:flex;align-items:center;justify-content:center;background-color:#fff;color:#635c80;gap:4px}._actionItem_1s6z8_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")}._root_sfo6d_106{display:flex;width:100%;justify-content:space-between;padding:8px 12px;background-color:#fff;cursor:pointer;gap:12px}._root_sfo6d_106:hover{background-color:#f4f3f6}@media (hover: none) and (pointer: coarse){._root_sfo6d_106:hover{background-color:#fff}}._root_sfo6d_106 ._thumbnailWrapper_sfo6d_123{position:relative}._root_sfo6d_106 ._thumbnailWrapper_sfo6d_123 ._thumbnail_sfo6d_123{flex-shrink:0;border:1px solid #e9e8ed}._root_sfo6d_106 ._thumbnailWrapper_sfo6d_123 ._iconWrapper_sfo6d_130{display:flex;width:56px;height:56px;flex-shrink:0;align-items:center;justify-content:center;border-radius:4px;background:#f4f3f6;color:#635c80}._root_sfo6d_106 ._thumbnailWrapper_sfo6d_123 ._secondaryThumbnail_sfo6d_141{position:absolute;right:-5px;bottom:-5px;width:32px;height:32px;border:1px solid #e9e8ed}._root_sfo6d_106 ._thumbnailWrapper_sfo6d_123 ._circular_sfo6d_149{border-radius:999px}._root_sfo6d_106 ._detail_sfo6d_152{display:flex;flex-direction:column;flex-grow:1;justify-content:center;color:#635c80;gap:2px}._root_sfo6d_106 ._detail_sfo6d_152 ._title_sfo6d_160{display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:1;text-overflow:ellipsis}._root_sfo6d_106 ._detail_sfo6d_152 ._notificationText_sfo6d_167{color:#201649;line-height:20px;display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:2;text-overflow:ellipsis}._unread_sfo6d_177{background-color:#fff9e5}@media (hover: none) and (pointer: coarse){._unread_sfo6d_177:hover{background-color:#fff9e5}}._unread_sfo6d_177 ._bubble_sfo6d_185{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")}._menuItem_pqaol_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_pqaol_106 ._highlightFrame_pqaol_120{display:flex;flex:1;align-items:center;padding:8px;border-radius:8px;gap:8px}._menuItem_pqaol_106 ._rightIcon_pqaol_128{display:inherit;margin-left:auto;color:#635c80}._menuItem--selected_pqaol_133 ._leftIcon_pqaol_133 path{stroke:#738c00}._menuItem--selected_pqaol_133 ._highlightFrame_pqaol_120{background-color:#f2fbc4}@media (hover: hover) and (pointer: fine){._menuItem--selected_pqaol_133:hover{color:var(--menuitem-selected-hover-color)}}._menuItem--compact_pqaol_144{height:40px}@media (hover: hover) and (pointer: fine){._menuItem_pqaol_106:not(._menuItem--selected_pqaol_133):hover ._highlightFrame_pqaol_120{background-color:#f4f3f6}._menuItem_pqaol_106:not(._menuItem--selected_pqaol_133):hover ._highlightFrame--compact_pqaol_151{height:40px}}._menuItem_pqaol_106:not(._menuItem--selected_pqaol_133):active ._highlightFrame_pqaol_120{background-color:#f4f3f6}._menuItem_pqaol_106:not(._menuItem--selected_pqaol_133):active ._highlightFrame--compact_pqaol_151{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")}._navBar_smoij_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_w254q_106 ._navItem_w254q_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_w254q_106 ._navItem_w254q_106{padding:0 8px 8px}}._listItem_w254q_106 ._navItem_w254q_106 ._selector_w254q_120{height:4px;align-self:stretch;border-radius:0 0 4px 4px;margin-bottom:4px;background-color:#cae85d;visibility:hidden}._listItem_w254q_106 ._navItem--active_w254q_128{padding-right:4px;padding-left:4px;color:#738c00}._listItem_w254q_106 ._navItem--active_w254q_128 ._selector_w254q_120{height:4px;align-self:stretch;border-radius:0 0 4px 4px;background-color:#cae85d;visibility:visible}._label_w254q_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")}._emptyState_eo42d_106{display:flex;flex-direction:column;align-items:center;padding:24px 16px}._emptyState__text_eo42d_112{display:flex;flex-direction:column;text-align:center}._emptyState__secondaryText_eo42d_117{color:#635c80}._emptyState__buttons_eo42d_120{display:flex;width:100%;flex-direction:column;gap:8px}._emptyState--small_eo42d_126{gap:16px}._emptyState--small__text_eo42d_129{gap:4px}._emptyState--medium_eo42d_132{gap:24px}._emptyState--medium__text_eo42d_135{gap:8px}._emptyState--large_eo42d_138{gap:24px}._emptyState--large__text_eo42d_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")}._notice__content_160kh_106{--notice-bg-color: #f4f3f6;display:flex;flex-direction:column;align-items:flex-start;background-color:var(--notice-bg-color)}._notice__header_160kh_113{display:flex;width:100%;align-items:center;justify-content:space-between}._notice__iconHeadline_160kh_119{display:flex;align-items:center;gap:8px}._notice--small_160kh_124{gap:4px}._notice--medium_160kh_127{gap:8px}._notice--sticky_160kh_130{padding:16px}._notice--embedded_160kh_133{padding:8px;border-radius:8px}._notice--pink_160kh_137{--notice-bg-color: #ff9de2}._notice--green_160kh_140{--notice-bg-color: #f2fbc4}._notice--grey_160kh_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")}@keyframes _snackbarbottom_w5vob_1{0%{transform:translateY(160%)}45%{transform:translateY(-12%)}70%{transform:translateY(4%)}90%,to{transform:translateY(0)}}._animation--enter_w5vob_120{transform:translateY(100%)}._animation--enter-active_w5vob_124{animation:_snackbarbottom_w5vob_1 .6s;transform:translateY(0)}._animation--exit_w5vob_129{transform:translateY(0)}._animation--exit-active_w5vob_133{animation:_snackbarbottom_w5vob_1 reverse .6s;transform:translateY(160%)}._snackbar_w5vob_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_w5vob_138{right:0;bottom:calc(86px + env(safe-area-inset-bottom));left:0;margin:auto}}._snackbar__left_w5vob_162{display:flex;flex-grow:1;align-items:center;gap:8px}._snackbar__right_w5vob_168{display:flex;align-items:center;gap:8px}._snackbar__textLabel_w5vob_173{overflow:hidden;max-height:40px;flex-grow:1;color:#fff;overflow-wrap:break-word;white-space:normal}._snackbar__textButton_w5vob_181{text-wrap:nowrap}._snackbar__dismiss_w5vob_184{color:#fff}._snackbar__icon_w5vob_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")}._fieldset_12brx_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")}._radiobuttoncluster_1jxdz_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")}._toggleGroupStory_196oh_106{display:flex;flex-wrap:wrap;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")}._switcherToggle_19pqt_107{display:inline-flex;width:100%;justify-content:space-between;padding:4px;border-radius:32px;background:#f4f3f6}._switcherToggle_19pqt_107 ._input_19pqt_115{display:none}._switcherToggle_19pqt_107 ._input_19pqt_115:not(:checked)+._label_19pqt_118{background-color:transparent;color:#635c80}._switcherToggle_19pqt_107 ._input_19pqt_115:not(:checked)+._label_19pqt_118:hover{background:#e9e8ed}._switcherToggle_19pqt_107 ._label_19pqt_118{width:100%;flex:1 0 0;padding:8px;border-radius:32px;cursor:pointer;text-align:center;transition:background-color .1s,color .1s}._switcherToggle_19pqt_107 ._label_19pqt_118 p{display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:1;text-overflow:ellipsis;display:block;white-space:nowrap}._switcherToggle--filled_19pqt_143 ._input_19pqt_115:checked+._label_19pqt_118{background:#4c4566e6;color:#fff}._switcherToggle--filled_19pqt_143 ._input_19pqt_115:checked+._label_19pqt_118:hover{background:#21164ae6}._switcherToggle--outline_19pqt_150 ._input_19pqt_115:checked+._label_19pqt_118{background:#fff;box-shadow:inset 0 0 0 1.5px #201649;color:#201649}._switcherToggle--outline_19pqt_150 ._input_19pqt_115:checked+._label_19pqt_118:hover{background:#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")}._toggleInput_1fozv_106{display:flex;width:100%;align-items:center;padding:8px 16px;background-color:#fff;color:#635c80;cursor:pointer;gap:12px}._toggleInput_1fozv_106 svg{flex-shrink:0}._toggleInput_1fozv_106 ._textWrapper_1fozv_119{display:flex;flex-direction:column;flex-grow:1}._toggleInput_1fozv_106 ._textWrapper--withDescription_1fozv_124{gap:4px}._toggleInput_1fozv_106 ._switch_1fozv_127{flex-shrink:0}._toggleInput--checked_1fozv_130{color:#201649}._toggleInput--disabled_1fozv_133{cursor:unset}._toggleInput--withBorder_1fozv_136{padding:12px 16px;border-radius:16px;box-shadow:inset 0 0 0 1px #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")}._tabsCard_1o18q_106{padding:0}._tabsCard_1o18q_106 ._tabs_1o18q_106{display:flex;flex-direction:column;gap:16px}._tabsCard_1o18q_106 ._label_1o18q_114{color:#635c80;text-align:center}._tabsCard_1o18q_106 ._tabsList_1o18q_118{display:flex;overflow:auto;gap:16px;scrollbar-width:none}._tabsCard_1o18q_106 ._tabsList_1o18q_118:hover{scrollbar-color:auto}._tabsCard_1o18q_106 ._tabsList_1o18q_118 button{position:relative;display:flex;min-height:40px;align-items:center;justify-content:center;padding:12px 16px 8px;cursor:pointer}._tabsCard_1o18q_106 ._tabsList_1o18q_118 button[aria-selected=true] ._selectedTab_1o18q_136{position:absolute;bottom:0;left:0;width:100%;height:2px;border-radius:2px 2px 0 0;background:#201649}._tabsCard_1o18q_106 ._tabsList_1o18q_118 button[aria-selected=true] ._label_1o18q_114{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;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")}._root_3yqek_106{position:relative;width:100%;max-width:170px;height:100%;cursor:pointer}._root--aggregator_3yqek_113{max-width:156px}._root__content_3yqek_116{display:flex;height:100%;flex-direction:column}._root__bookmark_3yqek_121{position:absolute;z-index:1000;top:8px;right:8px}._root__header_3yqek_127{position:relative;overflow:hidden;width:100%;border-radius:8px;aspect-ratio:4/3}._root__header__reserved_3yqek_134{position:absolute;display:flex;width:100%;height:100%;align-items:center;justify-content:center;background:#ffffffb3;opacity:0}._root__header__reserved--visible_3yqek_144{opacity:1}._root__header__reserved__box_3yqek_147{display:flex;align-items:center;justify-content:center;padding:8px;border-radius:4px;background:#4c4566e6;color:#fff}._root__header__image_3yqek_156{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}._root__info_3yqek_161{display:flex;flex:1;flex-direction:column;padding:8px 4px 0}._root__info__top_3yqek_167{flex:1}._root__info__price_3yqek_170{color:#01819c}._root__info__price--reserved_3yqek_173{color:#a6a2b6}._root__info__title_3yqek_176{display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:2;text-overflow:ellipsis;color:#201649}._root__info__timeStamp_3yqek_184{padding-top:4px;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")}._legend_1as3c_106{display:flex;flex-direction:column;padding-bottom:12px;gap:8px}._legend_1as3c_106 ._text_1as3c_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")}._overlay_du31f_106{position:fixed;z-index:10000;top:0;left:0;width:100%;height:100%;animation:_fade-in_du31f_1 .5s ease-out forwards;background:#000}._sheet_du31f_117{position:fixed;z-index:10001;bottom:0;left:0;width:100%;padding:0;border:none;animation:_slide-up_du31f_1 .5s forwards;background:#fff;border-top-left-radius:16px;border-top-right-radius:16px}._sheet_du31f_117 ._sheetWrapper_du31f_130{display:flex;flex-direction:column;background-color:transparent;box-shadow:0 6px 32px #20164933;color:#201649;outline:none}._sheet_du31f_117 ._sheetWrapper_du31f_130 ._sheetBody_du31f_138{padding:4px 16px}._sheet_du31f_117 ._sheetWrapper_du31f_130 ._sheetHeader_du31f_141{padding:24px 16px 12px}._sheet_du31f_117 ._sheetWrapper_du31f_130 ._sheetHeader_du31f_141 header{padding:0}._sheet_du31f_117 ._sheetWrapper_du31f_130 ._sheetHeader_du31f_141 header svg path{stroke:#635c80}._sheet_du31f_117 ._sheetWrapper_du31f_130 ._sheetHeader_du31f_141 header h3{color:#201649}._sheet_du31f_117 ._sheetWrapper_du31f_130 ._sheetFooter_du31f_153{display:flex;flex-direction:column;align-items:center;justify-content:center;padding:8px 12px 32px;gap:12px}@keyframes _slide-up_du31f_1{0%{transform:translateY(100%)}to{transform:translateY(0)}}@keyframes _fade-in_du31f_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")}._backdrop_x4szp_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_1a7hy_106{position:fixed;z-index:1300;display:flex;align-items:center;justify-content:center;top:0;right:0;bottom:0;left:0}._modal_1a7hy_106 ._modalWrapper_1a7hy_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_1a7hy_106 ._modalWrapper_1a7hy_114{max-width:560px}}._modal_1a7hy_106 ._modalWrapper_1a7hy_114 ._modalHeader_1a7hy_130{position:sticky;z-index:1;top:0;padding:16px;background-color:#fff}._modal_1a7hy_106 ._modalWrapper_1a7hy_114 ._modalHeader_1a7hy_130 h3{color:#201649}._modal_1a7hy_106 ._modalWrapper_1a7hy_114 ._modalHeader_1a7hy_130 header{padding:0}._modal_1a7hy_106 ._modalWrapper_1a7hy_114 header button:first-child{display:none}._modal_1a7hy_106 ._modalWrapper_1a7hy_114 ._crossCircle_1a7hy_146 svg path{stroke:#635c80}._modal_1a7hy_106 ._modalFooter_1a7hy_149{display:flex;flex-direction:row;align-items:center;justify-content:space-between;margin:12px 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")}._base_1egyw_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")}._backdrop_1dehl_106{position:fixed;z-index:-1;background:#0003;top:0;right:0;bottom:0;left:0}@media screen and (max-width: 689px){._backdrop_1dehl_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_1iz9h_106{position:fixed;z-index:1300;display:flex;overflow:scroll;align-items:center;justify-content:center;top:0;right:0;bottom:0;left:0}._sheet_1iz9h_106::-webkit-scrollbar{display:none}._sheet_1iz9h_106 ._sheetWrapper_1iz9h_118{min-width:560px;border-radius:0;background-color:#fff;box-shadow:0 6px 32px #2016491a;outline:none}@media screen and (min-width: 690px){._sheet_1iz9h_106 ._sheetWrapper_1iz9h_118{border-radius:16px}}._sheet_1iz9h_106 ._sheetWrapper_1iz9h_118 ._sheetHeader_1iz9h_130{padding:16px}._sheet_1iz9h_106 ._sheetWrapper_1iz9h_118 ._sheetHeader_1iz9h_130 header{padding:0}._sheet_1iz9h_106 ._sheetWrapper_1iz9h_118 header button:first-child{display:none}@media screen and (max-width: 689px){._sheet_1iz9h_106 ._sheetWrapper_1iz9h_118{width:100%;min-width:auto;height:100%}._sheet_1iz9h_106 ._sheetWrapper_1iz9h_118 header button:last-child{display:none}._sheet_1iz9h_106 ._sheetWrapper_1iz9h_118 header button:first-child{display:block}}._sheet_1iz9h_106 ._sheetFooter_1iz9h_152{display:none;flex-direction:row;align-items:center;justify-content:space-between;margin:16px;gap:16px}._sheet_1iz9h_106 ._sheetFooter--alwaysVisible_1iz9h_160{display:flex}@media screen and (min-width: 690px){._sheet_1iz9h_106 ._sheetFooter_1iz9h_152{display:flex}}
|