@goodhood-web/ui 1.6.0-development.39 → 1.6.0-development.40
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.d.ts +2 -2
- package/index.js +1 -1
- package/index.mjs +132 -132
- package/lib/Sheet/Sheet.d.ts +4 -0
- package/lib/{Modal/Modal.types.d.ts → Sheet/Sheet.types.d.ts} +4 -4
- package/package.json +1 -1
- package/style.css +1 -1
- package/lib/Modal/Modal.d.ts +0 -4
- /package/lib/{Modal → Sheet}/Backdrop/Backdrop.d.ts +0 -0
- /package/lib/{Modal → Sheet}/Backdrop/Backdrop.types.d.ts +0 -0
package/index.d.ts
CHANGED
|
@@ -19,7 +19,6 @@ import { default as Legend } from './lib/Legend/Legend';
|
|
|
19
19
|
import { default as Loader } from './lib/Loader/Loader';
|
|
20
20
|
import { default as Markdown } from './lib/Markdown/Markdown';
|
|
21
21
|
import { default as MenuItem } from './lib/MenuItem/MenuItem';
|
|
22
|
-
import { default as Modal } from './lib/Modal/Modal';
|
|
23
22
|
import { default as NavBar } from './lib/NavBar/NavBar';
|
|
24
23
|
import { default as NavItem } from './lib/NavBar/NavItem/NavItem';
|
|
25
24
|
import { default as NotificationBubble } from './lib/NotificationBubble/NotificationBubble';
|
|
@@ -29,6 +28,7 @@ import { default as Popup } from './lib/Popup/Popup';
|
|
|
29
28
|
import { default as RadioButton } from './lib/RadioButton/RadioButton';
|
|
30
29
|
import { default as RadioButtonCluster } from './lib/RadioButtonCluster/RadioButtonCluster';
|
|
31
30
|
import { default as Select } from './lib/Select/Select';
|
|
31
|
+
import { default as Sheet } from './lib/Sheet/Sheet';
|
|
32
32
|
import { default as Sticker } from './lib/Sticker/Sticker';
|
|
33
33
|
import { default as TextArea } from './lib/TextArea/TextArea';
|
|
34
34
|
import { default as TextButton } from './lib/TextButton/TextButton';
|
|
@@ -39,4 +39,4 @@ import { default as Toggle } from './lib/Toggle/Toggle';
|
|
|
39
39
|
import { default as ToggleInput } from './lib/ToggleInput/ToggleInput';
|
|
40
40
|
import { default as Typography } from './lib/Typography/Typography';
|
|
41
41
|
|
|
42
|
-
export { Accordion, AccordionItem, Badge, BadgeIcon, BadgeLabel, Button, ButtonPrimary, Card, CardBody, CardHeader, Divider, Fieldset, Form, Icon, IconButton, Image, LabelPill, Legend, Loader, Markdown, MenuItem,
|
|
42
|
+
export { Accordion, AccordionItem, Badge, BadgeIcon, BadgeLabel, Button, ButtonPrimary, Card, CardBody, CardHeader, Divider, Fieldset, Form, Icon, IconButton, Image, LabelPill, Legend, Loader, Markdown, MenuItem, Sheet, NavBar, NavItem, NotificationBubble, NotificationListItem, PlaceholderThumbnail, Popup, RadioButton, RadioButtonCluster, Select, Sticker, TextArea, TextButton, TextInput, Thumbnail, Tile, Toggle, ToggleInput, Typography, };
|
package/index.js
CHANGED
|
@@ -100,4 +100,4 @@ ${e}</tr>
|
|
|
100
100
|
`}tablecell(e,n){const r=n.header?"th":"td";return(n.align?`<${r} align="${n.align}">`:`<${r}>`)+e+`</${r}>
|
|
101
101
|
`}strong(e){return`<strong>${e}</strong>`}em(e){return`<em>${e}</em>`}codespan(e){return`<code>${e}</code>`}br(){return"<br>"}del(e){return`<del>${e}</del>`}link(e,n,r){const o=fo(e);if(o===null)return r;e=o;let i='<a href="'+e+'"';return n&&(i+=' title="'+n+'"'),i+=">"+r+"</a>",i}image(e,n,r){const o=fo(e);if(o===null)return r;e=o;let i=`<img src="${e}" alt="${r}"`;return n&&(i+=` title="${n}"`),i+=">",i}text(e){return e}}class vr{strong(e){return e}em(e){return e}codespan(e){return e}del(e){return e}html(e){return e}text(e){return e}link(e,n,r){return""+r}image(e,n,r){return""+r}br(){return""}}class Ve{constructor(e){me(this,"options");me(this,"renderer");me(this,"textRenderer");this.options=e||tt,this.options.renderer=this.options.renderer||new on,this.renderer=this.options.renderer,this.renderer.options=this.options,this.textRenderer=new vr}static parse(e,n){return new Ve(n).parse(e)}static parseInline(e,n){return new Ve(n).parseInline(e)}parse(e,n=!0){let r="";for(let o=0;o<e.length;o++){const i=e[o];if(this.options.extensions&&this.options.extensions.renderers&&this.options.extensions.renderers[i.type]){const s=i,l=this.options.extensions.renderers[s.type].call({parser:this},s);if(l!==!1||!["space","hr","heading","code","table","blockquote","list","html","paragraph","text"].includes(s.type)){r+=l||"";continue}}switch(i.type){case"space":continue;case"hr":{r+=this.renderer.hr();continue}case"heading":{const s=i;r+=this.renderer.heading(this.parseInline(s.tokens),s.depth,Zf(this.parseInline(s.tokens,this.textRenderer)));continue}case"code":{const s=i;r+=this.renderer.code(s.text,s.lang,!!s.escaped);continue}case"table":{const s=i;let l="",c="";for(let u=0;u<s.header.length;u++)c+=this.renderer.tablecell(this.parseInline(s.header[u].tokens),{header:!0,align:s.align[u]});l+=this.renderer.tablerow(c);let f="";for(let u=0;u<s.rows.length;u++){const h=s.rows[u];c="";for(let p=0;p<h.length;p++)c+=this.renderer.tablecell(this.parseInline(h[p].tokens),{header:!1,align:s.align[p]});f+=this.renderer.tablerow(c)}r+=this.renderer.table(l,f);continue}case"blockquote":{const s=i,l=this.parse(s.tokens);r+=this.renderer.blockquote(l);continue}case"list":{const s=i,l=s.ordered,c=s.start,f=s.loose;let u="";for(let h=0;h<s.items.length;h++){const p=s.items[h],m=p.checked,w=p.task;let b="";if(p.task){const C=this.renderer.checkbox(!!m);f?p.tokens.length>0&&p.tokens[0].type==="paragraph"?(p.tokens[0].text=C+" "+p.tokens[0].text,p.tokens[0].tokens&&p.tokens[0].tokens.length>0&&p.tokens[0].tokens[0].type==="text"&&(p.tokens[0].tokens[0].text=C+" "+p.tokens[0].tokens[0].text)):p.tokens.unshift({type:"text",text:C+" "}):b+=C+" "}b+=this.parse(p.tokens,f),u+=this.renderer.listitem(b,w,!!m)}r+=this.renderer.list(u,l,c);continue}case"html":{const s=i;r+=this.renderer.html(s.text,s.block);continue}case"paragraph":{const s=i;r+=this.renderer.paragraph(this.parseInline(s.tokens));continue}case"text":{let s=i,l=s.tokens?this.parseInline(s.tokens):s.text;for(;o+1<e.length&&e[o+1].type==="text";)s=e[++o],l+=`
|
|
102
102
|
`+(s.tokens?this.parseInline(s.tokens):s.text);r+=n?this.renderer.paragraph(l):l;continue}default:{const s='Token with "'+i.type+'" type was not found.';if(this.options.silent)return console.error(s),"";throw new Error(s)}}}return r}parseInline(e,n){n=n||this.renderer;let r="";for(let o=0;o<e.length;o++){const i=e[o];if(this.options.extensions&&this.options.extensions.renderers&&this.options.extensions.renderers[i.type]){const s=this.options.extensions.renderers[i.type].call({parser:this},i);if(s!==!1||!["escape","html","link","image","strong","em","codespan","br","del","text"].includes(i.type)){r+=s||"";continue}}switch(i.type){case"escape":{const s=i;r+=n.text(s.text);break}case"html":{const s=i;r+=n.html(s.text);break}case"link":{const s=i;r+=n.link(s.href,s.title,this.parseInline(s.tokens,n));break}case"image":{const s=i;r+=n.image(s.href,s.title,s.text);break}case"strong":{const s=i;r+=n.strong(this.parseInline(s.tokens,n));break}case"em":{const s=i;r+=n.em(this.parseInline(s.tokens,n));break}case"codespan":{const s=i;r+=n.codespan(s.text);break}case"br":{r+=n.br();break}case"del":{const s=i;r+=n.del(this.parseInline(s.tokens,n));break}case"text":{const s=i;r+=n.text(s.text);break}default:{const s='Token with "'+i.type+'" type was not found.';if(this.options.silent)return console.error(s),"";throw new Error(s)}}}return r}}class _t{constructor(e){me(this,"options");this.options=e||tt}preprocess(e){return e}postprocess(e){return e}processAllTokens(e){return e}}me(_t,"passThroughHooks",new Set(["preprocess","postprocess","processAllTokens"]));var St,Kn,sn,ms;class bd{constructor(...e){En(this,St);En(this,sn);me(this,"defaults",dr());me(this,"options",this.setOptions);me(this,"parse",Bt(this,St,Kn).call(this,Oe.lex,Ve.parse));me(this,"parseInline",Bt(this,St,Kn).call(this,Oe.lexInline,Ve.parseInline));me(this,"Parser",Ve);me(this,"Renderer",on);me(this,"TextRenderer",vr);me(this,"Lexer",Oe);me(this,"Tokenizer",nn);me(this,"Hooks",_t);this.use(...e)}walkTokens(e,n){var o,i;let r=[];for(const s of e)switch(r=r.concat(n.call(this,s)),s.type){case"table":{const l=s;for(const c of l.header)r=r.concat(this.walkTokens(c.tokens,n));for(const c of l.rows)for(const f of c)r=r.concat(this.walkTokens(f.tokens,n));break}case"list":{const l=s;r=r.concat(this.walkTokens(l.items,n));break}default:{const l=s;(i=(o=this.defaults.extensions)==null?void 0:o.childTokens)!=null&&i[l.type]?this.defaults.extensions.childTokens[l.type].forEach(c=>{const f=l[c].flat(1/0);r=r.concat(this.walkTokens(f,n))}):l.tokens&&(r=r.concat(this.walkTokens(l.tokens,n)))}}return r}use(...e){const n=this.defaults.extensions||{renderers:{},childTokens:{}};return e.forEach(r=>{const o={...r};if(o.async=this.defaults.async||o.async||!1,r.extensions&&(r.extensions.forEach(i=>{if(!i.name)throw new Error("extension name required");if("renderer"in i){const s=n.renderers[i.name];s?n.renderers[i.name]=function(...l){let c=i.renderer.apply(this,l);return c===!1&&(c=s.apply(this,l)),c}:n.renderers[i.name]=i.renderer}if("tokenizer"in i){if(!i.level||i.level!=="block"&&i.level!=="inline")throw new Error("extension level must be 'block' or 'inline'");const s=n[i.level];s?s.unshift(i.tokenizer):n[i.level]=[i.tokenizer],i.start&&(i.level==="block"?n.startBlock?n.startBlock.push(i.start):n.startBlock=[i.start]:i.level==="inline"&&(n.startInline?n.startInline.push(i.start):n.startInline=[i.start]))}"childTokens"in i&&i.childTokens&&(n.childTokens[i.name]=i.childTokens)}),o.extensions=n),r.renderer){const i=this.defaults.renderer||new on(this.defaults);for(const s in r.renderer){if(!(s in i))throw new Error(`renderer '${s}' does not exist`);if(s==="options")continue;const l=s,c=r.renderer[l],f=i[l];i[l]=(...u)=>{let h=c.apply(i,u);return h===!1&&(h=f.apply(i,u)),h||""}}o.renderer=i}if(r.tokenizer){const i=this.defaults.tokenizer||new nn(this.defaults);for(const s in r.tokenizer){if(!(s in i))throw new Error(`tokenizer '${s}' does not exist`);if(["options","rules","lexer"].includes(s))continue;const l=s,c=r.tokenizer[l],f=i[l];i[l]=(...u)=>{let h=c.apply(i,u);return h===!1&&(h=f.apply(i,u)),h}}o.tokenizer=i}if(r.hooks){const i=this.defaults.hooks||new _t;for(const s in r.hooks){if(!(s in i))throw new Error(`hook '${s}' does not exist`);if(s==="options")continue;const l=s,c=r.hooks[l],f=i[l];_t.passThroughHooks.has(s)?i[l]=u=>{if(this.defaults.async)return Promise.resolve(c.call(i,u)).then(p=>f.call(i,p));const h=c.call(i,u);return f.call(i,h)}:i[l]=(...u)=>{let h=c.apply(i,u);return h===!1&&(h=f.apply(i,u)),h}}o.hooks=i}if(r.walkTokens){const i=this.defaults.walkTokens,s=r.walkTokens;o.walkTokens=function(l){let c=[];return c.push(s.call(this,l)),i&&(c=c.concat(i.call(this,l))),c}}this.defaults={...this.defaults,...o}}),this}setOptions(e){return this.defaults={...this.defaults,...e},this}lexer(e,n){return Oe.lex(e,n??this.defaults)}parser(e,n){return Ve.parse(e,n??this.defaults)}}St=new WeakSet,Kn=function(e,n){return(r,o)=>{const i={...o},s={...this.defaults,...i};this.defaults.async===!0&&i.async===!1&&(s.silent||console.warn("marked(): The async option was set to true by an extension. The async: false option sent to parse will be ignored."),s.async=!0);const l=Bt(this,sn,ms).call(this,!!s.silent,!!s.async);if(typeof r>"u"||r===null)return l(new Error("marked(): input parameter is undefined or null"));if(typeof r!="string")return l(new Error("marked(): input parameter is of type "+Object.prototype.toString.call(r)+", string expected"));if(s.hooks&&(s.hooks.options=s),s.async)return Promise.resolve(s.hooks?s.hooks.preprocess(r):r).then(c=>e(c,s)).then(c=>s.hooks?s.hooks.processAllTokens(c):c).then(c=>s.walkTokens?Promise.all(this.walkTokens(c,s.walkTokens)).then(()=>c):c).then(c=>n(c,s)).then(c=>s.hooks?s.hooks.postprocess(c):c).catch(l);try{s.hooks&&(r=s.hooks.preprocess(r));let c=e(r,s);s.hooks&&(c=s.hooks.processAllTokens(c)),s.walkTokens&&this.walkTokens(c,s.walkTokens);let f=n(c,s);return s.hooks&&(f=s.hooks.postprocess(f)),f}catch(c){return l(c)}}},sn=new WeakSet,ms=function(e,n){return r=>{if(r.message+=`
|
|
103
|
-
Please report this to https://github.com/markedjs/marked.`,e){const o="<p>An error occurred:</p><pre>"+Se(r.message+"",!0)+"</pre>";return n?Promise.resolve(o):o}if(n)return Promise.reject(r);throw r}};const et=new bd;function fe(t,e){return et.parse(t,e)}fe.options=fe.setOptions=function(t){return et.setOptions(t),fe.defaults=et.defaults,ss(fe.defaults),fe};fe.getDefaults=dr;fe.defaults=tt;fe.use=function(...t){return et.use(...t),fe.defaults=et.defaults,ss(fe.defaults),fe};fe.walkTokens=function(t,e){return et.walkTokens(t,e)};fe.parseInline=et.parseInline;fe.Parser=Ve;fe.parser=Ve.parse;fe.Renderer=on;fe.TextRenderer=vr;fe.Lexer=Oe;fe.lexer=Oe.lex;fe.Tokenizer=nn;fe.Hooks=_t;fe.parse=fe;fe.options;fe.setOptions;fe.use;fe.walkTokens;fe.parseInline;Ve.parse;Oe.lex;function xd({className:t,text:e}){return v.jsx("span",{className:t,dangerouslySetInnerHTML:{__html:fe.parse(e)}})}const kd="_menuItem_fkcvm_106",yd="_highlightFrame_fkcvm_120",_d="_rightIcon_fkcvm_128",Cd="_leftIcon_fkcvm_136",vt={menuItem:kd,highlightFrame:yd,rightIcon:_d,"menuItem--selected":"_menuItem--selected_fkcvm_133",leftIcon:Cd},Ed=({className:t,href:e,isSelected:n,labelPillText:r,leftIcon:o,onClick:i,rightIcon:s,role:l,text:c})=>v.jsx(Ue,{role:l,onClick:i,className:ne(t,vt.menuItem,{[vt["menuItem--selected"]]:n}),...e?{href:e}:{},children:v.jsxs("span",{className:ne(vt.highlightFrame),children:[v.jsx("span",{className:vt.leftIcon,children:o}),v.jsx(we,{type:n?"h5":"body-large",as:"span",children:c}),r&&v.jsx(os,{label:r,size:"medium"}),s&&v.jsx("span",{className:vt.rightIcon,children:s})]})}),Rd="_backdrop_mb7hx_106",Sd={backdrop:Rd},gs=g.forwardRef((t,e)=>v.jsx("div",{ref:e,...t,className:Sd.backdrop}));gs.displayName="Backdrop";const Md="_modal_ss4j4_106",Td="_modalWrapper_ss4j4_114",$d="_modalHeader_ss4j4_126",Ld="_modalFooter_ss4j4_148",bt={modal:Md,modalWrapper:Td,modalHeader:$d,modalFooter:Ld,"modalFooter--alwaysVisible":"_modalFooter--alwaysVisible_ss4j4_156"},Pd=({ariaLabel:t,ariaLabelledBy:e,closeButtonText:n="Abbrechen",modalBody:r,modalFooter:o,modalHeader:i,onClose:s,open:l})=>v.jsx(Qo,{"aria-label":t,"aria-labelledby":e,open:l,onClose:s,slots:{backdrop:gs},className:bt.modal,children:v.jsxs("div",{className:bt.modalWrapper,children:[v.jsx("div",{className:bt.modalHeader,children:i}),r,v.jsxs("div",{className:ne(bt.modalFooter,{[bt["modalFooter--alwaysVisible"]]:!!o}),children:[v.jsx(fr,{onClick:s,color:"blue",size:"large",text:n}),o]})]})}),Id="_navBar_eadjz_106",Ad={navBar:Id},Bd=({children:t,onChange:e,value:n})=>{const[r,o]=g.useState(n||""),i=s=>{e(s),o(s)};return v.jsx("ul",{className:Ad.navBar,children:g.Children.map(t,s=>g.cloneElement(s,{active:s.props.id.toLowerCase()===r.toLowerCase(),onChange:i}))})},Od="_listItem_3hl0l_106",Vd="_navItem_3hl0l_106",Fd="_selector_3hl0l_120",Nd="_label_3hl0l_141",xt={listItem:Od,navItem:Vd,selector:Fd,"navItem--active":"_navItem--active_3hl0l_128",label:Nd},jd=({active:t,ariaLabel:e,icon:n,id:r,label:o,onChange:i})=>{const s=()=>{i&&i(r)};return v.jsx("li",{className:xt.listItem,children:v.jsxs(Ue,{className:ne(xt.navItem,{[xt["navItem--active"]]:t}),onClick:s,"aria-label":e,children:[v.jsx("div",{className:xt.selector}),n,o&&v.jsx(we,{className:xt.label,type:"detail-medium",as:"span",children:o})]})})},Wd="_root_1j4ie_113",Dt={root:Wd,"root--24":"_root--24_1j4ie_120","root--28":"_root--28_1j4ie_124","root--32":"_root--32_1j4ie_128","root--40":"_root--40_1j4ie_132","root--48":"_root--48_1j4ie_136","root--56":"_root--56_1j4ie_140","root--64":"_root--64_1j4ie_144","root--80":"_root--80_1j4ie_148","root--120":"_root--120_1j4ie_152","root--280":"_root--280_1j4ie_156","root--square":"_root--square_1j4ie_160","root--circular":"_root--circular_1j4ie_172","root--isPlaceholder":"_root--isPlaceholder_1j4ie_175"},ws=({alt:t,isPlaceholder:e,shape:n,size:r,src:o})=>{const i=Dt["root--isPlaceholder"];return v.jsx("div",{className:ne(Dt.root,Dt[`root--${r}`],Dt[`root--${n}`],{[i]:e}),children:o&&v.jsx(rs,{src:o,alt:t})})},Dd="_root_1fwj7_106",Zd="_thumbnail_1fwj7_113",zd="_iconWrapper_1fwj7_117",Hd="_detail_1fwj7_128",qd="_title_1fwj7_136",Ud="_notificationText_1fwj7_143",Yd="_seen_1fwj7_153",Kd="_bubble_1fwj7_156",je={root:Dd,thumbnail:Zd,iconWrapper:zd,detail:Hd,title:qd,notificationText:Ud,seen:Yd,bubble:Kd},Gd=({defaultIcon:t,imgSrc:e,isSeen:n=!1,linkText:r,onNotificationClick:o,timeAgo:i,title:s})=>v.jsxs("div",{className:ne(je.root,{[je.seen]:n}),children:[e?v.jsx(ws,{alt:s,src:e,shape:"square",size:"56",className:je.thumbnail}):v.jsx("div",{className:je.iconWrapper,children:t}),v.jsxs("div",{className:je.detail,children:[v.jsx(we,{type:"detail-medium",className:je.title,children:s}),v.jsx(Ue,{onClick:o,className:je.button,children:v.jsx(we,{type:"h5",className:je.notificationText,children:r})}),v.jsx(we,{type:"detail-medium",children:i})]}),v.jsx("div",{className:je.bubble})]}),Xd="_wrapper_r4p4i_106",Zt={wrapper:Xd,"wrapper--large":"_wrapper--large_r4p4i_117","wrapper--small":"_wrapper--small_r4p4i_120","wrapper--iconWrapper":"_wrapper--iconWrapper_r4p4i_124"},Jd=({className:t,icon:e,size:n})=>{const r=ft(e,[Be]);return v.jsx("div",{className:ne(Zt.wrapper,t,{[Zt[`wrapper--${n}`]]:n}),"data-testid":"placeholder-thumbnail",children:v.jsx("div",{className:ne(Zt.wrapper,{[Zt["wrapper--iconWrapper"]]:n==="large"}),children:r})})},Qd="_base_myrx5_106",e5={base:Qd};var qt=(t=>(t[t.lg=16]="lg",t[t.md=12]="md",t[t.sm=8]="sm",t[t.xl=24]="xl",t))(qt||{});const vs=g.forwardRef(({anchor:t,children:e,container:n,id:r,offset:o="sm",open:i,placement:s,strategy:l="fixed"},c)=>{let f=qt.sm;return typeof o=="object"?f=o:qt[o]&&(f=qt[o]),v.jsx(Xo,{ref:c,className:e5.base,id:r,open:i,anchor:t,offset:f,placement:s,container:n,strategy:l,children:e})});vs.displayName="Popup";const t5="_radio_183c9_106",go={radio:t5,"radio--small":"_radio--small_183c9_124"};function n5({checked:t,disabled:e,id:n,label:r,onChange:o,size:i,value:s}){const l=go[`radio--${i}`];return v.jsxs("span",{className:go.radio,children:[v.jsx("input",{checked:t,onChange:o,"aria-disabled":e,"aria-label":r,className:l,value:s,disabled:e,type:"radio",role:"radio",id:n}),v.jsx("label",{htmlFor:n,className:l,children:r})]})}const r5="_radiobuttoncluster_1sycx_106",o5={radiobuttoncluster:r5};function s5(t){const{children:e,disabled:n,onChange:r,value:o}=t;function i(l){r(l)}const s=g.Children.map(e,l=>g.cloneElement(l,{checked:o===l.props.value,onChange:i}));return v.jsx(ns,{disabled:n,className:o5.radiobuttoncluster,children:s})}const i5="_root_1d9kf_106",a5="_toggle_1d9kf_111",l5="_selectedLabel_1d9kf_122",c5="_label_1d9kf_131",u5="_disabled_1d9kf_139",f5="_filled_1d9kf_155",d5="_error_1d9kf_185",h5="_icon_1d9kf_194",p5="_expanded_1d9kf_198",m5="_hidden_1d9kf_202",g5="_option_1d9kf_206",w5="_selected_1d9kf_122",v5="_dropdown_1d9kf_238",b5="_errorMessage_1d9kf_248",Re={root:i5,toggle:a5,selectedLabel:l5,label:c5,disabled:u5,filled:f5,error:d5,icon:h5,expanded:p5,hidden:m5,option:g5,selected:w5,dropdown:v5,errorMessage:b5},x5=t=>{const e=[];return g.Children.forEach(t,n=>{if(g.isValidElement(n)&&n.type==="option"){const r=n.props.value,o=n.props.label||n.props.children;e.push({label:o,value:r})}}),e};function k5(t,e){return t.find(n=>n.value===e)}function y5({options:t,value:e}){const n=k5(t,e);return n?n.label:null}function _5({child:t,isSelected:e}){const{label:n,value:r}=t,{getRootProps:o}=c1({disabled:!1,label:n,value:r});return v.jsx("option",{value:r==null?void 0:r.toString(),...o(),className:ne(Re.option,{[Re.selected]:e}),children:n})}function C5(t){const{children:e,disabled:n,error:r,errorMessage:o,filled:i=!1,onChange:s,placeholder:l,value:c}=t,f=g.useRef(null),[u,h]=g.useState(!1),p=(y,k)=>{s(k)},{contextValue:m,getButtonProps:w,getListboxProps:b}=h1({disabled:n,listboxRef:f,onChange:p,onOpenChange:h,open:u,value:c}),C=x5(e),E=y5({options:C,value:c});return v.jsxs("div",{className:Re.root,children:[v.jsxs("div",{className:ne(Re.toggle,{[Re.filled]:i},{[Re.disabled]:n},{[Re.error]:r}),...w(),children:[v.jsx("span",{className:Re.label,children:v.jsx(we,{type:"body-large",className:ne({[Re.selectedLabel]:E}),children:E||(l??" ")})}),v.jsx(Be,{name:"chevron_down",size:"24",className:ne(Re.icon,{[Re.expanded]:u})})]}),v.jsx("div",{className:ne(Re.dropdown,{[Re.hidden]:!u}),...b(),children:v.jsx(p1,{value:m,children:C.map((y,k)=>v.jsx(_5,{child:y,isSelected:y.value===c},k))})}),r&&o&&v.jsx(we,{type:"detail-bold",className:Re.errorMessage,children:o})]})}const E5="_sticker_l4sw0_106",Fn={sticker:E5,"sticker--color-green":"_sticker--color-green_l4sw0_113","sticker--color-pink":"_sticker--color-pink_l4sw0_116","sticker--color-lavender":"_sticker--color-lavender_l4sw0_119","sticker--color-teal":"_sticker--color-teal_l4sw0_125","sticker--color-orange":"_sticker--color-orange_l4sw0_131","sticker--color-grey":"_sticker--color-grey_l4sw0_134","sticker--size-small":"_sticker--size-small_l4sw0_137","sticker--size-medium":"_sticker--size-medium_l4sw0_141","sticker--size-large":"_sticker--size-large_l4sw0_145"},R5=({color:t,icon:e,size:n})=>{const r=ne(Fn.sticker,Fn[`sticker--color-${t}`],Fn[`sticker--size-${n}`]);return v.jsx("div",{className:r,children:v.jsx(Be,{name:e})})},S5="_wrapper_1h65g_106",M5="_label_1h65g_110",T5="_textArea_1h65g_124",$5="_textAreaContainer_1h65g_152",Ze={wrapper:S5,label:M5,textArea:T5,textAreaContainer:$5,"textAreaContainer--dark":"_textAreaContainer--dark_1h65g_158","textAreaContainer--light":"_textAreaContainer--light_1h65g_173","textAreaContainer--medium":"_textAreaContainer--medium_1h65g_191","textAreaContainer--small":"_textAreaContainer--small_1h65g_212","textAreaContainer--error":"_textAreaContainer--error_1h65g_232","textAreaContainer--errorMessage":"_textAreaContainer--errorMessage_1h65g_250"},L5=({colorScheme:t,errorMessage:e,id:n,label:r,name:o,ref:i,size:s,...l})=>{const{getInputProps:c,getRootProps:f}=Io({inputRef:i,...l}),u=c(),{disabled:h}=u,p=!!e,m=Ze[`textAreaContainer--${t}`],w=Ze[`textAreaContainer--${s}`];return v.jsxs("div",{className:Ze.wrapper,children:[v.jsxs("div",{className:ne(Ze.textAreaContainer,w,m,{[Ze["textAreaContainer--error"]]:p}),...f(),children:[v.jsx("textarea",{...u,id:n,name:o,"aria-disabled":h,"aria-label":r,className:ne(Ze.textArea),placeholder:""}),v.jsx("label",{className:Ze.label,htmlFor:n,children:v.jsx(we,{type:s==="medium"?"body-large":"body-regular",children:r})})]}),p&&v.jsx(we,{className:Ze["textAreaContainer--errorMessage"],type:"detail-bold",children:e})]})},P5="_wrapper_upxij_106",I5="_textInputContainer_upxij_109",A5="_textInput_upxij_109",Ge={wrapper:P5,textInputContainer:I5,textInput:A5,"textInput--medium":"_textInput--medium_upxij_153","textInput--small":"_textInput--small_upxij_173","textInput--dark":"_textInput--dark_upxij_192","textInput--light":"_textInput--light_upxij_207","textInput--error":"_textInput--error_upxij_225","textInputContainer--errorMessage":"_textInputContainer--errorMessage_upxij_243"},B5=({colorScheme:t,errorMessage:e,id:n,label:r,name:o,ref:i,size:s,...l})=>{const{getInputProps:c,getRootProps:f}=Io({inputRef:i,...l}),u=c(),{disabled:h}=u,p=!!e,m=Ge[`textInput--${t}`],w=Ge[`textInput--${s}`];return v.jsxs("div",{className:Ge.wrapper,children:[v.jsxs("div",{className:Ge.textInputContainer,...f(),children:[v.jsx("input",{...u,id:n,type:"text",name:o,"aria-disabled":h,"aria-label":r,className:ne(Ge.textInput,w,m,{[Ge["textInput--error"]]:p}),placeholder:""}),v.jsx("label",{htmlFor:n,children:v.jsx(we,{type:s==="medium"?"body-large":"body-regular",children:r})})]}),p&&v.jsx(we,{className:Ge["textInputContainer--errorMessage"],type:"detail-bold",children:e})]})},O5="_tile_phuce_106",V5="_tile__value_phuce_126",zt={tile:O5,"tile--fullWidth":"_tile--fullWidth_phuce_119","tile--icon":"_tile--icon_phuce_122",tile__value:V5},F5=({fullWidth:t=!1,icon:e,primaryText:n,secondaryText:r,...o})=>v.jsxs(Ue,{...o,className:ne(zt.tile,{[zt["tile--icon"]]:e,[zt["tile--fullWidth"]]:t}),children:[e&&v.jsx(Be,{name:e}),n&&v.jsx(we,{type:"detail-bold",className:zt.tile__value,children:n}),r&&v.jsx(we,{type:"detail-medium",children:r})]}),N5="_slider_1cu02_112",j5="_focusVisible_1cu02_134",Nn={switch:"_switch_1cu02_106",slider:N5,focusVisible:j5},bs=t=>{const{checked:e,disabled:n,focusVisible:r,getInputProps:o}=m1(t),{className:i,id:s}=t;return v.jsxs("span",{className:ne(Nn.switch,i),children:[v.jsx("input",{...o(),type:"checkbox","aria-checked":e,"aria-disabled":n,role:"switch",id:s,"data-testid":"toggle-switch"}),v.jsx("span",{className:ne(Nn.slider,{[Nn.focusVisible]:r})})]})},W5="_toggleInput_14m6o_106",D5="_textLabel_14m6o_119",at={toggleInput:W5,textLabel:D5,switch:"_switch_14m6o_122","toggleInput--checked":"_toggleInput--checked_14m6o_125","toggleInput--disabled":"_toggleInput--disabled_14m6o_128","toggleInput--withBorder":"_toggleInput--withBorder_14m6o_131"},Z5=({checked:t,defaultChecked:e,disabled:n,icon:r,label:o,onChange:i,withBorder:s})=>v.jsxs("label",{className:ne(at.toggleInput,{[at["toggleInput--withBorder"]]:s,[at["toggleInput--checked"]]:t,[at["toggleInput--disabled"]]:n}),children:[r&&v.jsx(Be,{name:r,size:"32"}),v.jsx(we,{type:"body-large",className:at.textLabel,children:o}),v.jsx(bs,{onChange:i,disabled:n,checked:t,defaultChecked:e,className:at.switch})]});exports.Accordion=Ws;exports.AccordionItem=Us;exports.Badge=$1;exports.BadgeIcon=ur;exports.BadgeLabel=pf;exports.Button=Ue;exports.ButtonPrimary=gf;exports.Card=yf;exports.CardBody=es;exports.CardHeader=ts;exports.Divider=Ef;exports.Fieldset=ns;exports.Form=Mf;exports.Icon=Be;exports.IconButton=Un;exports.Image=rs;exports.LabelPill=os;exports.Legend=Bf;exports.Loader=Ff;exports.Markdown=xd;exports.MenuItem=Ed;exports.Modal=Pd;exports.NavBar=Bd;exports.NavItem=jd;exports.NotificationBubble=qn;exports.NotificationListItem=Gd;exports.PlaceholderThumbnail=Jd;exports.Popup=vs;exports.RadioButton=n5;exports.RadioButtonCluster=s5;exports.Select=C5;exports.Sticker=R5;exports.TextArea=L5;exports.TextButton=fr;exports.TextInput=B5;exports.Thumbnail=ws;exports.Tile=F5;exports.Toggle=bs;exports.ToggleInput=Z5;exports.Typography=we;
|
|
103
|
+
Please report this to https://github.com/markedjs/marked.`,e){const o="<p>An error occurred:</p><pre>"+Se(r.message+"",!0)+"</pre>";return n?Promise.resolve(o):o}if(n)return Promise.reject(r);throw r}};const et=new bd;function fe(t,e){return et.parse(t,e)}fe.options=fe.setOptions=function(t){return et.setOptions(t),fe.defaults=et.defaults,ss(fe.defaults),fe};fe.getDefaults=dr;fe.defaults=tt;fe.use=function(...t){return et.use(...t),fe.defaults=et.defaults,ss(fe.defaults),fe};fe.walkTokens=function(t,e){return et.walkTokens(t,e)};fe.parseInline=et.parseInline;fe.Parser=Ve;fe.parser=Ve.parse;fe.Renderer=on;fe.TextRenderer=vr;fe.Lexer=Oe;fe.lexer=Oe.lex;fe.Tokenizer=nn;fe.Hooks=_t;fe.parse=fe;fe.options;fe.setOptions;fe.use;fe.walkTokens;fe.parseInline;Ve.parse;Oe.lex;function xd({className:t,text:e}){return v.jsx("span",{className:t,dangerouslySetInnerHTML:{__html:fe.parse(e)}})}const kd="_menuItem_fkcvm_106",yd="_highlightFrame_fkcvm_120",_d="_rightIcon_fkcvm_128",Cd="_leftIcon_fkcvm_136",vt={menuItem:kd,highlightFrame:yd,rightIcon:_d,"menuItem--selected":"_menuItem--selected_fkcvm_133",leftIcon:Cd},Ed=({className:t,href:e,isSelected:n,labelPillText:r,leftIcon:o,onClick:i,rightIcon:s,role:l,text:c})=>v.jsx(Ue,{role:l,onClick:i,className:ne(t,vt.menuItem,{[vt["menuItem--selected"]]:n}),...e?{href:e}:{},children:v.jsxs("span",{className:ne(vt.highlightFrame),children:[v.jsx("span",{className:vt.leftIcon,children:o}),v.jsx(we,{type:n?"h5":"body-large",as:"span",children:c}),r&&v.jsx(os,{label:r,size:"medium"}),s&&v.jsx("span",{className:vt.rightIcon,children:s})]})}),Rd="_navBar_eadjz_106",Sd={navBar:Rd},Md=({children:t,onChange:e,value:n})=>{const[r,o]=g.useState(n||""),i=s=>{e(s),o(s)};return v.jsx("ul",{className:Sd.navBar,children:g.Children.map(t,s=>g.cloneElement(s,{active:s.props.id.toLowerCase()===r.toLowerCase(),onChange:i}))})},Td="_listItem_3hl0l_106",$d="_navItem_3hl0l_106",Ld="_selector_3hl0l_120",Pd="_label_3hl0l_141",bt={listItem:Td,navItem:$d,selector:Ld,"navItem--active":"_navItem--active_3hl0l_128",label:Pd},Id=({active:t,ariaLabel:e,icon:n,id:r,label:o,onChange:i})=>{const s=()=>{i&&i(r)};return v.jsx("li",{className:bt.listItem,children:v.jsxs(Ue,{className:ne(bt.navItem,{[bt["navItem--active"]]:t}),onClick:s,"aria-label":e,children:[v.jsx("div",{className:bt.selector}),n,o&&v.jsx(we,{className:bt.label,type:"detail-medium",as:"span",children:o})]})})},Ad="_root_1j4ie_113",Dt={root:Ad,"root--24":"_root--24_1j4ie_120","root--28":"_root--28_1j4ie_124","root--32":"_root--32_1j4ie_128","root--40":"_root--40_1j4ie_132","root--48":"_root--48_1j4ie_136","root--56":"_root--56_1j4ie_140","root--64":"_root--64_1j4ie_144","root--80":"_root--80_1j4ie_148","root--120":"_root--120_1j4ie_152","root--280":"_root--280_1j4ie_156","root--square":"_root--square_1j4ie_160","root--circular":"_root--circular_1j4ie_172","root--isPlaceholder":"_root--isPlaceholder_1j4ie_175"},gs=({alt:t,isPlaceholder:e,shape:n,size:r,src:o})=>{const i=Dt["root--isPlaceholder"];return v.jsx("div",{className:ne(Dt.root,Dt[`root--${r}`],Dt[`root--${n}`],{[i]:e}),children:o&&v.jsx(rs,{src:o,alt:t})})},Bd="_root_1fwj7_106",Od="_thumbnail_1fwj7_113",Vd="_iconWrapper_1fwj7_117",Fd="_detail_1fwj7_128",Nd="_title_1fwj7_136",jd="_notificationText_1fwj7_143",Wd="_seen_1fwj7_153",Dd="_bubble_1fwj7_156",je={root:Bd,thumbnail:Od,iconWrapper:Vd,detail:Fd,title:Nd,notificationText:jd,seen:Wd,bubble:Dd},Zd=({defaultIcon:t,imgSrc:e,isSeen:n=!1,linkText:r,onNotificationClick:o,timeAgo:i,title:s})=>v.jsxs("div",{className:ne(je.root,{[je.seen]:n}),children:[e?v.jsx(gs,{alt:s,src:e,shape:"square",size:"56",className:je.thumbnail}):v.jsx("div",{className:je.iconWrapper,children:t}),v.jsxs("div",{className:je.detail,children:[v.jsx(we,{type:"detail-medium",className:je.title,children:s}),v.jsx(Ue,{onClick:o,className:je.button,children:v.jsx(we,{type:"h5",className:je.notificationText,children:r})}),v.jsx(we,{type:"detail-medium",children:i})]}),v.jsx("div",{className:je.bubble})]}),zd="_wrapper_r4p4i_106",Zt={wrapper:zd,"wrapper--large":"_wrapper--large_r4p4i_117","wrapper--small":"_wrapper--small_r4p4i_120","wrapper--iconWrapper":"_wrapper--iconWrapper_r4p4i_124"},Hd=({className:t,icon:e,size:n})=>{const r=ft(e,[Be]);return v.jsx("div",{className:ne(Zt.wrapper,t,{[Zt[`wrapper--${n}`]]:n}),"data-testid":"placeholder-thumbnail",children:v.jsx("div",{className:ne(Zt.wrapper,{[Zt["wrapper--iconWrapper"]]:n==="large"}),children:r})})},qd="_base_myrx5_106",Ud={base:qd};var qt=(t=>(t[t.lg=16]="lg",t[t.md=12]="md",t[t.sm=8]="sm",t[t.xl=24]="xl",t))(qt||{});const ws=g.forwardRef(({anchor:t,children:e,container:n,id:r,offset:o="sm",open:i,placement:s,strategy:l="fixed"},c)=>{let f=qt.sm;return typeof o=="object"?f=o:qt[o]&&(f=qt[o]),v.jsx(Xo,{ref:c,className:Ud.base,id:r,open:i,anchor:t,offset:f,placement:s,container:n,strategy:l,children:e})});ws.displayName="Popup";const Yd="_radio_183c9_106",go={radio:Yd,"radio--small":"_radio--small_183c9_124"};function Kd({checked:t,disabled:e,id:n,label:r,onChange:o,size:i,value:s}){const l=go[`radio--${i}`];return v.jsxs("span",{className:go.radio,children:[v.jsx("input",{checked:t,onChange:o,"aria-disabled":e,"aria-label":r,className:l,value:s,disabled:e,type:"radio",role:"radio",id:n}),v.jsx("label",{htmlFor:n,className:l,children:r})]})}const Gd="_radiobuttoncluster_1sycx_106",Xd={radiobuttoncluster:Gd};function Jd(t){const{children:e,disabled:n,onChange:r,value:o}=t;function i(l){r(l)}const s=g.Children.map(e,l=>g.cloneElement(l,{checked:o===l.props.value,onChange:i}));return v.jsx(ns,{disabled:n,className:Xd.radiobuttoncluster,children:s})}const Qd="_root_1d9kf_106",e5="_toggle_1d9kf_111",t5="_selectedLabel_1d9kf_122",n5="_label_1d9kf_131",r5="_disabled_1d9kf_139",o5="_filled_1d9kf_155",s5="_error_1d9kf_185",i5="_icon_1d9kf_194",a5="_expanded_1d9kf_198",l5="_hidden_1d9kf_202",c5="_option_1d9kf_206",u5="_selected_1d9kf_122",f5="_dropdown_1d9kf_238",d5="_errorMessage_1d9kf_248",Re={root:Qd,toggle:e5,selectedLabel:t5,label:n5,disabled:r5,filled:o5,error:s5,icon:i5,expanded:a5,hidden:l5,option:c5,selected:u5,dropdown:f5,errorMessage:d5},h5=t=>{const e=[];return g.Children.forEach(t,n=>{if(g.isValidElement(n)&&n.type==="option"){const r=n.props.value,o=n.props.label||n.props.children;e.push({label:o,value:r})}}),e};function p5(t,e){return t.find(n=>n.value===e)}function m5({options:t,value:e}){const n=p5(t,e);return n?n.label:null}function g5({child:t,isSelected:e}){const{label:n,value:r}=t,{getRootProps:o}=c1({disabled:!1,label:n,value:r});return v.jsx("option",{value:r==null?void 0:r.toString(),...o(),className:ne(Re.option,{[Re.selected]:e}),children:n})}function w5(t){const{children:e,disabled:n,error:r,errorMessage:o,filled:i=!1,onChange:s,placeholder:l,value:c}=t,f=g.useRef(null),[u,h]=g.useState(!1),p=(y,k)=>{s(k)},{contextValue:m,getButtonProps:w,getListboxProps:b}=h1({disabled:n,listboxRef:f,onChange:p,onOpenChange:h,open:u,value:c}),C=h5(e),E=m5({options:C,value:c});return v.jsxs("div",{className:Re.root,children:[v.jsxs("div",{className:ne(Re.toggle,{[Re.filled]:i},{[Re.disabled]:n},{[Re.error]:r}),...w(),children:[v.jsx("span",{className:Re.label,children:v.jsx(we,{type:"body-large",className:ne({[Re.selectedLabel]:E}),children:E||(l??" ")})}),v.jsx(Be,{name:"chevron_down",size:"24",className:ne(Re.icon,{[Re.expanded]:u})})]}),v.jsx("div",{className:ne(Re.dropdown,{[Re.hidden]:!u}),...b(),children:v.jsx(p1,{value:m,children:C.map((y,k)=>v.jsx(g5,{child:y,isSelected:y.value===c},k))})}),r&&o&&v.jsx(we,{type:"detail-bold",className:Re.errorMessage,children:o})]})}const v5="_backdrop_mb7hx_106",b5={backdrop:v5},vs=g.forwardRef((t,e)=>v.jsx("div",{ref:e,...t,className:b5.backdrop}));vs.displayName="Backdrop";const x5="_sheet_y31ty_106",k5="_sheetWrapper_y31ty_114",y5="_sheetHeader_y31ty_126",_5="_sheetFooter_y31ty_148",xt={sheet:x5,sheetWrapper:k5,sheetHeader:y5,sheetFooter:_5,"sheetFooter--alwaysVisible":"_sheetFooter--alwaysVisible_y31ty_156"},C5=({ariaLabel:t,ariaLabelledBy:e,closeButtonText:n="Abbrechen",onClose:r,open:o,sheetBody:i,sheetFooter:s,sheetHeader:l})=>v.jsx(Qo,{"aria-label":t,"aria-labelledby":e,open:o,onClose:r,slots:{backdrop:vs},className:xt.sheet,children:v.jsxs("div",{className:xt.sheetWrapper,children:[v.jsx("div",{className:xt.sheetHeader,children:l}),i,v.jsxs("div",{className:ne(xt.sheetFooter,{[xt["sheetFooter--alwaysVisible"]]:!!s}),children:[v.jsx(fr,{onClick:r,color:"blue",size:"large",text:n}),s]})]})}),E5="_sticker_l4sw0_106",Fn={sticker:E5,"sticker--color-green":"_sticker--color-green_l4sw0_113","sticker--color-pink":"_sticker--color-pink_l4sw0_116","sticker--color-lavender":"_sticker--color-lavender_l4sw0_119","sticker--color-teal":"_sticker--color-teal_l4sw0_125","sticker--color-orange":"_sticker--color-orange_l4sw0_131","sticker--color-grey":"_sticker--color-grey_l4sw0_134","sticker--size-small":"_sticker--size-small_l4sw0_137","sticker--size-medium":"_sticker--size-medium_l4sw0_141","sticker--size-large":"_sticker--size-large_l4sw0_145"},R5=({color:t,icon:e,size:n})=>{const r=ne(Fn.sticker,Fn[`sticker--color-${t}`],Fn[`sticker--size-${n}`]);return v.jsx("div",{className:r,children:v.jsx(Be,{name:e})})},S5="_wrapper_1h65g_106",M5="_label_1h65g_110",T5="_textArea_1h65g_124",$5="_textAreaContainer_1h65g_152",Ze={wrapper:S5,label:M5,textArea:T5,textAreaContainer:$5,"textAreaContainer--dark":"_textAreaContainer--dark_1h65g_158","textAreaContainer--light":"_textAreaContainer--light_1h65g_173","textAreaContainer--medium":"_textAreaContainer--medium_1h65g_191","textAreaContainer--small":"_textAreaContainer--small_1h65g_212","textAreaContainer--error":"_textAreaContainer--error_1h65g_232","textAreaContainer--errorMessage":"_textAreaContainer--errorMessage_1h65g_250"},L5=({colorScheme:t,errorMessage:e,id:n,label:r,name:o,ref:i,size:s,...l})=>{const{getInputProps:c,getRootProps:f}=Io({inputRef:i,...l}),u=c(),{disabled:h}=u,p=!!e,m=Ze[`textAreaContainer--${t}`],w=Ze[`textAreaContainer--${s}`];return v.jsxs("div",{className:Ze.wrapper,children:[v.jsxs("div",{className:ne(Ze.textAreaContainer,w,m,{[Ze["textAreaContainer--error"]]:p}),...f(),children:[v.jsx("textarea",{...u,id:n,name:o,"aria-disabled":h,"aria-label":r,className:ne(Ze.textArea),placeholder:""}),v.jsx("label",{className:Ze.label,htmlFor:n,children:v.jsx(we,{type:s==="medium"?"body-large":"body-regular",children:r})})]}),p&&v.jsx(we,{className:Ze["textAreaContainer--errorMessage"],type:"detail-bold",children:e})]})},P5="_wrapper_upxij_106",I5="_textInputContainer_upxij_109",A5="_textInput_upxij_109",Ge={wrapper:P5,textInputContainer:I5,textInput:A5,"textInput--medium":"_textInput--medium_upxij_153","textInput--small":"_textInput--small_upxij_173","textInput--dark":"_textInput--dark_upxij_192","textInput--light":"_textInput--light_upxij_207","textInput--error":"_textInput--error_upxij_225","textInputContainer--errorMessage":"_textInputContainer--errorMessage_upxij_243"},B5=({colorScheme:t,errorMessage:e,id:n,label:r,name:o,ref:i,size:s,...l})=>{const{getInputProps:c,getRootProps:f}=Io({inputRef:i,...l}),u=c(),{disabled:h}=u,p=!!e,m=Ge[`textInput--${t}`],w=Ge[`textInput--${s}`];return v.jsxs("div",{className:Ge.wrapper,children:[v.jsxs("div",{className:Ge.textInputContainer,...f(),children:[v.jsx("input",{...u,id:n,type:"text",name:o,"aria-disabled":h,"aria-label":r,className:ne(Ge.textInput,w,m,{[Ge["textInput--error"]]:p}),placeholder:""}),v.jsx("label",{htmlFor:n,children:v.jsx(we,{type:s==="medium"?"body-large":"body-regular",children:r})})]}),p&&v.jsx(we,{className:Ge["textInputContainer--errorMessage"],type:"detail-bold",children:e})]})},O5="_tile_phuce_106",V5="_tile__value_phuce_126",zt={tile:O5,"tile--fullWidth":"_tile--fullWidth_phuce_119","tile--icon":"_tile--icon_phuce_122",tile__value:V5},F5=({fullWidth:t=!1,icon:e,primaryText:n,secondaryText:r,...o})=>v.jsxs(Ue,{...o,className:ne(zt.tile,{[zt["tile--icon"]]:e,[zt["tile--fullWidth"]]:t}),children:[e&&v.jsx(Be,{name:e}),n&&v.jsx(we,{type:"detail-bold",className:zt.tile__value,children:n}),r&&v.jsx(we,{type:"detail-medium",children:r})]}),N5="_slider_1cu02_112",j5="_focusVisible_1cu02_134",Nn={switch:"_switch_1cu02_106",slider:N5,focusVisible:j5},bs=t=>{const{checked:e,disabled:n,focusVisible:r,getInputProps:o}=m1(t),{className:i,id:s}=t;return v.jsxs("span",{className:ne(Nn.switch,i),children:[v.jsx("input",{...o(),type:"checkbox","aria-checked":e,"aria-disabled":n,role:"switch",id:s,"data-testid":"toggle-switch"}),v.jsx("span",{className:ne(Nn.slider,{[Nn.focusVisible]:r})})]})},W5="_toggleInput_14m6o_106",D5="_textLabel_14m6o_119",at={toggleInput:W5,textLabel:D5,switch:"_switch_14m6o_122","toggleInput--checked":"_toggleInput--checked_14m6o_125","toggleInput--disabled":"_toggleInput--disabled_14m6o_128","toggleInput--withBorder":"_toggleInput--withBorder_14m6o_131"},Z5=({checked:t,defaultChecked:e,disabled:n,icon:r,label:o,onChange:i,withBorder:s})=>v.jsxs("label",{className:ne(at.toggleInput,{[at["toggleInput--withBorder"]]:s,[at["toggleInput--checked"]]:t,[at["toggleInput--disabled"]]:n}),children:[r&&v.jsx(Be,{name:r,size:"32"}),v.jsx(we,{type:"body-large",className:at.textLabel,children:o}),v.jsx(bs,{onChange:i,disabled:n,checked:t,defaultChecked:e,className:at.switch})]});exports.Accordion=Ws;exports.AccordionItem=Us;exports.Badge=$1;exports.BadgeIcon=ur;exports.BadgeLabel=pf;exports.Button=Ue;exports.ButtonPrimary=gf;exports.Card=yf;exports.CardBody=es;exports.CardHeader=ts;exports.Divider=Ef;exports.Fieldset=ns;exports.Form=Mf;exports.Icon=Be;exports.IconButton=Un;exports.Image=rs;exports.LabelPill=os;exports.Legend=Bf;exports.Loader=Ff;exports.Markdown=xd;exports.MenuItem=Ed;exports.NavBar=Md;exports.NavItem=Id;exports.NotificationBubble=qn;exports.NotificationListItem=Zd;exports.PlaceholderThumbnail=Hd;exports.Popup=ws;exports.RadioButton=Kd;exports.RadioButtonCluster=Jd;exports.Select=w5;exports.Sheet=C5;exports.Sticker=R5;exports.TextArea=L5;exports.TextButton=fr;exports.TextInput=B5;exports.Thumbnail=gs;exports.Tile=F5;exports.Toggle=bs;exports.ToggleInput=Z5;exports.Typography=we;
|
package/index.mjs
CHANGED
|
@@ -6927,99 +6927,46 @@ const f5 = "_menuItem_fkcvm_106", h5 = "_highlightFrame_fkcvm_120", p5 = "_right
|
|
|
6927
6927
|
s && /* @__PURE__ */ v.jsx("span", { className: vt.rightIcon, children: s })
|
|
6928
6928
|
] })
|
|
6929
6929
|
}
|
|
6930
|
-
), g5 = "
|
|
6931
|
-
|
|
6932
|
-
},
|
|
6933
|
-
ms.displayName = "Backdrop";
|
|
6934
|
-
const v5 = "_modal_ss4j4_106", b5 = "_modalWrapper_ss4j4_114", x5 = "_modalHeader_ss4j4_126", k5 = "_modalFooter_ss4j4_148", bt = {
|
|
6935
|
-
modal: v5,
|
|
6936
|
-
modalWrapper: b5,
|
|
6937
|
-
modalHeader: x5,
|
|
6938
|
-
modalFooter: k5,
|
|
6939
|
-
"modalFooter--alwaysVisible": "_modalFooter--alwaysVisible_ss4j4_156"
|
|
6940
|
-
}, Nf = ({
|
|
6941
|
-
ariaLabel: t,
|
|
6942
|
-
ariaLabelledBy: e,
|
|
6943
|
-
closeButtonText: n = "Abbrechen",
|
|
6944
|
-
modalBody: r,
|
|
6945
|
-
modalFooter: o,
|
|
6946
|
-
modalHeader: i,
|
|
6947
|
-
onClose: s,
|
|
6948
|
-
open: l
|
|
6949
|
-
}) => /* @__PURE__ */ v.jsx(
|
|
6950
|
-
ts,
|
|
6951
|
-
{
|
|
6952
|
-
"aria-label": t,
|
|
6953
|
-
"aria-labelledby": e,
|
|
6954
|
-
open: l,
|
|
6955
|
-
onClose: s,
|
|
6956
|
-
slots: { backdrop: ms },
|
|
6957
|
-
className: bt.modal,
|
|
6958
|
-
children: /* @__PURE__ */ v.jsxs("div", { className: bt.modalWrapper, children: [
|
|
6959
|
-
/* @__PURE__ */ v.jsx("div", { className: bt.modalHeader, children: i }),
|
|
6960
|
-
r,
|
|
6961
|
-
/* @__PURE__ */ v.jsxs(
|
|
6962
|
-
"div",
|
|
6963
|
-
{
|
|
6964
|
-
className: ne(bt.modalFooter, {
|
|
6965
|
-
[bt["modalFooter--alwaysVisible"]]: !!o
|
|
6966
|
-
}),
|
|
6967
|
-
children: [
|
|
6968
|
-
/* @__PURE__ */ v.jsx(
|
|
6969
|
-
rs,
|
|
6970
|
-
{
|
|
6971
|
-
onClick: s,
|
|
6972
|
-
color: "blue",
|
|
6973
|
-
size: "large",
|
|
6974
|
-
text: n
|
|
6975
|
-
}
|
|
6976
|
-
),
|
|
6977
|
-
o
|
|
6978
|
-
]
|
|
6979
|
-
}
|
|
6980
|
-
)
|
|
6981
|
-
] })
|
|
6982
|
-
}
|
|
6983
|
-
), y5 = "_navBar_eadjz_106", _5 = {
|
|
6984
|
-
navBar: y5
|
|
6985
|
-
}, jf = ({ children: t, onChange: e, value: n }) => {
|
|
6930
|
+
), g5 = "_navBar_eadjz_106", w5 = {
|
|
6931
|
+
navBar: g5
|
|
6932
|
+
}, Nf = ({ children: t, onChange: e, value: n }) => {
|
|
6986
6933
|
const [r, o] = Kn(n || ""), i = (s) => {
|
|
6987
6934
|
e(s), o(s);
|
|
6988
6935
|
};
|
|
6989
|
-
return /* @__PURE__ */ v.jsx("ul", { className:
|
|
6936
|
+
return /* @__PURE__ */ v.jsx("ul", { className: w5.navBar, children: Mt.map(
|
|
6990
6937
|
t,
|
|
6991
6938
|
(s) => Xn(s, {
|
|
6992
6939
|
active: s.props.id.toLowerCase() === r.toLowerCase(),
|
|
6993
6940
|
onChange: i
|
|
6994
6941
|
})
|
|
6995
6942
|
) });
|
|
6996
|
-
},
|
|
6997
|
-
listItem:
|
|
6998
|
-
navItem:
|
|
6999
|
-
selector:
|
|
6943
|
+
}, v5 = "_listItem_3hl0l_106", b5 = "_navItem_3hl0l_106", x5 = "_selector_3hl0l_120", k5 = "_label_3hl0l_141", bt = {
|
|
6944
|
+
listItem: v5,
|
|
6945
|
+
navItem: b5,
|
|
6946
|
+
selector: x5,
|
|
7000
6947
|
"navItem--active": "_navItem--active_3hl0l_128",
|
|
7001
|
-
label:
|
|
7002
|
-
},
|
|
6948
|
+
label: k5
|
|
6949
|
+
}, jf = ({ active: t, ariaLabel: e, icon: n, id: r, label: o, onChange: i }) => {
|
|
7003
6950
|
const s = () => {
|
|
7004
6951
|
i && i(r);
|
|
7005
6952
|
};
|
|
7006
|
-
return /* @__PURE__ */ v.jsx("li", { className:
|
|
6953
|
+
return /* @__PURE__ */ v.jsx("li", { className: bt.listItem, children: /* @__PURE__ */ v.jsxs(
|
|
7007
6954
|
et,
|
|
7008
6955
|
{
|
|
7009
|
-
className: ne(
|
|
7010
|
-
[
|
|
6956
|
+
className: ne(bt.navItem, {
|
|
6957
|
+
[bt["navItem--active"]]: t
|
|
7011
6958
|
}),
|
|
7012
6959
|
onClick: s,
|
|
7013
6960
|
"aria-label": e,
|
|
7014
6961
|
children: [
|
|
7015
|
-
/* @__PURE__ */ v.jsx("div", { className:
|
|
6962
|
+
/* @__PURE__ */ v.jsx("div", { className: bt.selector }),
|
|
7016
6963
|
n,
|
|
7017
|
-
o && /* @__PURE__ */ v.jsx(ve, { className:
|
|
6964
|
+
o && /* @__PURE__ */ v.jsx(ve, { className: bt.label, type: "detail-medium", as: "span", children: o })
|
|
7018
6965
|
]
|
|
7019
6966
|
}
|
|
7020
6967
|
) });
|
|
7021
|
-
},
|
|
7022
|
-
root:
|
|
6968
|
+
}, y5 = "_root_1j4ie_113", Zt = {
|
|
6969
|
+
root: y5,
|
|
7023
6970
|
"root--24": "_root--24_1j4ie_120",
|
|
7024
6971
|
"root--28": "_root--28_1j4ie_124",
|
|
7025
6972
|
"root--32": "_root--32_1j4ie_128",
|
|
@@ -7033,7 +6980,7 @@ const v5 = "_modal_ss4j4_106", b5 = "_modalWrapper_ss4j4_114", x5 = "_modalHeade
|
|
|
7033
6980
|
"root--square": "_root--square_1j4ie_160",
|
|
7034
6981
|
"root--circular": "_root--circular_1j4ie_172",
|
|
7035
6982
|
"root--isPlaceholder": "_root--isPlaceholder_1j4ie_175"
|
|
7036
|
-
},
|
|
6983
|
+
}, _5 = ({
|
|
7037
6984
|
alt: t,
|
|
7038
6985
|
isPlaceholder: e,
|
|
7039
6986
|
shape: n,
|
|
@@ -7050,16 +6997,16 @@ const v5 = "_modal_ss4j4_106", b5 = "_modalWrapper_ss4j4_114", x5 = "_modalHeade
|
|
|
7050
6997
|
children: o && /* @__PURE__ */ v.jsx(_d, { src: o, alt: t })
|
|
7051
6998
|
}
|
|
7052
6999
|
);
|
|
7053
|
-
},
|
|
7054
|
-
root:
|
|
7055
|
-
thumbnail:
|
|
7056
|
-
iconWrapper:
|
|
7057
|
-
detail:
|
|
7058
|
-
title:
|
|
7059
|
-
notificationText:
|
|
7060
|
-
seen:
|
|
7061
|
-
bubble:
|
|
7062
|
-
},
|
|
7000
|
+
}, E5 = "_root_1fwj7_106", C5 = "_thumbnail_1fwj7_113", R5 = "_iconWrapper_1fwj7_117", S5 = "_detail_1fwj7_128", M5 = "_title_1fwj7_136", T5 = "_notificationText_1fwj7_143", $5 = "_seen_1fwj7_153", L5 = "_bubble_1fwj7_156", je = {
|
|
7001
|
+
root: E5,
|
|
7002
|
+
thumbnail: C5,
|
|
7003
|
+
iconWrapper: R5,
|
|
7004
|
+
detail: S5,
|
|
7005
|
+
title: M5,
|
|
7006
|
+
notificationText: T5,
|
|
7007
|
+
seen: $5,
|
|
7008
|
+
bubble: L5
|
|
7009
|
+
}, Wf = ({
|
|
7063
7010
|
defaultIcon: t,
|
|
7064
7011
|
imgSrc: e,
|
|
7065
7012
|
isSeen: n = !1,
|
|
@@ -7069,7 +7016,7 @@ const v5 = "_modal_ss4j4_106", b5 = "_modalWrapper_ss4j4_114", x5 = "_modalHeade
|
|
|
7069
7016
|
title: s
|
|
7070
7017
|
}) => /* @__PURE__ */ v.jsxs("div", { className: ne(je.root, { [je.seen]: n }), children: [
|
|
7071
7018
|
e ? /* @__PURE__ */ v.jsx(
|
|
7072
|
-
|
|
7019
|
+
_5,
|
|
7073
7020
|
{
|
|
7074
7021
|
alt: s,
|
|
7075
7022
|
src: e,
|
|
@@ -7084,12 +7031,12 @@ const v5 = "_modal_ss4j4_106", b5 = "_modalWrapper_ss4j4_114", x5 = "_modalHeade
|
|
|
7084
7031
|
/* @__PURE__ */ v.jsx(ve, { type: "detail-medium", children: i })
|
|
7085
7032
|
] }),
|
|
7086
7033
|
/* @__PURE__ */ v.jsx("div", { className: je.bubble })
|
|
7087
|
-
] }),
|
|
7088
|
-
wrapper:
|
|
7034
|
+
] }), P5 = "_wrapper_r4p4i_106", zt = {
|
|
7035
|
+
wrapper: P5,
|
|
7089
7036
|
"wrapper--large": "_wrapper--large_r4p4i_117",
|
|
7090
7037
|
"wrapper--small": "_wrapper--small_r4p4i_120",
|
|
7091
7038
|
"wrapper--iconWrapper": "_wrapper--iconWrapper_r4p4i_124"
|
|
7092
|
-
},
|
|
7039
|
+
}, Df = ({ className: t, icon: e, size: n }) => {
|
|
7093
7040
|
const r = dt(e, [Fe]);
|
|
7094
7041
|
return /* @__PURE__ */ v.jsx(
|
|
7095
7042
|
"div",
|
|
@@ -7109,11 +7056,11 @@ const v5 = "_modal_ss4j4_106", b5 = "_modalWrapper_ss4j4_114", x5 = "_modalHeade
|
|
|
7109
7056
|
)
|
|
7110
7057
|
}
|
|
7111
7058
|
);
|
|
7112
|
-
},
|
|
7113
|
-
base:
|
|
7059
|
+
}, I5 = "_base_myrx5_106", A5 = {
|
|
7060
|
+
base: I5
|
|
7114
7061
|
};
|
|
7115
7062
|
var Ut = /* @__PURE__ */ ((t) => (t[t.lg = 16] = "lg", t[t.md = 12] = "md", t[t.sm = 8] = "sm", t[t.xl = 24] = "xl", t))(Ut || {});
|
|
7116
|
-
const
|
|
7063
|
+
const B5 = w(
|
|
7117
7064
|
({
|
|
7118
7065
|
anchor: t,
|
|
7119
7066
|
children: e,
|
|
@@ -7129,7 +7076,7 @@ const W5 = w(
|
|
|
7129
7076
|
Qo,
|
|
7130
7077
|
{
|
|
7131
7078
|
ref: c,
|
|
7132
|
-
className:
|
|
7079
|
+
className: A5.base,
|
|
7133
7080
|
id: r,
|
|
7134
7081
|
open: i,
|
|
7135
7082
|
anchor: t,
|
|
@@ -7142,12 +7089,12 @@ const W5 = w(
|
|
|
7142
7089
|
);
|
|
7143
7090
|
}
|
|
7144
7091
|
);
|
|
7145
|
-
|
|
7146
|
-
const
|
|
7147
|
-
radio:
|
|
7092
|
+
B5.displayName = "Popup";
|
|
7093
|
+
const O5 = "_radio_183c9_106", vo = {
|
|
7094
|
+
radio: O5,
|
|
7148
7095
|
"radio--small": "_radio--small_183c9_124"
|
|
7149
7096
|
};
|
|
7150
|
-
function
|
|
7097
|
+
function Zf({
|
|
7151
7098
|
checked: t,
|
|
7152
7099
|
disabled: e,
|
|
7153
7100
|
id: n,
|
|
@@ -7176,10 +7123,10 @@ function zf({
|
|
|
7176
7123
|
/* @__PURE__ */ v.jsx("label", { htmlFor: n, className: l, children: r })
|
|
7177
7124
|
] });
|
|
7178
7125
|
}
|
|
7179
|
-
const
|
|
7180
|
-
radiobuttoncluster:
|
|
7126
|
+
const V5 = "_radiobuttoncluster_1sycx_106", F5 = {
|
|
7127
|
+
radiobuttoncluster: V5
|
|
7181
7128
|
};
|
|
7182
|
-
function
|
|
7129
|
+
function zf(t) {
|
|
7183
7130
|
const { children: e, disabled: n, onChange: r, value: o } = t;
|
|
7184
7131
|
function i(l) {
|
|
7185
7132
|
r(l);
|
|
@@ -7188,24 +7135,24 @@ function Hf(t) {
|
|
|
7188
7135
|
checked: o === l.props.value,
|
|
7189
7136
|
onChange: i
|
|
7190
7137
|
}));
|
|
7191
|
-
return /* @__PURE__ */ v.jsx(xd, { disabled: n, className:
|
|
7192
|
-
}
|
|
7193
|
-
const
|
|
7194
|
-
root:
|
|
7195
|
-
toggle:
|
|
7196
|
-
selectedLabel:
|
|
7197
|
-
label:
|
|
7198
|
-
disabled:
|
|
7199
|
-
filled:
|
|
7200
|
-
error:
|
|
7201
|
-
icon:
|
|
7202
|
-
expanded:
|
|
7203
|
-
hidden:
|
|
7204
|
-
option:
|
|
7205
|
-
selected:
|
|
7206
|
-
dropdown:
|
|
7207
|
-
errorMessage:
|
|
7208
|
-
},
|
|
7138
|
+
return /* @__PURE__ */ v.jsx(xd, { disabled: n, className: F5.radiobuttoncluster, children: s });
|
|
7139
|
+
}
|
|
7140
|
+
const N5 = "_root_1d9kf_106", j5 = "_toggle_1d9kf_111", W5 = "_selectedLabel_1d9kf_122", D5 = "_label_1d9kf_131", Z5 = "_disabled_1d9kf_139", z5 = "_filled_1d9kf_155", H5 = "_error_1d9kf_185", q5 = "_icon_1d9kf_194", U5 = "_expanded_1d9kf_198", Y5 = "_hidden_1d9kf_202", K5 = "_option_1d9kf_206", G5 = "_selected_1d9kf_122", X5 = "_dropdown_1d9kf_238", J5 = "_errorMessage_1d9kf_248", Re = {
|
|
7141
|
+
root: N5,
|
|
7142
|
+
toggle: j5,
|
|
7143
|
+
selectedLabel: W5,
|
|
7144
|
+
label: D5,
|
|
7145
|
+
disabled: Z5,
|
|
7146
|
+
filled: z5,
|
|
7147
|
+
error: H5,
|
|
7148
|
+
icon: q5,
|
|
7149
|
+
expanded: U5,
|
|
7150
|
+
hidden: Y5,
|
|
7151
|
+
option: K5,
|
|
7152
|
+
selected: G5,
|
|
7153
|
+
dropdown: X5,
|
|
7154
|
+
errorMessage: J5
|
|
7155
|
+
}, Q5 = (t) => {
|
|
7209
7156
|
const e = [];
|
|
7210
7157
|
return Mt.forEach(t, (n) => {
|
|
7211
7158
|
if (Gn(n) && n.type === "option") {
|
|
@@ -7214,17 +7161,17 @@ const H5 = "_root_1d9kf_106", q5 = "_toggle_1d9kf_111", U5 = "_selectedLabel_1d9
|
|
|
7214
7161
|
}
|
|
7215
7162
|
}), e;
|
|
7216
7163
|
};
|
|
7217
|
-
function
|
|
7164
|
+
function ef(t, e) {
|
|
7218
7165
|
return t.find((n) => n.value === e);
|
|
7219
7166
|
}
|
|
7220
|
-
function
|
|
7167
|
+
function tf({
|
|
7221
7168
|
options: t,
|
|
7222
7169
|
value: e
|
|
7223
7170
|
}) {
|
|
7224
|
-
const n =
|
|
7171
|
+
const n = ef(t, e);
|
|
7225
7172
|
return n ? n.label : null;
|
|
7226
7173
|
}
|
|
7227
|
-
function
|
|
7174
|
+
function nf({
|
|
7228
7175
|
child: t,
|
|
7229
7176
|
isSelected: e
|
|
7230
7177
|
}) {
|
|
@@ -7239,7 +7186,7 @@ function cf({
|
|
|
7239
7186
|
}
|
|
7240
7187
|
);
|
|
7241
7188
|
}
|
|
7242
|
-
function
|
|
7189
|
+
function Hf(t) {
|
|
7243
7190
|
const {
|
|
7244
7191
|
children: e,
|
|
7245
7192
|
disabled: n,
|
|
@@ -7258,7 +7205,7 @@ function qf(t) {
|
|
|
7258
7205
|
onOpenChange: h,
|
|
7259
7206
|
open: u,
|
|
7260
7207
|
value: c
|
|
7261
|
-
}), E =
|
|
7208
|
+
}), E = Q5(e), C = tf({ options: E, value: c });
|
|
7262
7209
|
return /* @__PURE__ */ v.jsxs("div", { className: Re.root, children: [
|
|
7263
7210
|
/* @__PURE__ */ v.jsxs(
|
|
7264
7211
|
"div",
|
|
@@ -7295,13 +7242,66 @@ function qf(t) {
|
|
|
7295
7242
|
{
|
|
7296
7243
|
className: ne(Re.dropdown, { [Re.hidden]: !u }),
|
|
7297
7244
|
...b(),
|
|
7298
|
-
children: /* @__PURE__ */ v.jsx(ua, { value: m, children: E.map((y, k) => /* @__PURE__ */ v.jsx(
|
|
7245
|
+
children: /* @__PURE__ */ v.jsx(ua, { value: m, children: E.map((y, k) => /* @__PURE__ */ v.jsx(nf, { child: y, isSelected: y.value === c }, k)) })
|
|
7299
7246
|
}
|
|
7300
7247
|
),
|
|
7301
7248
|
r && o && /* @__PURE__ */ v.jsx(ve, { type: "detail-bold", className: Re.errorMessage, children: o })
|
|
7302
7249
|
] });
|
|
7303
7250
|
}
|
|
7304
|
-
const
|
|
7251
|
+
const rf = "_backdrop_mb7hx_106", of = {
|
|
7252
|
+
backdrop: rf
|
|
7253
|
+
}, ms = w((t, e) => /* @__PURE__ */ v.jsx("div", { ref: e, ...t, className: of.backdrop }));
|
|
7254
|
+
ms.displayName = "Backdrop";
|
|
7255
|
+
const sf = "_sheet_y31ty_106", af = "_sheetWrapper_y31ty_114", lf = "_sheetHeader_y31ty_126", cf = "_sheetFooter_y31ty_148", xt = {
|
|
7256
|
+
sheet: sf,
|
|
7257
|
+
sheetWrapper: af,
|
|
7258
|
+
sheetHeader: lf,
|
|
7259
|
+
sheetFooter: cf,
|
|
7260
|
+
"sheetFooter--alwaysVisible": "_sheetFooter--alwaysVisible_y31ty_156"
|
|
7261
|
+
}, qf = ({
|
|
7262
|
+
ariaLabel: t,
|
|
7263
|
+
ariaLabelledBy: e,
|
|
7264
|
+
closeButtonText: n = "Abbrechen",
|
|
7265
|
+
onClose: r,
|
|
7266
|
+
open: o,
|
|
7267
|
+
sheetBody: i,
|
|
7268
|
+
sheetFooter: s,
|
|
7269
|
+
sheetHeader: l
|
|
7270
|
+
}) => /* @__PURE__ */ v.jsx(
|
|
7271
|
+
ts,
|
|
7272
|
+
{
|
|
7273
|
+
"aria-label": t,
|
|
7274
|
+
"aria-labelledby": e,
|
|
7275
|
+
open: o,
|
|
7276
|
+
onClose: r,
|
|
7277
|
+
slots: { backdrop: ms },
|
|
7278
|
+
className: xt.sheet,
|
|
7279
|
+
children: /* @__PURE__ */ v.jsxs("div", { className: xt.sheetWrapper, children: [
|
|
7280
|
+
/* @__PURE__ */ v.jsx("div", { className: xt.sheetHeader, children: l }),
|
|
7281
|
+
i,
|
|
7282
|
+
/* @__PURE__ */ v.jsxs(
|
|
7283
|
+
"div",
|
|
7284
|
+
{
|
|
7285
|
+
className: ne(xt.sheetFooter, {
|
|
7286
|
+
[xt["sheetFooter--alwaysVisible"]]: !!s
|
|
7287
|
+
}),
|
|
7288
|
+
children: [
|
|
7289
|
+
/* @__PURE__ */ v.jsx(
|
|
7290
|
+
rs,
|
|
7291
|
+
{
|
|
7292
|
+
onClick: r,
|
|
7293
|
+
color: "blue",
|
|
7294
|
+
size: "large",
|
|
7295
|
+
text: n
|
|
7296
|
+
}
|
|
7297
|
+
),
|
|
7298
|
+
s
|
|
7299
|
+
]
|
|
7300
|
+
}
|
|
7301
|
+
)
|
|
7302
|
+
] })
|
|
7303
|
+
}
|
|
7304
|
+
), uf = "_sticker_l4sw0_106", Nn = {
|
|
7305
7305
|
sticker: uf,
|
|
7306
7306
|
"sticker--color-green": "_sticker--color-green_l4sw0_113",
|
|
7307
7307
|
"sticker--color-pink": "_sticker--color-pink_l4sw0_116",
|
|
@@ -7538,21 +7538,21 @@ export {
|
|
|
7538
7538
|
Of as Loader,
|
|
7539
7539
|
Vf as Markdown,
|
|
7540
7540
|
Ff as MenuItem,
|
|
7541
|
-
Nf as
|
|
7542
|
-
jf as
|
|
7543
|
-
Wf as NavItem,
|
|
7541
|
+
Nf as NavBar,
|
|
7542
|
+
jf as NavItem,
|
|
7544
7543
|
ro as NotificationBubble,
|
|
7545
|
-
|
|
7546
|
-
|
|
7547
|
-
|
|
7548
|
-
|
|
7549
|
-
|
|
7550
|
-
|
|
7544
|
+
Wf as NotificationListItem,
|
|
7545
|
+
Df as PlaceholderThumbnail,
|
|
7546
|
+
B5 as Popup,
|
|
7547
|
+
Zf as RadioButton,
|
|
7548
|
+
zf as RadioButtonCluster,
|
|
7549
|
+
Hf as Select,
|
|
7550
|
+
qf as Sheet,
|
|
7551
7551
|
Uf as Sticker,
|
|
7552
7552
|
Yf as TextArea,
|
|
7553
7553
|
rs as TextButton,
|
|
7554
7554
|
Kf as TextInput,
|
|
7555
|
-
|
|
7555
|
+
_5 as Thumbnail,
|
|
7556
7556
|
Gf as Tile,
|
|
7557
7557
|
yf as Toggle,
|
|
7558
7558
|
Xf as ToggleInput,
|
|
@@ -2,13 +2,13 @@ import { ReactElement } from 'react';
|
|
|
2
2
|
import { CardBodyProps } from '../Card/CardBody/CardBody.types';
|
|
3
3
|
import { CardHeaderProps } from '../Card/CardHeader/CardHeader.type';
|
|
4
4
|
|
|
5
|
-
export interface
|
|
5
|
+
export interface SheetProps {
|
|
6
6
|
ariaLabel?: string;
|
|
7
7
|
ariaLabelledBy?: string;
|
|
8
8
|
closeButtonText?: string;
|
|
9
|
-
modalBody?: ReactElement<CardBodyProps>;
|
|
10
|
-
modalFooter?: ReactElement<CardHeaderProps>;
|
|
11
|
-
modalHeader?: ReactElement<CardHeaderProps>;
|
|
12
9
|
onClose: () => void;
|
|
13
10
|
open: boolean;
|
|
11
|
+
sheetBody?: ReactElement<CardBodyProps>;
|
|
12
|
+
sheetFooter?: ReactElement<CardHeaderProps>;
|
|
13
|
+
sheetHeader?: ReactElement<CardHeaderProps>;
|
|
14
14
|
}
|
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")}._heading_1iwxf_106{display:flex;width:100%;align-items:center;justify-content:space-between;padding:12px 16px;margin:0;background-color:inherit;cursor:pointer;gap:8px}._accordionItem--large_1iwxf_117 ._heading_1iwxf_106{padding:24px 16px}._heading_1iwxf_106 ._title_1iwxf_120{color:#201649;font-size:18px;line-height:24px;text-align:left}._heading_1iwxf_106:not([data-expanded=true]){border-bottom:1px solid #d2d0db}._heading_1iwxf_106:not([data-expanded=true]):hover{background-color:#f4f3f6}._icon_1iwxf_133{margin-left:8px;color:#ec7bcb;transform:rotate(0);transition:all .3s 20ms}._icon_1iwxf_133._iconExpanded_1iwxf_139{transform:rotate(180deg)}@media (prefers-reduced-motion){._icon_1iwxf_133{transition:unset}}._panel_1iwxf_148{height:0;padding:0 12px 12px;opacity:0;visibility:hidden}._accordionItem--large_1iwxf_117 ._panel_1iwxf_148{padding:0 16px 24px}@media (prefers-reduced-motion){._panel_1iwxf_148{transition:unset}}._panel_1iwxf_148[data-expanded=true]{height:auto;opacity:1;transition:opacity .6s ease-in-out;visibility:visible}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._badgeIcon--size-small_z1lcv_106{width:20px;height:20px}._badgeIcon--size-medium_z1lcv_110{width:28px;height:28px}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._badge_fk69x_106{position:relative;display:inline-block}._badge__list_fk69x_110{position:absolute;top:-6px;right:-6px;display:inline-flex}._badge__icon_fk69x_116{margin-left:-6px}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._baseBtn_u9cbz_106{border:none;border-radius:0;cursor:pointer;text-decoration:none}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._iconComponent_149pj_106{display:block}._iconComponent_149pj_106 path{stroke:currentcolor}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._bubbleContent_zugm0_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_zugm0_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_zugm0_136{position:absolute;z-index:auto;top:6px;right:6px;transform:translate(50%,-50%)}._bubble--empty_zugm0_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")}._h1_1t9z0_106{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:32px;font-weight:500;letter-spacing:0;line-height:40px;text-decoration:none;text-indent:0px;text-transform:none}._h2_1t9z0_119{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:24px;font-weight:600;letter-spacing:0;line-height:32px;text-decoration:none;text-indent:0px;text-transform:none}._h3_1t9z0_132{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:20px;font-weight:600;letter-spacing:0;line-height:24px;text-decoration:none;text-indent:0px;text-transform:none}._h4_1t9z0_145{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:18px;font-weight:700;letter-spacing:0;line-height:24px;text-decoration:none;text-indent:0px;text-transform:none}._h5_1t9z0_158{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:16px;font-weight:600;letter-spacing:0;line-height:20px;text-decoration:none;text-indent:0px;text-transform:none}._h6_1t9z0_171{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:14px;font-weight:700;letter-spacing:1px;line-height:24px;text-decoration:none;text-indent:0px;text-transform:uppercase}._h7_1t9z0_184{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:12px;font-weight:800;letter-spacing:1px;line-height:16px;text-decoration:none;text-indent:0px;text-transform:uppercase}._h8_1t9z0_197{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:10px;font-weight:800;letter-spacing:1.5px;line-height:16px;text-decoration:none;text-indent:0px;text-transform:uppercase}._body-large_1t9z0_210{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:16px;font-weight:500;letter-spacing:0;line-height:24px;text-decoration:none;text-indent:0px;text-transform:none}._body-regular_1t9z0_223{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:14px;font-weight:400;letter-spacing:0;line-height:20px;text-decoration:none;text-indent:0px;text-transform:none}._body-semibold_1t9z0_236{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:14px;font-weight:600;letter-spacing:0;line-height:20px;text-decoration:none;text-indent:0px;text-transform:none}._body-italic_1t9z0_249{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:14px;font-weight:400;letter-spacing:0;line-height:20px;text-decoration:none;text-indent:0px;text-transform:none}._detail-medium_1t9z0_262{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:12px;font-weight:500;letter-spacing:0;line-height:16px;text-decoration:none;text-indent:0px;text-transform:none}._detail-bold_1t9z0_275{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:12px;font-weight:700;letter-spacing:0;line-height:16px;text-decoration:none;text-indent:0px;text-transform:none}._detail-upper-case_1t9z0_288{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:10px;font-weight:800;letter-spacing:0;line-height:16px;text-decoration:none;text-indent:0px;text-transform:uppercase}._detail-regular_1t9z0_301{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:12px;font-weight:400;letter-spacing:0;line-height:16px;text-decoration:none;text-indent:0px;text-transform:none}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._textButton_1t3qx_106{display:flex;height:1.5rem;min-height:1.5rem;align-items:center;justify-content:center;gap:8px}._textButton--green_1t3qx_114{color:#cae85d}._textButton--green_1t3qx_114:active{color:#b5d622}._textButton--blue_1t3qx_120,._textButton--blue_1t3qx_120:active{color:#01819c}._textButton--text_1t3qx_126{color:#635c80}._textButton_1t3qx_106:active{background:none}._textButton_1t3qx_106:disabled{color:#d2d0db}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._badgeLabel_1n9wn_106{display:flex;align-items:center;justify-content:space-between;padding:8px 16px 8px 12px;border-radius:8px;background-color:#f4f3f6;gap:8px}._badgeLabel__text_1n9wn_115{width:100%}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._primaryButton_1v1mo_106{display:inline-flex;height:48px;align-items:center;justify-content:center;padding:0 24px;border-radius:24px;color:#201649;cursor:pointer;line-height:20px}._primaryButton--medium_1v1mo_117{height:40px;padding:0 16px}._primaryButton--small_1v1mo_121,._primaryButton--tiny_1v1mo_121{height:32px;padding:0 12px}._primaryButton--highlight_1v1mo_125{background-color:#ff9de2}._primaryButton--highlight_1v1mo_125:hover{background-color:#ec7bcb}._primaryButton--primary_1v1mo_131{background-color:#cae85d}._primaryButton--primary_1v1mo_131:hover{background-color:#b5d622}._primaryButton--transparent_1v1mo_137{border:1px solid #201649;background-color:transparent}._primaryButton--transparent_1v1mo_137:hover{border-color:#ec7bcb;background-color:#ec7bcb}._primaryButton--loading_1v1mo_145 span{cursor:default;visibility:hidden}._primaryButton_1v1mo_106:disabled{background-color:#f4f3f6;color:#a6a2b6;cursor:default}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._root_htjcx_106{display:flex;overflow:hidden;width:100%;flex-direction:column;padding:16px;background-color:#fff;box-shadow:0 2px 8px #0000001a;color:#201649}._root--border-radius_htjcx_116{border-radius:8px}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._root_a9kbs_106{padding:8px 0;color:inherit}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._root_10b7c_106{display:flex;align-items:center;padding-bottom:12px;color:inherit;gap:8px}._title_10b7c_114{flex-grow:1;margin:0}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._dividerContainer_w06k7_106{display:flex;align-items:center}._dividerLine_w06k7_111{height:1px;flex-grow:1;background-color:#d2d0db}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._fieldset_zjuqf_106{border:none}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._iconButton_kxi45_106{display:flex;width:auto;min-width:unset;height:auto;min-height:unset;flex-shrink:0;align-items:center;justify-content:center;color:#201649}._iconButton_kxi45_106:disabled{background:none;cursor:default}._iconButton_kxi45_106:hover,._iconButton_kxi45_106:active{background:none}._iconButton--circular_kxi45_127{border-radius:999px;background:#cae85d}._iconButton--circular_kxi45_127:disabled{background:#fff}._iconButton--circular_kxi45_127:hover{background:#b5d622}._iconButton--circular_kxi45_127:active{background:#cae85d}._iconButton--circular-small_kxi45_140{width:40px;height:40px}._iconButton--circular-medium_kxi45_144{width:48px;height:48px}._iconButton--circular-large_kxi45_148{width:56px;height:56px}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._labelPill_10dhy_106{display:inline-flex;align-items:center;justify-content:center;border-radius:16px;background:#01819c}._labelPill_10dhy_106 span{color:#fff;line-height:16px;text-align:center}._labelPill--small_10dhy_118{height:20px;padding:0 8px}._labelPill--medium_10dhy_122{padding:4px 8px}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._legend_ph50v_106{display:flex;flex-direction:column;padding-bottom:12px;gap:8px}._legend_ph50v_106 ._text_ph50v_112{color:#635c80}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._wrapper_xh4c6_106{display:flex;height:100%;align-items:center;justify-content:center;padding:16px 0}._wrapper_xh4c6_106 ._loadingSpinner_xh4c6_113{display:inline-block}._wrapper_xh4c6_106 ._loadingSpinner_xh4c6_113:after,._wrapper_xh4c6_106 ._loadingSpinner_xh4c6_113:before{content:"";display:inline-block;width:20px;height:20px;border-radius:50%;animation:_pulse-loader-size_xh4c6_1 1s ease infinite;background:#9c9c9c}._wrapper_xh4c6_106 ._loadingSpinner_xh4c6_113 i{display:inline-block;width:20px;height:20px;border-radius:50%;animation:_pulse-loader-size_xh4c6_1 1s ease infinite;background:#9c9c9c;animation-delay:.5s;transform:scale(.2)}@keyframes _pulse-loader-size_xh4c6_1{0%{transform:scale(.2)}50%{transform:scale(1)}to{transform:scale(.2)}}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._menuItem_fkcvm_106{--menuitem-selected-hover-color: #738C00;--menuitem-hover-color: #635C80;display:flex;width:100%;flex-shrink:0;align-items:center;padding:0 8px;background-color:#fff;color:#201649;cursor:pointer;gap:8px;text-decoration:none}._menuItem_fkcvm_106 ._highlightFrame_fkcvm_120{display:flex;flex:1;align-items:center;padding:8px;border-radius:8px;gap:8px}._menuItem_fkcvm_106 ._rightIcon_fkcvm_128{display:inherit;margin-left:auto;color:#635c80}._menuItem--selected_fkcvm_133{color:#201649}._menuItem--selected_fkcvm_133 ._leftIcon_fkcvm_136{color:#738c00}._menuItem--selected_fkcvm_133 ._highlightFrame_fkcvm_120{background-color:#f2fbc4}._menuItem--selected_fkcvm_133:hover{color:var(--menuitem-selected-hover-color)}._menuItem_fkcvm_106:not(._menuItem--selected_fkcvm_133):hover{color:var(--menuitem-hover-color)}._menuItem_fkcvm_106:not(._menuItem--selected_fkcvm_133):hover ._highlightFrame_fkcvm_120{background-color:#f4f3f6}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._backdrop_mb7hx_106{position:fixed;z-index:-1;background:#0003;top:0;right:0;bottom:0;left:0}@media screen and (max-width: 689px){._backdrop_mb7hx_106{background:#fff}}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._modal_ss4j4_106{position:fixed;z-index:1300;display:flex;align-items:center;justify-content:center;top:0;right:0;bottom:0;left:0}._modal_ss4j4_106 ._modalWrapper_ss4j4_114{min-width:560px;border-radius:0;background-color:#fff;box-shadow:0 6px 32px #2016491a;outline:none}@media screen and (min-width: 690px){._modal_ss4j4_106 ._modalWrapper_ss4j4_114{border-radius:16px}}._modal_ss4j4_106 ._modalWrapper_ss4j4_114 ._modalHeader_ss4j4_126{padding:16px}._modal_ss4j4_106 ._modalWrapper_ss4j4_114 ._modalHeader_ss4j4_126 header{padding:0}._modal_ss4j4_106 ._modalWrapper_ss4j4_114 header button:first-child{display:none}@media screen and (max-width: 689px){._modal_ss4j4_106 ._modalWrapper_ss4j4_114{width:100%;min-width:auto;height:100%}._modal_ss4j4_106 ._modalWrapper_ss4j4_114 header button:last-child{display:none}._modal_ss4j4_106 ._modalWrapper_ss4j4_114 header button:first-child{display:block}}._modal_ss4j4_106 ._modalFooter_ss4j4_148{display:none;flex-direction:row;align-items:center;justify-content:space-between;margin:16px;gap:16px}._modal_ss4j4_106 ._modalFooter--alwaysVisible_ss4j4_156{display:flex}@media screen and (min-width: 690px){._modal_ss4j4_106 ._modalFooter_ss4j4_148{display:flex}}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._navBar_eadjz_106{display:grid;padding:0 4px 24px;grid-auto-columns:minmax(0,1fr);grid-auto-flow:column}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._listItem_3hl0l_106 ._navItem_3hl0l_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_3hl0l_106 ._navItem_3hl0l_106{padding:0 8px 8px}}._listItem_3hl0l_106 ._navItem_3hl0l_106 ._selector_3hl0l_120{height:4px;align-self:stretch;border-radius:0 0 4px 4px;margin-bottom:4px;background-color:#cae85d;visibility:hidden}._listItem_3hl0l_106 ._navItem--active_3hl0l_128{padding-right:4px;padding-left:4px;color:#738c00}._listItem_3hl0l_106 ._navItem--active_3hl0l_128 ._selector_3hl0l_120{height:4px;align-self:stretch;border-radius:0 0 4px 4px;background-color:#cae85d;visibility:visible}._label_3hl0l_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")}._root_1j4ie_113{position:relative;overflow:hidden;flex-shrink:0;border:solid 1px #d2d0db;background-color:#d2d0db}._root--24_1j4ie_120{width:24px;height:24px}._root--28_1j4ie_124{width:28px;height:28px}._root--32_1j4ie_128{width:32px;height:32px}._root--40_1j4ie_132{width:40px;height:40px}._root--48_1j4ie_136{width:48px;height:48px}._root--56_1j4ie_140{width:56px;height:56px}._root--64_1j4ie_144{width:64px;height:64px}._root--80_1j4ie_148{width:80px;height:80px}._root--120_1j4ie_152{width:120px;height:120px}._root--280_1j4ie_156{width:280px;height:280px}._root--square_1j4ie_160._root--24_1j4ie_120,._root--square_1j4ie_160._root--32_1j4ie_128{border-radius:4px}._root--square_1j4ie_160._root--40_1j4ie_132,._root--square_1j4ie_160._root--48_1j4ie_136{border-radius:8px}._root--square_1j4ie_160._root--56_1j4ie_140,._root--square_1j4ie_160._root--64_1j4ie_144{border-radius:12px}._root--square_1j4ie_160._root--80_1j4ie_148,._root--square_1j4ie_160._root--120_1j4ie_152{border-radius:16px}._root--circular_1j4ie_172{border-radius:50%}._root--isPlaceholder_1j4ie_175:before{position:absolute;z-index:1;width:100%;height:100%;background-color:#d2d0db;content:"";opacity:.4}._root_1j4ie_113 img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._root_1fwj7_106{display:flex;justify-content:space-between;padding:8px 12px;background-color:#fff;gap:12px}._root_1fwj7_106 ._thumbnail_1fwj7_113{flex-shrink:0;border:1px solid #d2d0db}._root_1fwj7_106 ._iconWrapper_1fwj7_117{display:flex;width:56px;height:56px;flex-shrink:0;align-items:center;justify-content:center;border-radius:4px;background:#f4f3f6;color:#635c80}._root_1fwj7_106 ._detail_1fwj7_128{display:flex;flex-direction:column;flex-grow:1;justify-content:center;color:#635c80;gap:2px}._root_1fwj7_106 ._detail_1fwj7_128 ._title_1fwj7_136{display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:1;text-overflow:ellipsis}._root_1fwj7_106 ._detail_1fwj7_128 ._notificationText_1fwj7_143{color:#201649;line-height:20px;display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:2;text-overflow:ellipsis}._seen_1fwj7_153{background-color:#fff9e5}._seen_1fwj7_153 ._bubble_1fwj7_156{width:8px;height:8px;flex-shrink:0;align-self:center;border-radius:16px;background:#cc339f}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._wrapper_r4p4i_106{display:flex;width:100%;height:100%;align-items:center;justify-content:center;border-radius:8px}._wrapper_r4p4i_106 path{stroke:#635c80}._wrapper--large_r4p4i_117{background-color:#d2d0db}._wrapper--small_r4p4i_120{border:1px solid #d2d0db;background-color:#f4f3f6}._wrapper--iconWrapper_r4p4i_124{width:72px;height:72px;border-radius:999px}._wrapper_r4p4i_106._wrapper--iconWrapper_r4p4i_124{background-color:#f4f3f6}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._base_myrx5_106{z-index:1060}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._radio_183c9_106{position:relative;display:flex;align-items:center;justify-content:space-between}._radio_183c9_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_183c9_106 input._radio--small_183c9_124{width:24px;height:24px}._radio_183c9_106 input:not(:disabled){cursor:pointer}._radio_183c9_106 input:disabled{border-color:#d2d0db}._radio_183c9_106 input:checked{border-color:#201649;background-color:#201649;transition:0s}._radio_183c9_106 input:checked:disabled{border-color:#a6a2b6;background-color:#a6a2b6}._radio_183c9_106 input:hover:not(:disabled,:checked){border-color:#635c80;background-color:#f4f3f6}._radio_183c9_106 label{display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:1;text-overflow:ellipsis;flex-grow:1;order:1;padding-right:8px;margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:16px;font-weight:500;letter-spacing:0;line-height:24px;text-decoration:none;text-indent:0px;text-transform:none}._radio_183c9_106 label._radio--small_183c9_124{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:14px;font-weight:600;letter-spacing:0;line-height:20px;text-decoration:none;text-indent:0px;text-transform:none}._radio_183c9_106 input:not(:disabled)~label{color:#635c80;cursor:pointer}._radio_183c9_106 input:checked~label{color:#201649;margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:16px;font-weight:600;letter-spacing:0;line-height:20px;text-decoration:none;text-indent:0px;text-transform:none}._radio_183c9_106 input:checked~label._radio--small_183c9_124{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:14px;font-weight:600;letter-spacing:0;line-height:20px;text-decoration:none;text-indent:0px;text-transform:none}._radio_183c9_106 input:disabled~label{color:#a6a2b6}._radio_183c9_106 input:checked:after{position:absolute;display:block;width:12px;height:12px;border-radius:999px;background-color:#fff;content:""}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._radiobuttoncluster_1sycx_106{display:flex;flex-direction:column;gap:16px}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._root_1d9kf_106{position:relative;width:100%}._toggle_1d9kf_111{display:flex;width:100%;flex-direction:row;justify-content:space-between;padding:16px;border:1px solid #a6a2b6;border-radius:16px;background:#fff;cursor:pointer}._toggle_1d9kf_111 ._selectedLabel_1d9kf_122{color:#201649}._toggle_1d9kf_111:focus{border-color:#201649}._toggle_1d9kf_111:hover{background:#f4f3f6}._toggle_1d9kf_111 ._label_1d9kf_131{display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:1;text-overflow:ellipsis;color:#635c80}._toggle_1d9kf_111._disabled_1d9kf_139{color:#a6a2b6;cursor:unset}._toggle_1d9kf_111._disabled_1d9kf_139 ._selectedLabel_1d9kf_122,._toggle_1d9kf_111._disabled_1d9kf_139 ._label_1d9kf_131{color:#a6a2b6}._toggle_1d9kf_111._disabled_1d9kf_139:hover{background:#fff}._toggle_1d9kf_111._disabled_1d9kf_139:focus{border-color:#a6a2b6}._toggle_1d9kf_111._filled_1d9kf_155{border:1px solid #f4f3f6;border-radius:16px;background:#f4f3f6}._toggle_1d9kf_111._filled_1d9kf_155:focus{border-color:#a6a2b6}._toggle_1d9kf_111._filled_1d9kf_155:hover{background:#e9e8ed}._toggle_1d9kf_111._filled_1d9kf_155 ._label_1d9kf_131{color:#635c80}._toggle_1d9kf_111._filled_1d9kf_155._disabled_1d9kf_139{color:#a6a2b6;cursor:unset}._toggle_1d9kf_111._filled_1d9kf_155._disabled_1d9kf_139 ._selectedLabel_1d9kf_122,._toggle_1d9kf_111._filled_1d9kf_155._disabled_1d9kf_139 ._label_1d9kf_131{color:#a6a2b6}._toggle_1d9kf_111._filled_1d9kf_155._disabled_1d9kf_139:hover{background:#f4f3f6}._toggle_1d9kf_111._filled_1d9kf_155._disabled_1d9kf_139:focus{border-color:#f4f3f6}._toggle_1d9kf_111._error_1d9kf_185{border-color:#cc339f;background:#fde6f7}._toggle_1d9kf_111._error_1d9kf_185:focus,._toggle_1d9kf_111._error_1d9kf_185:hover{border-color:#cc339f;background:#fde6f7}._icon_1d9kf_194{transition:transform .3s}._icon_1d9kf_194._expanded_1d9kf_198{transform:rotate(180deg)}._hidden_1d9kf_202{display:none}._option_1d9kf_206{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:14px;font-weight:600;letter-spacing:0;line-height:20px;text-decoration:none;text-indent:0px;text-transform:none;display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:1;text-overflow:ellipsis;padding:8px 12px;color:#635c80;cursor:pointer}._option_1d9kf_206:hover{background:#f4f3f6;color:#201649}._option_1d9kf_206._selected_1d9kf_122{background:#f2fbc4;color:#201649}._option_1d9kf_206._selected_1d9kf_122:hover{color:#635c80}._dropdown_1d9kf_238{position:absolute;z-index:1;overflow:hidden;width:100%;border-radius:8px;background:#fff;box-shadow:0 4px 20px #2016491a}._errorMessage_1d9kf_248{padding:0 8px;color:#cc339f}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._sticker_l4sw0_106{display:flex;align-items:center;justify-content:center;border-radius:999px;background-color:var(--sticker-bg-color)}._sticker--color-green_l4sw0_113{--sticker-bg-color: #cae85d}._sticker--color-pink_l4sw0_116{--sticker-bg-color: #ff9de2}._sticker--color-lavender_l4sw0_119{--sticker-bg-color: #7c5bff}._sticker--color-lavender_l4sw0_119 path{stroke:#fff}._sticker--color-teal_l4sw0_125{--sticker-bg-color: #01819C}._sticker--color-teal_l4sw0_125 path{stroke:#fff}._sticker--color-orange_l4sw0_131{--sticker-bg-color: #ebaa77}._sticker--color-grey_l4sw0_134{--sticker-bg-color: #d2d0db}._sticker--size-small_l4sw0_137{width:48px;height:48px}._sticker--size-medium_l4sw0_141{width:56px;height:56px}._sticker--size-large_l4sw0_145{width:64px;height:64px}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._wrapper_1h65g_106{width:100%}._label_1h65g_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_1h65g_124{width:100%;min-height:96px;background-color:transparent;color:#201649}._textArea_1h65g_124:focus-visible{outline:none}._textArea_1h65g_124+label{color:#635c80}._textArea_1h65g_124:not(:-moz-placeholder-shown)+label{top:16px}._textArea_1h65g_124:focus+label,._textArea_1h65g_124:not(:placeholder-shown)+label{top:16px}._textArea_1h65g_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_1h65g_124:focus+label>span,._textArea_1h65g_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_1h65g_152{position:relative}._textAreaContainer_1h65g_152:focus-within{outline:#a6a2b6 2px solid}._textAreaContainer--dark_1h65g_158{background-color:#f4f3f6}._textAreaContainer--dark_1h65g_158:hover{background-color:#e9e8ed}._textAreaContainer--dark_1h65g_158:disabled{color:#a6a2b6}._textAreaContainer--dark_1h65g_158:disabled:hover{background-color:#f4f3f6}._textAreaContainer--dark_1h65g_158:disabled+label{color:#a6a2b6}._textAreaContainer--light_1h65g_173{border:1px solid #a6a2b6;background-color:#fff}._textAreaContainer--light_1h65g_173:hover{border-color:#635c80;background-color:#f4f3f6}._textAreaContainer--light_1h65g_173:disabled{border-color:#d2d0db;color:#a6a2b6}._textAreaContainer--light_1h65g_173:disabled:hover{background-color:#fff}._textAreaContainer--light_1h65g_173:disabled+label{color:#a6a2b6}._textAreaContainer--medium_1h65g_191{border-radius:16px}._textAreaContainer--medium_1h65g_191:not(:-moz-placeholder-shown){padding-top:26px;padding-bottom:6px}._textAreaContainer--medium_1h65g_191:focus,._textAreaContainer--medium_1h65g_191:not(:placeholder-shown){padding-top:26px;padding-bottom:6px}._textAreaContainer--medium_1h65g_191 ._textArea_1h65g_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_1h65g_212{border-radius:12px}._textAreaContainer--small_1h65g_212 ._textArea_1h65g_124{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:14px;font-weight:600;letter-spacing:0;text-decoration:none;text-indent:0px;text-transform:none;padding:12px 16px 0;line-height:20px}._textAreaContainer--small_1h65g_212 ._textArea_1h65g_124:not(:-moz-placeholder-shown)+label{display:none}._textAreaContainer--small_1h65g_212 ._textArea_1h65g_124:focus+label,._textAreaContainer--small_1h65g_212 ._textArea_1h65g_124:not(:placeholder-shown)+label{display:none}._textAreaContainer--error_1h65g_232{border:1px solid #CC339F;background-color:#fde6f7;color:#201649}._textAreaContainer--error_1h65g_232:focus{border-color:#cc339f}._textAreaContainer--error_1h65g_232:hover{border-color:#cc339f;background-color:#fde6f7}._textAreaContainer--error_1h65g_232:disabled{border-color:#cc339f}._textAreaContainer--error_1h65g_232:disabled:hover{background-color:#fde6f7}._textAreaContainer--errorMessage_1h65g_250{display:block;margin-top:4px;margin-left:8px;color:#cc339f;text-transform:capitalize}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._wrapper_upxij_106{width:100%}._wrapper_upxij_106 ._textInputContainer_upxij_109{position:relative}._wrapper_upxij_106 ._textInputContainer_upxij_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_upxij_106 ._textInputContainer_upxij_109 ._textInput_upxij_109{width:100%;color:#201649;outline:none;display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:1;text-overflow:ellipsis}._wrapper_upxij_106 ._textInputContainer_upxij_109 ._textInput_upxij_109+label{color:#635c80}._wrapper_upxij_106 ._textInputContainer_upxij_109 ._textInput_upxij_109:not(:-moz-placeholder-shown)+label{top:16px}._wrapper_upxij_106 ._textInputContainer_upxij_109 ._textInput_upxij_109:focus+label,._wrapper_upxij_106 ._textInputContainer_upxij_109 ._textInput_upxij_109:not(:placeholder-shown)+label{top:16px}._wrapper_upxij_106 ._textInputContainer_upxij_109 ._textInput_upxij_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_upxij_106 ._textInputContainer_upxij_109 ._textInput_upxij_109:focus+label>span,._wrapper_upxij_106 ._textInputContainer_upxij_109 ._textInput_upxij_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_upxij_106 ._textInputContainer_upxij_109 ._textInput--medium_upxij_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_upxij_106 ._textInputContainer_upxij_109 ._textInput--medium_upxij_153:not(:-moz-placeholder-shown){padding-top:26px;padding-bottom:6px}._wrapper_upxij_106 ._textInputContainer_upxij_109 ._textInput--medium_upxij_153:focus,._wrapper_upxij_106 ._textInputContainer_upxij_109 ._textInput--medium_upxij_153:not(:placeholder-shown){padding-top:26px;padding-bottom:6px}._wrapper_upxij_106 ._textInputContainer_upxij_109 ._textInput--small_upxij_173{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:14px;font-weight:600;letter-spacing:0;text-decoration:none;text-indent:0px;text-transform:none;height:40px;padding:0 16px;border-radius:12px;line-height:20px}._wrapper_upxij_106 ._textInputContainer_upxij_109 ._textInput--small_upxij_173:not(:-moz-placeholder-shown)+label{display:none}._wrapper_upxij_106 ._textInputContainer_upxij_109 ._textInput--small_upxij_173:focus+label,._wrapper_upxij_106 ._textInputContainer_upxij_109 ._textInput--small_upxij_173:not(:placeholder-shown)+label{display:none}._wrapper_upxij_106 ._textInputContainer_upxij_109 ._textInput--dark_upxij_192{background-color:#f4f3f6}._wrapper_upxij_106 ._textInputContainer_upxij_109 ._textInput--dark_upxij_192:hover{background-color:#e9e8ed}._wrapper_upxij_106 ._textInputContainer_upxij_109 ._textInput--dark_upxij_192:disabled{color:#a6a2b6}._wrapper_upxij_106 ._textInputContainer_upxij_109 ._textInput--dark_upxij_192:disabled:hover{background-color:#f4f3f6}._wrapper_upxij_106 ._textInputContainer_upxij_109 ._textInput--dark_upxij_192:disabled+label{color:#a6a2b6}._wrapper_upxij_106 ._textInputContainer_upxij_109 ._textInput--light_upxij_207{border:1px solid #a6a2b6;background-color:#fff}._wrapper_upxij_106 ._textInputContainer_upxij_109 ._textInput--light_upxij_207:hover{border-color:#635c80;background-color:#f4f3f6}._wrapper_upxij_106 ._textInputContainer_upxij_109 ._textInput--light_upxij_207:disabled{border-color:#d2d0db;color:#a6a2b6}._wrapper_upxij_106 ._textInputContainer_upxij_109 ._textInput--light_upxij_207:disabled:hover{background-color:#fff}._wrapper_upxij_106 ._textInputContainer_upxij_109 ._textInput--light_upxij_207:disabled+label{color:#a6a2b6}._wrapper_upxij_106 ._textInputContainer_upxij_109 ._textInput--error_upxij_225{border:1px solid #CC339F;background-color:#fde6f7;color:#201649}._wrapper_upxij_106 ._textInputContainer_upxij_109 ._textInput--error_upxij_225:focus{border-color:#cc339f}._wrapper_upxij_106 ._textInputContainer_upxij_109 ._textInput--error_upxij_225:hover{border-color:#cc339f;background-color:#fde6f7}._wrapper_upxij_106 ._textInputContainer_upxij_109 ._textInput--error_upxij_225:disabled{border-color:#cc339f}._wrapper_upxij_106 ._textInputContainer_upxij_109 ._textInput--error_upxij_225:disabled:hover{background-color:#fde6f7}._wrapper_upxij_106 ._textInputContainer--errorMessage_upxij_243{display:block;margin-top:4px;margin-left:8px;color:#cc339f;text-transform:capitalize}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._tile_phuce_106{--tile-bg-color: #f4f3f6;--tile-color: #635C80;--tile-value-color: #01819C;display:flex;min-width:80px;flex-direction:column;align-items:center;padding:8px 4px;border-radius:12px;background-color:var(--tile-bg-color);color:var(--tile-color)}._tile--fullWidth_phuce_119{width:100%}._tile--icon_phuce_122{padding:4px 4px 8px}._tile__value_phuce_126{color:var(--tile-value-color)}._tile_phuce_106:hover{--tile-bg-color: #e9e8ed}._tile_phuce_106:focus{--tile-bg-color: #d2d0db}._tile_phuce_106:disabled{--tile-color: #a6a2b6;--tile-value-color: #a6a2b6;cursor:default}._tile_phuce_106:disabled:hover,._tile_phuce_106:disabled:focus{--tile-bg-color: #f4f3f6}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._switch_1cu02_106{position:relative;display:inline-block;width:48px;height:28px}._switch_1cu02_106 ._slider_1cu02_112{z-index:1;display:block;width:100%;height:100%;border-radius:999px;background-color:#d2d0db;box-shadow:inset 0 0 0 1.5px #a6a2b6;transition:.4s}._switch_1cu02_106 ._slider_1cu02_112:before{position:absolute;right:0;bottom:2px;width:24px;height:24px;border-radius:999px;background-color:#fff;content:"";transform:translate(calc(-100% + 2px));transition:.4s}._switch_1cu02_106 ._slider_1cu02_112._focusVisible_1cu02_134{box-shadow:inset 0 0 0 1.5px #43adc3!important}._switch_1cu02_106 input{position:absolute;z-index:2;width:48px;height:28px;opacity:0}._switch_1cu02_106 input:not(:disabled){cursor:pointer}._switch_1cu02_106 input:hover+._slider_1cu02_112{box-shadow:inset 0 0 0 1.5px #635c80}._switch_1cu02_106 input:disabled+._slider_1cu02_112{opacity:.4}._switch_1cu02_106 input:checked+._slider_1cu02_112{background-color:#201649;box-shadow:inset 0 0 0 1.5px #201649}._switch_1cu02_106 input:checked+._slider_1cu02_112:before{transform:translate(-2px)}._switch_1cu02_106 input:checked:hover+._slider_1cu02_112{background-color:#635c80;box-shadow:inset 0 0 0 1.5px #635c80}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._toggleInput_14m6o_106{display:flex;width:100%;align-items:center;padding:8px 16px;background-color:#fff;color:#635c80;cursor:pointer;gap:12px}._toggleInput_14m6o_106 svg{flex-shrink:0}._toggleInput_14m6o_106 ._textLabel_14m6o_119{flex-grow:1}._toggleInput_14m6o_106 ._switch_14m6o_122{flex-shrink:0}._toggleInput--checked_14m6o_125{color:#201649}._toggleInput--disabled_14m6o_128{cursor:unset}._toggleInput--withBorder_14m6o_131{padding:12px 16px;border-radius:16px;box-shadow:inset 0 0 0 1px #d2d0db}
|
|
1
|
+
@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._heading_1iwxf_106{display:flex;width:100%;align-items:center;justify-content:space-between;padding:12px 16px;margin:0;background-color:inherit;cursor:pointer;gap:8px}._accordionItem--large_1iwxf_117 ._heading_1iwxf_106{padding:24px 16px}._heading_1iwxf_106 ._title_1iwxf_120{color:#201649;font-size:18px;line-height:24px;text-align:left}._heading_1iwxf_106:not([data-expanded=true]){border-bottom:1px solid #d2d0db}._heading_1iwxf_106:not([data-expanded=true]):hover{background-color:#f4f3f6}._icon_1iwxf_133{margin-left:8px;color:#ec7bcb;transform:rotate(0);transition:all .3s 20ms}._icon_1iwxf_133._iconExpanded_1iwxf_139{transform:rotate(180deg)}@media (prefers-reduced-motion){._icon_1iwxf_133{transition:unset}}._panel_1iwxf_148{height:0;padding:0 12px 12px;opacity:0;visibility:hidden}._accordionItem--large_1iwxf_117 ._panel_1iwxf_148{padding:0 16px 24px}@media (prefers-reduced-motion){._panel_1iwxf_148{transition:unset}}._panel_1iwxf_148[data-expanded=true]{height:auto;opacity:1;transition:opacity .6s ease-in-out;visibility:visible}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._badgeIcon--size-small_z1lcv_106{width:20px;height:20px}._badgeIcon--size-medium_z1lcv_110{width:28px;height:28px}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._badge_fk69x_106{position:relative;display:inline-block}._badge__list_fk69x_110{position:absolute;top:-6px;right:-6px;display:inline-flex}._badge__icon_fk69x_116{margin-left:-6px}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._baseBtn_u9cbz_106{border:none;border-radius:0;cursor:pointer;text-decoration:none}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._iconComponent_149pj_106{display:block}._iconComponent_149pj_106 path{stroke:currentcolor}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._bubbleContent_zugm0_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_zugm0_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_zugm0_136{position:absolute;z-index:auto;top:6px;right:6px;transform:translate(50%,-50%)}._bubble--empty_zugm0_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")}._h1_1t9z0_106{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:32px;font-weight:500;letter-spacing:0;line-height:40px;text-decoration:none;text-indent:0px;text-transform:none}._h2_1t9z0_119{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:24px;font-weight:600;letter-spacing:0;line-height:32px;text-decoration:none;text-indent:0px;text-transform:none}._h3_1t9z0_132{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:20px;font-weight:600;letter-spacing:0;line-height:24px;text-decoration:none;text-indent:0px;text-transform:none}._h4_1t9z0_145{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:18px;font-weight:700;letter-spacing:0;line-height:24px;text-decoration:none;text-indent:0px;text-transform:none}._h5_1t9z0_158{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:16px;font-weight:600;letter-spacing:0;line-height:20px;text-decoration:none;text-indent:0px;text-transform:none}._h6_1t9z0_171{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:14px;font-weight:700;letter-spacing:1px;line-height:24px;text-decoration:none;text-indent:0px;text-transform:uppercase}._h7_1t9z0_184{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:12px;font-weight:800;letter-spacing:1px;line-height:16px;text-decoration:none;text-indent:0px;text-transform:uppercase}._h8_1t9z0_197{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:10px;font-weight:800;letter-spacing:1.5px;line-height:16px;text-decoration:none;text-indent:0px;text-transform:uppercase}._body-large_1t9z0_210{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:16px;font-weight:500;letter-spacing:0;line-height:24px;text-decoration:none;text-indent:0px;text-transform:none}._body-regular_1t9z0_223{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:14px;font-weight:400;letter-spacing:0;line-height:20px;text-decoration:none;text-indent:0px;text-transform:none}._body-semibold_1t9z0_236{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:14px;font-weight:600;letter-spacing:0;line-height:20px;text-decoration:none;text-indent:0px;text-transform:none}._body-italic_1t9z0_249{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:14px;font-weight:400;letter-spacing:0;line-height:20px;text-decoration:none;text-indent:0px;text-transform:none}._detail-medium_1t9z0_262{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:12px;font-weight:500;letter-spacing:0;line-height:16px;text-decoration:none;text-indent:0px;text-transform:none}._detail-bold_1t9z0_275{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:12px;font-weight:700;letter-spacing:0;line-height:16px;text-decoration:none;text-indent:0px;text-transform:none}._detail-upper-case_1t9z0_288{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:10px;font-weight:800;letter-spacing:0;line-height:16px;text-decoration:none;text-indent:0px;text-transform:uppercase}._detail-regular_1t9z0_301{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:12px;font-weight:400;letter-spacing:0;line-height:16px;text-decoration:none;text-indent:0px;text-transform:none}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._textButton_1t3qx_106{display:flex;height:1.5rem;min-height:1.5rem;align-items:center;justify-content:center;gap:8px}._textButton--green_1t3qx_114{color:#cae85d}._textButton--green_1t3qx_114:active{color:#b5d622}._textButton--blue_1t3qx_120,._textButton--blue_1t3qx_120:active{color:#01819c}._textButton--text_1t3qx_126{color:#635c80}._textButton_1t3qx_106:active{background:none}._textButton_1t3qx_106:disabled{color:#d2d0db}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._badgeLabel_1n9wn_106{display:flex;align-items:center;justify-content:space-between;padding:8px 16px 8px 12px;border-radius:8px;background-color:#f4f3f6;gap:8px}._badgeLabel__text_1n9wn_115{width:100%}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._primaryButton_1v1mo_106{display:inline-flex;height:48px;align-items:center;justify-content:center;padding:0 24px;border-radius:24px;color:#201649;cursor:pointer;line-height:20px}._primaryButton--medium_1v1mo_117{height:40px;padding:0 16px}._primaryButton--small_1v1mo_121,._primaryButton--tiny_1v1mo_121{height:32px;padding:0 12px}._primaryButton--highlight_1v1mo_125{background-color:#ff9de2}._primaryButton--highlight_1v1mo_125:hover{background-color:#ec7bcb}._primaryButton--primary_1v1mo_131{background-color:#cae85d}._primaryButton--primary_1v1mo_131:hover{background-color:#b5d622}._primaryButton--transparent_1v1mo_137{border:1px solid #201649;background-color:transparent}._primaryButton--transparent_1v1mo_137:hover{border-color:#ec7bcb;background-color:#ec7bcb}._primaryButton--loading_1v1mo_145 span{cursor:default;visibility:hidden}._primaryButton_1v1mo_106:disabled{background-color:#f4f3f6;color:#a6a2b6;cursor:default}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._root_htjcx_106{display:flex;overflow:hidden;width:100%;flex-direction:column;padding:16px;background-color:#fff;box-shadow:0 2px 8px #0000001a;color:#201649}._root--border-radius_htjcx_116{border-radius:8px}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._root_a9kbs_106{padding:8px 0;color:inherit}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._root_10b7c_106{display:flex;align-items:center;padding-bottom:12px;color:inherit;gap:8px}._title_10b7c_114{flex-grow:1;margin:0}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._dividerContainer_w06k7_106{display:flex;align-items:center}._dividerLine_w06k7_111{height:1px;flex-grow:1;background-color:#d2d0db}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._fieldset_zjuqf_106{border:none}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._iconButton_kxi45_106{display:flex;width:auto;min-width:unset;height:auto;min-height:unset;flex-shrink:0;align-items:center;justify-content:center;color:#201649}._iconButton_kxi45_106:disabled{background:none;cursor:default}._iconButton_kxi45_106:hover,._iconButton_kxi45_106:active{background:none}._iconButton--circular_kxi45_127{border-radius:999px;background:#cae85d}._iconButton--circular_kxi45_127:disabled{background:#fff}._iconButton--circular_kxi45_127:hover{background:#b5d622}._iconButton--circular_kxi45_127:active{background:#cae85d}._iconButton--circular-small_kxi45_140{width:40px;height:40px}._iconButton--circular-medium_kxi45_144{width:48px;height:48px}._iconButton--circular-large_kxi45_148{width:56px;height:56px}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._labelPill_10dhy_106{display:inline-flex;align-items:center;justify-content:center;border-radius:16px;background:#01819c}._labelPill_10dhy_106 span{color:#fff;line-height:16px;text-align:center}._labelPill--small_10dhy_118{height:20px;padding:0 8px}._labelPill--medium_10dhy_122{padding:4px 8px}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._legend_ph50v_106{display:flex;flex-direction:column;padding-bottom:12px;gap:8px}._legend_ph50v_106 ._text_ph50v_112{color:#635c80}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._wrapper_xh4c6_106{display:flex;height:100%;align-items:center;justify-content:center;padding:16px 0}._wrapper_xh4c6_106 ._loadingSpinner_xh4c6_113{display:inline-block}._wrapper_xh4c6_106 ._loadingSpinner_xh4c6_113:after,._wrapper_xh4c6_106 ._loadingSpinner_xh4c6_113:before{content:"";display:inline-block;width:20px;height:20px;border-radius:50%;animation:_pulse-loader-size_xh4c6_1 1s ease infinite;background:#9c9c9c}._wrapper_xh4c6_106 ._loadingSpinner_xh4c6_113 i{display:inline-block;width:20px;height:20px;border-radius:50%;animation:_pulse-loader-size_xh4c6_1 1s ease infinite;background:#9c9c9c;animation-delay:.5s;transform:scale(.2)}@keyframes _pulse-loader-size_xh4c6_1{0%{transform:scale(.2)}50%{transform:scale(1)}to{transform:scale(.2)}}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._menuItem_fkcvm_106{--menuitem-selected-hover-color: #738C00;--menuitem-hover-color: #635C80;display:flex;width:100%;flex-shrink:0;align-items:center;padding:0 8px;background-color:#fff;color:#201649;cursor:pointer;gap:8px;text-decoration:none}._menuItem_fkcvm_106 ._highlightFrame_fkcvm_120{display:flex;flex:1;align-items:center;padding:8px;border-radius:8px;gap:8px}._menuItem_fkcvm_106 ._rightIcon_fkcvm_128{display:inherit;margin-left:auto;color:#635c80}._menuItem--selected_fkcvm_133{color:#201649}._menuItem--selected_fkcvm_133 ._leftIcon_fkcvm_136{color:#738c00}._menuItem--selected_fkcvm_133 ._highlightFrame_fkcvm_120{background-color:#f2fbc4}._menuItem--selected_fkcvm_133:hover{color:var(--menuitem-selected-hover-color)}._menuItem_fkcvm_106:not(._menuItem--selected_fkcvm_133):hover{color:var(--menuitem-hover-color)}._menuItem_fkcvm_106:not(._menuItem--selected_fkcvm_133):hover ._highlightFrame_fkcvm_120{background-color:#f4f3f6}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._navBar_eadjz_106{display:grid;padding:0 4px 24px;grid-auto-columns:minmax(0,1fr);grid-auto-flow:column}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._listItem_3hl0l_106 ._navItem_3hl0l_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_3hl0l_106 ._navItem_3hl0l_106{padding:0 8px 8px}}._listItem_3hl0l_106 ._navItem_3hl0l_106 ._selector_3hl0l_120{height:4px;align-self:stretch;border-radius:0 0 4px 4px;margin-bottom:4px;background-color:#cae85d;visibility:hidden}._listItem_3hl0l_106 ._navItem--active_3hl0l_128{padding-right:4px;padding-left:4px;color:#738c00}._listItem_3hl0l_106 ._navItem--active_3hl0l_128 ._selector_3hl0l_120{height:4px;align-self:stretch;border-radius:0 0 4px 4px;background-color:#cae85d;visibility:visible}._label_3hl0l_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")}._root_1j4ie_113{position:relative;overflow:hidden;flex-shrink:0;border:solid 1px #d2d0db;background-color:#d2d0db}._root--24_1j4ie_120{width:24px;height:24px}._root--28_1j4ie_124{width:28px;height:28px}._root--32_1j4ie_128{width:32px;height:32px}._root--40_1j4ie_132{width:40px;height:40px}._root--48_1j4ie_136{width:48px;height:48px}._root--56_1j4ie_140{width:56px;height:56px}._root--64_1j4ie_144{width:64px;height:64px}._root--80_1j4ie_148{width:80px;height:80px}._root--120_1j4ie_152{width:120px;height:120px}._root--280_1j4ie_156{width:280px;height:280px}._root--square_1j4ie_160._root--24_1j4ie_120,._root--square_1j4ie_160._root--32_1j4ie_128{border-radius:4px}._root--square_1j4ie_160._root--40_1j4ie_132,._root--square_1j4ie_160._root--48_1j4ie_136{border-radius:8px}._root--square_1j4ie_160._root--56_1j4ie_140,._root--square_1j4ie_160._root--64_1j4ie_144{border-radius:12px}._root--square_1j4ie_160._root--80_1j4ie_148,._root--square_1j4ie_160._root--120_1j4ie_152{border-radius:16px}._root--circular_1j4ie_172{border-radius:50%}._root--isPlaceholder_1j4ie_175:before{position:absolute;z-index:1;width:100%;height:100%;background-color:#d2d0db;content:"";opacity:.4}._root_1j4ie_113 img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._root_1fwj7_106{display:flex;justify-content:space-between;padding:8px 12px;background-color:#fff;gap:12px}._root_1fwj7_106 ._thumbnail_1fwj7_113{flex-shrink:0;border:1px solid #d2d0db}._root_1fwj7_106 ._iconWrapper_1fwj7_117{display:flex;width:56px;height:56px;flex-shrink:0;align-items:center;justify-content:center;border-radius:4px;background:#f4f3f6;color:#635c80}._root_1fwj7_106 ._detail_1fwj7_128{display:flex;flex-direction:column;flex-grow:1;justify-content:center;color:#635c80;gap:2px}._root_1fwj7_106 ._detail_1fwj7_128 ._title_1fwj7_136{display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:1;text-overflow:ellipsis}._root_1fwj7_106 ._detail_1fwj7_128 ._notificationText_1fwj7_143{color:#201649;line-height:20px;display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:2;text-overflow:ellipsis}._seen_1fwj7_153{background-color:#fff9e5}._seen_1fwj7_153 ._bubble_1fwj7_156{width:8px;height:8px;flex-shrink:0;align-self:center;border-radius:16px;background:#cc339f}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._wrapper_r4p4i_106{display:flex;width:100%;height:100%;align-items:center;justify-content:center;border-radius:8px}._wrapper_r4p4i_106 path{stroke:#635c80}._wrapper--large_r4p4i_117{background-color:#d2d0db}._wrapper--small_r4p4i_120{border:1px solid #d2d0db;background-color:#f4f3f6}._wrapper--iconWrapper_r4p4i_124{width:72px;height:72px;border-radius:999px}._wrapper_r4p4i_106._wrapper--iconWrapper_r4p4i_124{background-color:#f4f3f6}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._base_myrx5_106{z-index:1060}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._radio_183c9_106{position:relative;display:flex;align-items:center;justify-content:space-between}._radio_183c9_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_183c9_106 input._radio--small_183c9_124{width:24px;height:24px}._radio_183c9_106 input:not(:disabled){cursor:pointer}._radio_183c9_106 input:disabled{border-color:#d2d0db}._radio_183c9_106 input:checked{border-color:#201649;background-color:#201649;transition:0s}._radio_183c9_106 input:checked:disabled{border-color:#a6a2b6;background-color:#a6a2b6}._radio_183c9_106 input:hover:not(:disabled,:checked){border-color:#635c80;background-color:#f4f3f6}._radio_183c9_106 label{display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:1;text-overflow:ellipsis;flex-grow:1;order:1;padding-right:8px;margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:16px;font-weight:500;letter-spacing:0;line-height:24px;text-decoration:none;text-indent:0px;text-transform:none}._radio_183c9_106 label._radio--small_183c9_124{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:14px;font-weight:600;letter-spacing:0;line-height:20px;text-decoration:none;text-indent:0px;text-transform:none}._radio_183c9_106 input:not(:disabled)~label{color:#635c80;cursor:pointer}._radio_183c9_106 input:checked~label{color:#201649;margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:16px;font-weight:600;letter-spacing:0;line-height:20px;text-decoration:none;text-indent:0px;text-transform:none}._radio_183c9_106 input:checked~label._radio--small_183c9_124{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:14px;font-weight:600;letter-spacing:0;line-height:20px;text-decoration:none;text-indent:0px;text-transform:none}._radio_183c9_106 input:disabled~label{color:#a6a2b6}._radio_183c9_106 input:checked:after{position:absolute;display:block;width:12px;height:12px;border-radius:999px;background-color:#fff;content:""}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._radiobuttoncluster_1sycx_106{display:flex;flex-direction:column;gap:16px}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._root_1d9kf_106{position:relative;width:100%}._toggle_1d9kf_111{display:flex;width:100%;flex-direction:row;justify-content:space-between;padding:16px;border:1px solid #a6a2b6;border-radius:16px;background:#fff;cursor:pointer}._toggle_1d9kf_111 ._selectedLabel_1d9kf_122{color:#201649}._toggle_1d9kf_111:focus{border-color:#201649}._toggle_1d9kf_111:hover{background:#f4f3f6}._toggle_1d9kf_111 ._label_1d9kf_131{display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:1;text-overflow:ellipsis;color:#635c80}._toggle_1d9kf_111._disabled_1d9kf_139{color:#a6a2b6;cursor:unset}._toggle_1d9kf_111._disabled_1d9kf_139 ._selectedLabel_1d9kf_122,._toggle_1d9kf_111._disabled_1d9kf_139 ._label_1d9kf_131{color:#a6a2b6}._toggle_1d9kf_111._disabled_1d9kf_139:hover{background:#fff}._toggle_1d9kf_111._disabled_1d9kf_139:focus{border-color:#a6a2b6}._toggle_1d9kf_111._filled_1d9kf_155{border:1px solid #f4f3f6;border-radius:16px;background:#f4f3f6}._toggle_1d9kf_111._filled_1d9kf_155:focus{border-color:#a6a2b6}._toggle_1d9kf_111._filled_1d9kf_155:hover{background:#e9e8ed}._toggle_1d9kf_111._filled_1d9kf_155 ._label_1d9kf_131{color:#635c80}._toggle_1d9kf_111._filled_1d9kf_155._disabled_1d9kf_139{color:#a6a2b6;cursor:unset}._toggle_1d9kf_111._filled_1d9kf_155._disabled_1d9kf_139 ._selectedLabel_1d9kf_122,._toggle_1d9kf_111._filled_1d9kf_155._disabled_1d9kf_139 ._label_1d9kf_131{color:#a6a2b6}._toggle_1d9kf_111._filled_1d9kf_155._disabled_1d9kf_139:hover{background:#f4f3f6}._toggle_1d9kf_111._filled_1d9kf_155._disabled_1d9kf_139:focus{border-color:#f4f3f6}._toggle_1d9kf_111._error_1d9kf_185{border-color:#cc339f;background:#fde6f7}._toggle_1d9kf_111._error_1d9kf_185:focus,._toggle_1d9kf_111._error_1d9kf_185:hover{border-color:#cc339f;background:#fde6f7}._icon_1d9kf_194{transition:transform .3s}._icon_1d9kf_194._expanded_1d9kf_198{transform:rotate(180deg)}._hidden_1d9kf_202{display:none}._option_1d9kf_206{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:14px;font-weight:600;letter-spacing:0;line-height:20px;text-decoration:none;text-indent:0px;text-transform:none;display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:1;text-overflow:ellipsis;padding:8px 12px;color:#635c80;cursor:pointer}._option_1d9kf_206:hover{background:#f4f3f6;color:#201649}._option_1d9kf_206._selected_1d9kf_122{background:#f2fbc4;color:#201649}._option_1d9kf_206._selected_1d9kf_122:hover{color:#635c80}._dropdown_1d9kf_238{position:absolute;z-index:1;overflow:hidden;width:100%;border-radius:8px;background:#fff;box-shadow:0 4px 20px #2016491a}._errorMessage_1d9kf_248{padding:0 8px;color:#cc339f}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._backdrop_mb7hx_106{position:fixed;z-index:-1;background:#0003;top:0;right:0;bottom:0;left:0}@media screen and (max-width: 689px){._backdrop_mb7hx_106{background:#fff}}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._sheet_y31ty_106{position:fixed;z-index:1300;display:flex;align-items:center;justify-content:center;top:0;right:0;bottom:0;left:0}._sheet_y31ty_106 ._sheetWrapper_y31ty_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_y31ty_106 ._sheetWrapper_y31ty_114{border-radius:16px}}._sheet_y31ty_106 ._sheetWrapper_y31ty_114 ._sheetHeader_y31ty_126{padding:16px}._sheet_y31ty_106 ._sheetWrapper_y31ty_114 ._sheetHeader_y31ty_126 header{padding:0}._sheet_y31ty_106 ._sheetWrapper_y31ty_114 header button:first-child{display:none}@media screen and (max-width: 689px){._sheet_y31ty_106 ._sheetWrapper_y31ty_114{width:100%;min-width:auto;height:100%}._sheet_y31ty_106 ._sheetWrapper_y31ty_114 header button:last-child{display:none}._sheet_y31ty_106 ._sheetWrapper_y31ty_114 header button:first-child{display:block}}._sheet_y31ty_106 ._sheetFooter_y31ty_148{display:none;flex-direction:row;align-items:center;justify-content:space-between;margin:16px;gap:16px}._sheet_y31ty_106 ._sheetFooter--alwaysVisible_y31ty_156{display:flex}@media screen and (min-width: 690px){._sheet_y31ty_106 ._sheetFooter_y31ty_148{display:flex}}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._sticker_l4sw0_106{display:flex;align-items:center;justify-content:center;border-radius:999px;background-color:var(--sticker-bg-color)}._sticker--color-green_l4sw0_113{--sticker-bg-color: #cae85d}._sticker--color-pink_l4sw0_116{--sticker-bg-color: #ff9de2}._sticker--color-lavender_l4sw0_119{--sticker-bg-color: #7c5bff}._sticker--color-lavender_l4sw0_119 path{stroke:#fff}._sticker--color-teal_l4sw0_125{--sticker-bg-color: #01819C}._sticker--color-teal_l4sw0_125 path{stroke:#fff}._sticker--color-orange_l4sw0_131{--sticker-bg-color: #ebaa77}._sticker--color-grey_l4sw0_134{--sticker-bg-color: #d2d0db}._sticker--size-small_l4sw0_137{width:48px;height:48px}._sticker--size-medium_l4sw0_141{width:56px;height:56px}._sticker--size-large_l4sw0_145{width:64px;height:64px}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._wrapper_1h65g_106{width:100%}._label_1h65g_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_1h65g_124{width:100%;min-height:96px;background-color:transparent;color:#201649}._textArea_1h65g_124:focus-visible{outline:none}._textArea_1h65g_124+label{color:#635c80}._textArea_1h65g_124:not(:-moz-placeholder-shown)+label{top:16px}._textArea_1h65g_124:focus+label,._textArea_1h65g_124:not(:placeholder-shown)+label{top:16px}._textArea_1h65g_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_1h65g_124:focus+label>span,._textArea_1h65g_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_1h65g_152{position:relative}._textAreaContainer_1h65g_152:focus-within{outline:#a6a2b6 2px solid}._textAreaContainer--dark_1h65g_158{background-color:#f4f3f6}._textAreaContainer--dark_1h65g_158:hover{background-color:#e9e8ed}._textAreaContainer--dark_1h65g_158:disabled{color:#a6a2b6}._textAreaContainer--dark_1h65g_158:disabled:hover{background-color:#f4f3f6}._textAreaContainer--dark_1h65g_158:disabled+label{color:#a6a2b6}._textAreaContainer--light_1h65g_173{border:1px solid #a6a2b6;background-color:#fff}._textAreaContainer--light_1h65g_173:hover{border-color:#635c80;background-color:#f4f3f6}._textAreaContainer--light_1h65g_173:disabled{border-color:#d2d0db;color:#a6a2b6}._textAreaContainer--light_1h65g_173:disabled:hover{background-color:#fff}._textAreaContainer--light_1h65g_173:disabled+label{color:#a6a2b6}._textAreaContainer--medium_1h65g_191{border-radius:16px}._textAreaContainer--medium_1h65g_191:not(:-moz-placeholder-shown){padding-top:26px;padding-bottom:6px}._textAreaContainer--medium_1h65g_191:focus,._textAreaContainer--medium_1h65g_191:not(:placeholder-shown){padding-top:26px;padding-bottom:6px}._textAreaContainer--medium_1h65g_191 ._textArea_1h65g_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_1h65g_212{border-radius:12px}._textAreaContainer--small_1h65g_212 ._textArea_1h65g_124{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:14px;font-weight:600;letter-spacing:0;text-decoration:none;text-indent:0px;text-transform:none;padding:12px 16px 0;line-height:20px}._textAreaContainer--small_1h65g_212 ._textArea_1h65g_124:not(:-moz-placeholder-shown)+label{display:none}._textAreaContainer--small_1h65g_212 ._textArea_1h65g_124:focus+label,._textAreaContainer--small_1h65g_212 ._textArea_1h65g_124:not(:placeholder-shown)+label{display:none}._textAreaContainer--error_1h65g_232{border:1px solid #CC339F;background-color:#fde6f7;color:#201649}._textAreaContainer--error_1h65g_232:focus{border-color:#cc339f}._textAreaContainer--error_1h65g_232:hover{border-color:#cc339f;background-color:#fde6f7}._textAreaContainer--error_1h65g_232:disabled{border-color:#cc339f}._textAreaContainer--error_1h65g_232:disabled:hover{background-color:#fde6f7}._textAreaContainer--errorMessage_1h65g_250{display:block;margin-top:4px;margin-left:8px;color:#cc339f;text-transform:capitalize}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._wrapper_upxij_106{width:100%}._wrapper_upxij_106 ._textInputContainer_upxij_109{position:relative}._wrapper_upxij_106 ._textInputContainer_upxij_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_upxij_106 ._textInputContainer_upxij_109 ._textInput_upxij_109{width:100%;color:#201649;outline:none;display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:1;text-overflow:ellipsis}._wrapper_upxij_106 ._textInputContainer_upxij_109 ._textInput_upxij_109+label{color:#635c80}._wrapper_upxij_106 ._textInputContainer_upxij_109 ._textInput_upxij_109:not(:-moz-placeholder-shown)+label{top:16px}._wrapper_upxij_106 ._textInputContainer_upxij_109 ._textInput_upxij_109:focus+label,._wrapper_upxij_106 ._textInputContainer_upxij_109 ._textInput_upxij_109:not(:placeholder-shown)+label{top:16px}._wrapper_upxij_106 ._textInputContainer_upxij_109 ._textInput_upxij_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_upxij_106 ._textInputContainer_upxij_109 ._textInput_upxij_109:focus+label>span,._wrapper_upxij_106 ._textInputContainer_upxij_109 ._textInput_upxij_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_upxij_106 ._textInputContainer_upxij_109 ._textInput--medium_upxij_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_upxij_106 ._textInputContainer_upxij_109 ._textInput--medium_upxij_153:not(:-moz-placeholder-shown){padding-top:26px;padding-bottom:6px}._wrapper_upxij_106 ._textInputContainer_upxij_109 ._textInput--medium_upxij_153:focus,._wrapper_upxij_106 ._textInputContainer_upxij_109 ._textInput--medium_upxij_153:not(:placeholder-shown){padding-top:26px;padding-bottom:6px}._wrapper_upxij_106 ._textInputContainer_upxij_109 ._textInput--small_upxij_173{margin-bottom:0;font-family:Inter,Helvetica Neue,Arial,sans-serif;font-feature-settings:"salt";font-size:14px;font-weight:600;letter-spacing:0;text-decoration:none;text-indent:0px;text-transform:none;height:40px;padding:0 16px;border-radius:12px;line-height:20px}._wrapper_upxij_106 ._textInputContainer_upxij_109 ._textInput--small_upxij_173:not(:-moz-placeholder-shown)+label{display:none}._wrapper_upxij_106 ._textInputContainer_upxij_109 ._textInput--small_upxij_173:focus+label,._wrapper_upxij_106 ._textInputContainer_upxij_109 ._textInput--small_upxij_173:not(:placeholder-shown)+label{display:none}._wrapper_upxij_106 ._textInputContainer_upxij_109 ._textInput--dark_upxij_192{background-color:#f4f3f6}._wrapper_upxij_106 ._textInputContainer_upxij_109 ._textInput--dark_upxij_192:hover{background-color:#e9e8ed}._wrapper_upxij_106 ._textInputContainer_upxij_109 ._textInput--dark_upxij_192:disabled{color:#a6a2b6}._wrapper_upxij_106 ._textInputContainer_upxij_109 ._textInput--dark_upxij_192:disabled:hover{background-color:#f4f3f6}._wrapper_upxij_106 ._textInputContainer_upxij_109 ._textInput--dark_upxij_192:disabled+label{color:#a6a2b6}._wrapper_upxij_106 ._textInputContainer_upxij_109 ._textInput--light_upxij_207{border:1px solid #a6a2b6;background-color:#fff}._wrapper_upxij_106 ._textInputContainer_upxij_109 ._textInput--light_upxij_207:hover{border-color:#635c80;background-color:#f4f3f6}._wrapper_upxij_106 ._textInputContainer_upxij_109 ._textInput--light_upxij_207:disabled{border-color:#d2d0db;color:#a6a2b6}._wrapper_upxij_106 ._textInputContainer_upxij_109 ._textInput--light_upxij_207:disabled:hover{background-color:#fff}._wrapper_upxij_106 ._textInputContainer_upxij_109 ._textInput--light_upxij_207:disabled+label{color:#a6a2b6}._wrapper_upxij_106 ._textInputContainer_upxij_109 ._textInput--error_upxij_225{border:1px solid #CC339F;background-color:#fde6f7;color:#201649}._wrapper_upxij_106 ._textInputContainer_upxij_109 ._textInput--error_upxij_225:focus{border-color:#cc339f}._wrapper_upxij_106 ._textInputContainer_upxij_109 ._textInput--error_upxij_225:hover{border-color:#cc339f;background-color:#fde6f7}._wrapper_upxij_106 ._textInputContainer_upxij_109 ._textInput--error_upxij_225:disabled{border-color:#cc339f}._wrapper_upxij_106 ._textInputContainer_upxij_109 ._textInput--error_upxij_225:disabled:hover{background-color:#fde6f7}._wrapper_upxij_106 ._textInputContainer--errorMessage_upxij_243{display:block;margin-top:4px;margin-left:8px;color:#cc339f;text-transform:capitalize}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._tile_phuce_106{--tile-bg-color: #f4f3f6;--tile-color: #635C80;--tile-value-color: #01819C;display:flex;min-width:80px;flex-direction:column;align-items:center;padding:8px 4px;border-radius:12px;background-color:var(--tile-bg-color);color:var(--tile-color)}._tile--fullWidth_phuce_119{width:100%}._tile--icon_phuce_122{padding:4px 4px 8px}._tile__value_phuce_126{color:var(--tile-value-color)}._tile_phuce_106:hover{--tile-bg-color: #e9e8ed}._tile_phuce_106:focus{--tile-bg-color: #d2d0db}._tile_phuce_106:disabled{--tile-color: #a6a2b6;--tile-value-color: #a6a2b6;cursor:default}._tile_phuce_106:disabled:hover,._tile_phuce_106:disabled:focus{--tile-bg-color: #f4f3f6}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._switch_1cu02_106{position:relative;display:inline-block;width:48px;height:28px}._switch_1cu02_106 ._slider_1cu02_112{z-index:1;display:block;width:100%;height:100%;border-radius:999px;background-color:#d2d0db;box-shadow:inset 0 0 0 1.5px #a6a2b6;transition:.4s}._switch_1cu02_106 ._slider_1cu02_112:before{position:absolute;right:0;bottom:2px;width:24px;height:24px;border-radius:999px;background-color:#fff;content:"";transform:translate(calc(-100% + 2px));transition:.4s}._switch_1cu02_106 ._slider_1cu02_112._focusVisible_1cu02_134{box-shadow:inset 0 0 0 1.5px #43adc3!important}._switch_1cu02_106 input{position:absolute;z-index:2;width:48px;height:28px;opacity:0}._switch_1cu02_106 input:not(:disabled){cursor:pointer}._switch_1cu02_106 input:hover+._slider_1cu02_112{box-shadow:inset 0 0 0 1.5px #635c80}._switch_1cu02_106 input:disabled+._slider_1cu02_112{opacity:.4}._switch_1cu02_106 input:checked+._slider_1cu02_112{background-color:#201649;box-shadow:inset 0 0 0 1.5px #201649}._switch_1cu02_106 input:checked+._slider_1cu02_112:before{transform:translate(-2px)}._switch_1cu02_106 input:checked:hover+._slider_1cu02_112{background-color:#635c80;box-shadow:inset 0 0 0 1.5px #635c80}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(fonts/inter/Inter-Thin.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(fonts/inter/Inter-ExtraLight.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(fonts/inter/Inter-Light.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(fonts/inter/Inter-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(fonts/inter/Inter-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(fonts/inter/Inter-SemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(fonts/inter/Inter-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(fonts/inter/Inter-ExtraBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(fonts/inter/Inter-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:normal;font-weight:100 900;src:url(fonts/inter/Inter-roman.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var;font-style:italic;font-weight:100 900;src:url(fonts/inter/Inter-italic.var.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter var experimental;font-style:oblique 0deg 10deg;font-weight:100 900;src:url(fonts/inter/Inter.var.woff2) format("woff2")}._toggleInput_14m6o_106{display:flex;width:100%;align-items:center;padding:8px 16px;background-color:#fff;color:#635c80;cursor:pointer;gap:12px}._toggleInput_14m6o_106 svg{flex-shrink:0}._toggleInput_14m6o_106 ._textLabel_14m6o_119{flex-grow:1}._toggleInput_14m6o_106 ._switch_14m6o_122{flex-shrink:0}._toggleInput--checked_14m6o_125{color:#201649}._toggleInput--disabled_14m6o_128{cursor:unset}._toggleInput--withBorder_14m6o_131{padding:12px 16px;border-radius:16px;box-shadow:inset 0 0 0 1px #d2d0db}
|
package/lib/Modal/Modal.d.ts
DELETED
|
File without changes
|
|
File without changes
|